来源:http://superuser.com/questions/300500/ubuntu-unable-to-edit-bashrc-file-because-of-readonly This is a vim issue, not a file permission issue. If you did not have read permission on the file, you'd see a "Permission denied" error. Do you invok…
1 vi & vim 有两种工作模式: (1)命令模式:接受.执行 vi & vim 操作命令的模式,打开文件后的默认模式: (2)编辑模式:对打开的文件内容进行 增.删.改 操作模式: 2 创建.打开文件:$ vi [filename] (1)使用 vi 加文件路径(或文件名)的模式打开文件,如果文件存在则打开现有文件,如果文件不存在则新建文件,并在终端最下面一行显示打开的是一个新文件. (2)键盘输入字母 "i" 或 "insert" 键进入最常…