安装 ArchLinux 到U盘(七)Archlinux 可选配置
ibus输入法只能双拼
如果ibus 输入法只能双拼的话 ,在终端输入如下命令,重启即可
ibus-daemon -drx
无法sudo
如果不能sudo,显示错误 is not in the sudoers file. This incident will be reported.
以root权限编辑 /etc/sudoers
文件,在 root ALL=(ALL) ALL
下面 加上 username ALL=(ALL) ALL
,保存即可,(其中username 为你自己的用户名)
显示隐藏文件夹
要显示隐藏文件夹按 CTRL+H
gnome 的一些程序名称
可用于配置全局快捷键
名称 | 用途 |
---|---|
gnome-terminal | terminal 终端 |
nautilus | 文件管理器,类似于Windows的Explorer |
启用 Intel 微指令更新
处理器厂商会发布 microcode 以增强系统稳定性和解决安全问题。Microcode 可以通过 BIOS 更新,Linux 内核也支持启动时应用新的 Microcode。没有这些更新,可能会遇到一些很难查的的死机或崩溃问题。
$ pacman -S intel-ucode grub-mkconfig -o /boot/grub/grub.cfg
Windows 想要访问 Linux 文件
参阅 samba 配置
安装网易云音乐
编辑 pacman 配置文件 /etc/pacman.conf
在文件最后加入
[archlinuxcn] Server = https://mirrors.ustc.edu.cn/archlinuxcn/$arch
-
同步系统
pacman -Syu
-
安装网易云音乐
pacman -S netease-cloud-music
安装 AUR 包
- 下载包快照 (snapshots)
- 解压包到任意目录
- 执行命令,安装包
makepkg -si
禁止 anjuta 改用 nautilus 默认打开目录
编辑文件 ~/.local/share/applications/mimeapps.list
添加或者替换 inode/directory
inode/directory=org.gnome.Nautilus.desktop
添加目录到 nautilus 侧边栏
进入想要添加的目录,点击nautilus右上角小按钮,添加书签
解析局域网主机名
pacman -S avahi
编辑文件 /etc/nsswitch.conf,在hosts: 一行最后加上 mdns
systemctl start avahi-daemon systemctl enable avahi-daemon
然后就可以 ping hostname.local
注意:一定要在主机名后面加上 .local
这部分类容可能有问题,经测试无法复现
个性化 grub 启动界面
默认的grub启动界面异常的丑陋,如下图所示
想要修改grub的默认启动界面,可以在下面的链接中寻找自己喜欢的主题,来配置grub的启动界面,使其变得好看,这部分属于强迫症选项,并不会对系统带来实质性的变化,仅仅就是为了好看。
https://addons.videolan.org/browse/cat/109/ord/top
下面以 Breeze GRUB2 theme 为例,来配置grub启动界面
进入 https://addons.videolan.org/p/1000140/,点击右侧 download 下载 Breeze-GRUB2.tar.gz
解压文件,将 breeze 目录复制到 /boot/grub/themes
编辑文件 /etc/default/grub 加入下面一行
GRUB_THEME=/boot/grub/themes/breeze/theme.txt
执行命令
# grub-mkconfig -o /boot/grub/grub.cfg
重启就可以了
grub 直接启动默认系统
修改文件 /etc/default/grub,设置如下属性
GRUB_TIMEOUT=0
执行命令
# grub-mkconfig -o /boot/grub/grub.cfg
重启就可以了
配置http代理
export http_proxy=http://example.com:8080 export https_proxy=https://example.com:8080
例如
export http_proxy=http://192.169.2.201:1080 export https_proxy=https://192.169.2.201:1080
也可以将其写入 ~/.bashrc 或者 ~/.bash_profile 中
禁止ssh root 登陆
修改 /etc/ssh/sshd_config
把 PermitRootLogin yes 改为 PermitRootLogin no
VMWare 虚拟机自动适配分辨率
配置蓝牙
安装蓝牙
sudo pacman -S bluez bluez-utils
安装图形界面工具
sudo pacman -S bluedevil
启动服务
sudo systemctl start bluetooth sudo systemctl enable bluetooth
安装蓝牙音频
sudo pacman -S pulseaudio-bluetooth
如果启动图形界面需要 root 权限
编辑文件 /etc/polkit-1/rules.d/81-blueman.rules
,写入如下内容
polkit.addRule(function(action, subject) { if ((action.id == "org.blueman.rfkill.setstate" || action.id == "org.blueman.network.setup") && subject.local && subject.active && subject.isInGroup("wheel")) { return polkit.Result.YES; } });
然后将用户添加到 wheel
用户组,假设用户名为 steven
sudo usermod -a -G wheel steven
评论