Arch禁用喇叭
原文ArchWiki:https://wiki.archlinux.org/index.php/PC_speaker 全局禁用喇叭,可以从内核中移除模块 # rmmod pcspkr 或者添加Blacklist # echo “blacklist pcspkr” > /etc/modprobe.d/nobeep.conf 或者在bootloader中内核这行添加 modprobe.blacklist=pcspkr
原文ArchWiki:https://wiki.archlinux.org/index.php/PC_speaker 全局禁用喇叭,可以从内核中移除模块 # rmmod pcspkr 或者添加Blacklist # echo “blacklist pcspkr” > /etc/modprobe.d/nobeep.conf 或者在bootloader中内核这行添加 modprobe.blacklist=pcspkr
Linux下解压ZIP文件若出现文件名乱码,一般是编码方式问题,可以安装unzip-iconv,指定编码方式进行解压,示例: unzip -O gbk filename.zip 注意:unzip-iconv与unzip包冲突,两者只能够安装一个
1、更新系统 sudo apt update 2、安装apache2和php5 sudo apt install apache2 如果出现路径锁定问题,使用以下命令 sudo rm /var/lib/dpkg/lock sudo rm /var/lib/apt/lists/lock sudo rm /var/cache/apt/archives/lock 3、安装postfix sudo apt install postfix 点OK确认,configuration选择默认的项:Internet Site,system mail name默认计算机名 4、重新载入postfix服务 sudo service postfix restart 5、安装dovecot sudo apt install dovecot-imapd dovecot-pop3d 6、重新载入dovecot服务 sudo service dovecot restart 7、安装squirrelmail sudo apt install squirrelmail 8、设置squirrelmail …
新系统无无线网卡驱动 安装 无线网管理工具wicd sudo apt install wicd-gtk 关掉netmanager .并启动wicd /etc/init.d/wicd restart service NetworkManager restart sudo -S service NetworkManager restart
https://aur.archlinux.org/packages/iscan-plugin-gt-s650/ As root: # pacman -S iscan iscan-data As user: $ git clone https://aur.archlinux.org/iscan-plugin-gt-s650.git $ cd iscan-plugin-gt-s650 $ makepkg As root: # pacman -U iscan-plugin-gt-s650-1.1.0-1-x86_64.pkg.tar.xz
1.修改fstab sudo gedit /etc/fstab 2.添加如下代码 #Entry for /dev/sdb7 : UUID=78A675EB46D703C4 /media/anseey/Data ntfs-3g defaults,utf8,uid=1000,gid=1000,dmask=022,fmask=133 0 0 https://www.bbsmax.com/A/gAJGeaNodZ/
编辑 /etc/default/grub 把 GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash” 改成 GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash acpi=off” 然后 sudo update-grub sudo reboot 同时解决了开机后屏幕亮度自动变为最暗的情况。
sudo rm /var/crash/* sudo gedit /etc/default/apport & The content of the file is: # set this to 0 to disable apport, or to 1 to enable it # you can temporarily override this with # sudo service apport start force_start=1 enabled=1 Change the enabled=1 to enabled=0. Save and close the file. You won’t see any …