前言
记录一下个人配置,方便后续参考
正文
- 配置用户sudo免密权限
只建议在个人测试环境这么配置,否则最好root还是需要用密码确认一下
sudo su
echo "你的用户名 ALL=(ALL:ALL) NOPASSWD: ALL" >> /etc/sudoers
- root用户下,指令自动补全
sudo su
apt update
apt install bash-completion
编辑/root/.bashrc文件
去掉最下面几行的注释,像这样
# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
. /etc/bash_completion
fi
重新sourece一下
cd /root
source .bashrc
- 更新python源
参考:ubuntu16.04 python2&3 pip升级后报错:sys.stderr.write(f"ERROR: {exc}")
- 更新软件源
如果是ubuntu16桌面版,直接在 系统设置->软件和更新->下载至->其它网站,就可以选择国内的软件源了。
如果是server版,需要修改/etc/apt/sources.list文件,这个可以在网上找个教程
标签:completion,ubuntu16.04,bashrc,配置,apt,etc,个性化,root,bash From: https://www.cnblogs.com/brian-sun/p/17349927.html