1.在呢用is把隐藏的文件显示出来:
ls -a 就可以啦
2.vim退出:
在命令模式中,连按两次大写字母Z,若当前编辑的文档曾被修改过,则Vi保存该文档后退出,返回到shell;若当前编辑的文档没被修改过,则Vi直接退出, 返回到shell。
http://www.cnblogs.com/BloodAndBone/archive/2010/09/21/1832428.html
3. 退出终端:exit 回车
4.Linux用ps命令查找进程PID再用kill命令终止进程的方法
http://blog.csdn.net/zhshow/article/details/6042338
5. windows透过VNC访问ubuntu server:
http://www.linuxidc.com/Linux/2012-10/73043.htm
6.VNC登陆ubuntu server时,桌面上什么也没有?
修改~/.vnc/xstartup文件
#!/bin/sh
# Uncomment the following two lines for normal desktop:
# unset SESSION_MANAGER
# exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
# twm &
gnome-session &
上面修改的意思是将默认启动的twm程序改为gnome,如果想用KDE作为桌面的,可以改为:startkde &
7. VIM保存退出?
先退出到 普通模式 下(按ESC 或 <C-[>),然后再打 :wq 或者直接按 ZZ 也一样
8. VIM打开文件以后怎么跳到最后一行?
G 跳到最后一行
10G 跳到第10行
gg 跳到第一行 http://zhidao.baidu.com/question/482024858.html