- 终端切换:Ctrl + Alt + (F1 ~ F6)
- 切换回图形界面:Ctrl + Alt + F7
- Shell使用技巧:
- Tab键:补全命令、目录、命令参数等
- Ctrl + c:强制终止
- “上”键:恢复历史输入命令
- man:帮助
- 用户管理:
- 查看用户:who am i
- 创建用户:sudo adduser <username>
- 切换用户:su <user>,或 su -l <user>
- 特级权限执行命令:sudo <cmd>
- 切换用户及环境变量:su - <user>
- 打印有哪些用户:ls /home
- 退出用户:exit 或 Ctrl + d
2016年3月31日星期四
Linux学习笔记(一)
下面是Linux系统学习过程中的一些命令和知识的总结。
2016年3月30日星期三
Gvim配置笔记
VIM扩展:称bundle或插件
- 插件安装命令:PluginInstall
- 扩展管理器:Vundle
- note:要将Gvim安装到C盘(对于Windows),才支持Python和Python3
- 界面布局:
- sv <filename> "以纵向分割布局打开新文件
- vs <filename> "以横向分割布局打开新文件
- Tab补全功能快速查找文件
- 组合快捷键:
- Ctrl + j 切换到下方的分割窗口
- Ctrl + k 切换到上方的分割窗口
- Ctrl + l 切换到右方的分割窗口
- Ctrl + h 切换到左方的分割窗口
2016年3月29日星期二
一些关于"深度学习&机器学习"的资料
关于深度学习的一些有趣网址,感兴趣的可以关注一下。
1. 机器学习(Machine Learning)&深度学习(Deep Learning)资料(Chapter 1)(非常推荐): https://github.com/ty4z2008/Qix/blob/master/dl.md
2. 100 Best GitHub: Deep Learning(深度学习开源程序,包含各种语言): http://meta-guide.com/software-meta-guide/100-best-github-deep-learning
3. 十个开源深度学习框架(推荐): http://valser.org/thread-740-1-1.html
4. 深度学习框架GitHub代码
- Theano: https://github.com/Theano/Theano
- torch7: https://github.com/torch/torch7
- caffe: https://github.com/BVLC/caffe
- cuda-convnet: https://github.com/dnouri/cuda-convnet
5. MatConvNet: CNNs for MATLAB http://www.vlfeat.org/matconvnet/
6. 对深度学习的前世今生的一份简短介绍: http://www.almosthuman.cn/2016/01/23/koarh/
7. 深度学习大牛贾扬清
- 个人网站: http://daggerfs.com/index.html
- 他开发的框架(Caffe): http://caffe.berkeleyvision.org/
- Caffe在Ubuntu系统上的安装: https://ouxinyu.github.io/Blogs/20140723001.html
- 贾扬清微信讲座完整版word文档: http://pan.baidu.com/s/1dDGVL53
Git基本操作日記
文章借鉴“www.shiyanlou.com”。
注意:以下操作均在linux系统平台终端中进行
1. Git 配置
git config --global user.name "<username>"
git config --global user.email "<youremail>"
note: 此为全局配置,将在用户家目录下创建一个.gitconfig文件
2. 获得Git仓库
git clone <网址>
3. 初始化一个新仓库
cd ~
mkdir project
cd project
git init
ls -al
注意:以下操作均在linux系统平台终端中进行
1. Git 配置
git config --global user.name "<username>"
git config --global user.email "<youremail>"
note: 此为全局配置,将在用户家目录下创建一个.gitconfig文件
2. 获得Git仓库
git clone <网址>
3. 初始化一个新仓库
cd ~
mkdir project
cd project
git init
ls -al
订阅:
博文 (Atom)