@byxiaoxie7 年前
04/9
20:51
本人的一些Ubuntu使用记录,未必对你有帮助!
Ubuntu Vs Code C/C++编译调试:https://www.cnblogs.com/tyrus/p/vscode_conf.html
Ubuntu 下Windows平台程序:https://blog.csdn.net/qq_36428171/article/details/78244730
Ubuntu 使用微信:https://www.cnblogs.com/EasonJim/p/7114667.html
Ubuntu 安装pip:https://blog.csdn.net/weixin_37911283/article/details/70799481
Ubuntu 截图工具shutter:https://blog.csdn.net/hanshileiai/article/details/46843713
Ubuntu 修改引导开机倒计时:
sudo gedit /etc/default/grub 或 sudo vim /etc/default/grub
修改 [GRUB_TIMEOUT=10] 10是倒计时10秒,修改保存后更新引导
sudo update-grub2
Ubuntu PPTP连接:
Store the password only for this uesr //仅为该用户存储密码
Store the password for all user //为所有用户存储密码
Ask for this password every time //每次都要输入密码
The password is not required //不需要密码
Ubuntu 卸载安装的软件:
dpkg -l | grep wps //搜索软件名 如:wps
sudo apt-get remove wps //卸载软件 如:wps
Ubuntu设置Python版本:https://blog.csdn.net/jiandanjinxin/article/details/53175121
设置Python自动模式顺序:
update-alternatives --install /usr/bin/python python /usr/bin/python2 200
update-alternatives --install /usr/bin/python python /usr/bin/python3 50
update-alternatives --install /usr/bin/python python /usr/bin/python3.5 100
update-alternatives --install /usr/bin/python python /usr/bin/python3.6 150
手动选择Python版本:update-alternatives --config python