kali初次使用做的配置
作者:互联网
kali初次使用做的配置
改配置源
vim /etc/apt/sources.list
注释掉本来的内容,增加下列两行
deb http://mirrors.ustc.edu.cn/kali kali-rolling main non-free contrib # 中科大源
deb-src http://mirrors.ustc.edu.cn/kali kali-rolling main non-free contrib
更新源
apt update
apt dist-upgrade # 或apt upgrade
安装中文输入法
apt install fcitx fcitx-googlepinyin
apt install im-config
然后运行im-config,并将fcitx设为默认输入法
检查fcitx是否运行
fcitx
配置fcitx
fcitx-configtool
添加谷歌输入法
reboot
安装显卡驱动(NVIDIA)
apt install nvidia-driver
这个基本能解决所有问题
安装显卡驱动后可能出现的问题
- 以下解决方案出自于:CSDN「步行龟」
- 原文链接:https://blog.csdn.net/Lockvictor/article/details/49254485
使用NVIDIA驱动,有可能导致笔记本电脑无法调节亮度
现给出解决方案:
对于比较老的系统
比如CentOS 6.5,所有的显卡驱动配置都存在/etc/X11/xorg.conf这个文件中,文件分为不同的Section,分别定义不同的功能,亮度相关的功能在Device部分。
因此,在Section "Device"部分添加
Option "RegistryDwords" "EnableBrightnessControl=1" # 调节亮度
Option "NoLogo" "True" # 把开机显示的NVIDIA图标删除
接下来,保存重启即可
对于比较新的系统
如Linux Mint 17,不再存在/etc/X11/xorg.conf这个文件,显卡驱动配置在/usr/share/X11/xorg.conf.d/这个文件夹下,配置被分配在了不同的文件中,每个文件定义一部分的功能,自己也可以新建一个文件来定义一部分功能。
因此,新建一个配置文件
sudo vim /usr/share/X11/xorg.conf.d/10-nvidia.conf
写入以下代码
Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
Option "RegistryDwords" "EnableBrightnessControl=1"
Option "NoLogo" "True"
EndSection
保存重启即可
安装无线网卡驱动(型号8852)
安装必要工具
apt install make gcc linux-headers-$(uname -r) build-essential git
安装网卡驱动
git clone https://github.com/lwfinger/rtw89.get -b v5
cd rtw89
make
make install
开启驱动:
modprobe rtw89pci
关闭驱动:
modprobe -r rtw89pci
标签:conf,kali,配置,apt,fcitx,初次,install,驱动 来源: https://www.cnblogs.com/wedfrgt/p/15861978.html