-
edit /etc/modules-load.d/i2c.conf
i2c-dev
-
edit /etc/udev/rules.d/98-ddc.rules
KERNEL=="i2c-1", SUBSYSTEM=="i2c-dev", GROUP="ddc", MODE="0660"
-
$ sudo usermod -a -G ddc username
/etc/udisks2/mount_options.conf
[defaults]
btrfs_defaults=noatime,autodefrag,compress=zstd
ntfs3_defaults=uid=1000,gid=1000,noatime
ntfs3_allow=uid=1000,gid=1000,prealloc
/etc/udev/rules.d/ntfs3_by_default.rules
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/sh | |
# | |
# Note that any setup should come before the sessreg command as | |
# that must be 'exec'ed for the pid to be correct (sessreg uses the parent | |
# pid) | |
# | |
# Note that output goes into the .xsession-errors file for easy debugging | |
# | |
PATH="/usr/bin:$PATH" | |
/usr/bin/proptest -M i915 -D /dev/dri/card0 103 connector 98 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_INSTALL_LIBDIR=/usr/local/lib -DENABLE_STATIC=FALSE -DPNG_SUPPORTED=TRUE -DWITH_JPEG8=TRUE . -DCMAKE_ASM_NASM_COMPILER=/usr/bin/yasm | |
sudo make install |