我遇到了 Linux Mint 无法记住设置的问题。每次加载 Linux 后,我需要设置的设置是显示设置(为其中一个显示器添加分辨率,并将此分辨率应用于显示器)以及最大用户监视数和最大用户实例数。
我每天需要运行的命令:
sudo nano /proc/sys/fs/inotify/max_user_watches
文件中的更改编号
sudo nano /proc/sys/fs/inotify/max_user_instances
文件中的更改编号
xrandr --newmode 1440x900_60.00 106.50 1440 1528 1672 1904 900 903 909 934 -hsync +vsync
xrandr --addmode DP-1 1440x900_60.00
xrandr --output DP-1 --mode 1440x900_60.00
我有时会运行最后一个命令,但 Linux 通常以某种奇怪的方式记住这个最后的设置。
我怎样才能让 Mint 记住这些设置?
答案1
对于这 2 个 inotify 设置,您可以按照以下步骤进行操作并根据需要进行设置。
echo "fs.inotify.max_user_instances = <YOURVALUE>" | sudo tee -a /etc/sysctl.d/20-inotify.conf
echo "fs.inotify.max_user_watches = <YOURVALUE>" | sudo tee -a /etc/sysctl.d/20-inotify.conf
对于 xrandr,请尝试以下操作:
echo "xrandr --newmode 1440x900_60.00 106.50 1440 1528 1672 1904 900 903 909 934 -hsync +vsync" | sudo tee -a /etc/X11/Xsession.d/51-custom-monitor
echo "xrandr --addmode DP-1 1440x900_60.00" | sudo tee -a /etc/X11/Xsession.d/51-custom-monitor`
echo "xrandr --output DP-1 --mode 1440x900_60.00" | sudo tee -a /etc/X11/Xsession.d/51-custom-monitor`
然后检查重启后它是否仍然存在。