麒麟系统无线网卡驱动
新系统无无线网卡驱动 安装 无线网管理工具wicd sudo apt install wicd-gtk 关掉netmanager .并启动wicd /etc/init.d/wicd restart service NetworkManager restart sudo -S service NetworkManager restart
新系统无无线网卡驱动 安装 无线网管理工具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 …
sudo vim /etc/systemd/system/network-online.target.wants/networking.service Change TimeoutStartSec=5min to TimeoutStartSec=1sec
安装连接WiFi需要的软件包 sudo apt-get install wpasupplicant 编辑/etc/network/interfaces文件,添加内容: auto wlan0 iface wlan0 inet dhcp wpa-ssid xxxxxx wpa-psk 12345678 其中wpa-ssid是WIFI名称,wlan0是WIFI接口名 这个配置是通过DHCP自动配置ip地址以及DNS,如果想要手动设置内容改成这样: auto wlan0 iface wlan0 inet static address 192.168.1.2 netmask 255.255.255.0 gateway 192.168.1.1 dns-nameservers 192.168.1.1 114.114.114.114 wpa-ssid xxxx wpa-psk 12345678 修改好了之后执行下面命令启用WIFI: 首先关闭WIFI sudo ifdown wlan0 然后启用WIFI sudo ifup -v wlan0 现在WIFI已经连接上来,而且重启后也会自动连接。 https://blog.csdn.net/u010162887/article/details/52081369
编辑这个文件/etc/systemd/logind.conf 设置其中的HandleLidSwitch=ignore 最后systemctl restart systemd-logind
gedit /etc/default/grub replace the line GRUB_CMDLINE_LINUX=”” with GRUB_CMDLINE_LINUX=”acpi=off” sudo update-grub