Ubuntu 自用配置记录
安装完系统后的一些配置
关闭并禁用 swap 分区: sudo swapoff 并且 sudo vim /etc/fstab 注释掉 swap 那行
开启点击图标最小化: gsettings set org.compiz.unityshell:/org/compiz/profiles/unity/plugins/unityshell/ launcher-minimize-window true
开机开启小键盘: sudo apt-get install numlockx 然后 sudo vim /usr/share/lightdm/lightdm.conf.d/50-unity-greeter.conf 在最后添加:greeter-setup-script=/usr/bin/numlockx on
用久显示隐藏文件夹: Edit -> Preferences -> Views 勾选 Show hidden and backup files
禁用客人会话: https://blog.csdn.net/thuyx/article/details/78503870
jdk 10 的配置??
分别下载 jdk10 和 jre 10 解压缩到 /usr/java目录下
配置如下环境变量
1 | #set java environment |
安装中文字体文泉译:sudo apt-get install fonts-wqy-microhei
防火墙配置
sudo ufw enablesudo ufw default deny
运行以上两条命令后,开启了防火墙,并在系统启动时自动开启。关闭所有外部对本机的访问,但本机访问外部正常
sudo ufw disable 关闭防火墙
鼠标移动速度调整
xset m N
其中,N是速度,估计取值为0-10
恢复默认 xset m default
apt-get 命令的记录
- 卸载软件: sudo apt-get purge docker-ce
- 查看软件版本: apt-cache madison docker-ce
2018年07月19日09:10:55 更新
indicator-sysmonitor 显示网速时,在状态栏会左右移动,解决方法是:
修改源代码
1 | sudo vi /usr/lib/indicator-sysmonitor/sensors.py |
打开后,修改第29行的B_UNITS:
1 | B_UNITS = ['MB', 'GB', 'TB'] |
接着修改下面的bytes_to_human函数:
1 | def bytes_to_human(bytes_): |
然后保存退出,重启就可以了。