本人是在台式机上安装的ubuntu16.04长期稳定版来做的开发环境。
删除Amazon的链接
sudo apt-get remove unity-webapps-common
卸载libreOffice(用WPS来替代)
sudo apt-get remove libreoffice-common
//启动器,点击最小化
gsettings set org.compiz.unityshell:/org/compiz/profiles/unity/plugins/unityshell/ launcher-minimize-window true
//移动到底部
gsettings set com.canonical.Unity.Launcher launcher-position Bottom
//移动到左侧
gsettings set com.canonical.Unity.Launcher launcher-position Left
首先,需要安装一个小软件,在终端中执行以下:
sudo apt-get install numlockx
然后编辑:
sudo gedit /usr/share/lightdm/lightdm.conf.d/50-unity-greeter.conf
在最后添加:
greeter-setup-script=/usr/bin/numlockx on
重启或者注销便可。启动时,便会发现小键盘灯自动打开。
更新源:sudo apt-get update
安装wine:sudo apt-get install wine
安装时间稍微有点长,需要注意的是中间有个软件包配置的图形界面,需要用户使用Tab键选定“OK”,然后继续下一步的安装。不要停留在这里不走。
入门教程:https://jingyan.baidu.com/article/bad08e1ec124c409c8512121.html
将windows下的安装执行文件拷到ubuntu下的某一目录,在命令行下执行 wine 应用程序.exe,
我的qq目录是在 /主文件夹/.wine/drive_c/ProgramFiles/QQ
注意wine是隐藏文件,在linux中.点是隐藏文件,需要ctrl+H来显示隐藏文件
1,添加源: sudo add-apt-repository ppa:fossfreedom/indicator-sysmonitor
2,更新: sudo apt-get update
3,安装: sudo apt-get install indicator-sysmonitor
然后 indicator-sysmonitor这个命令,开启显示
默认是不是开机启动,需要开机启动,并且设置下自己想要显示格式和内容.\
这是我的设置的: cpu: {cpu} mem: {mem}{net}
注意:需要在后台显示,需要在终端执行: indicator-sysmonitor &,然后Ctrl+C就可以实现后台运行indicator-sysmonitor,看下图标效果,效果很不错!
可以在桌面显示,
sudo add-apt-repository ppa:umang/indicator-stickynotes
sudo apt-get update
sudo apt-get install indicator-stickynotes
安装常用的软件,有的直接在应用商店中就可以下载,有的需要安装包安装.
安装微信和qq一类的聊天软件,和自己的经常使用的开发工具。
github地址:https://github.com/geeeeeeeeek/electronic-wechat/
sudo apt-get install exfat-utils
这个命令只针对ubuntu版本14.04以上,以下没有试过。
java,python3,Android sdk,android studio,svn,git,git图形化界面,sublime-text
java -version,检查java环境
python3环境 python –version,如果是2.x版本的话,需要升级到3.x版本.
svn客户端:安装sudo apt-get install subversion 使用checkout,新建一个目录,cd到这个目录下,然后 svn checkout https://192.168.0.221/svn/xxx_android/xxx_code/ 查看其他命令:svn help
https://www.zhihu.com/question/19811112?sort=created