实验三 Linux系统用户管理及VIM配置

项 目内容
这个作业属于哪个课程 课程链接
这个作业要求在哪? 作业要求
学号-姓名 *17043113-胡斌
作业学习目标 学习Linux用户系统管理;学习vim使用及配置

1)如何在与用户有关的三个文件中查看当前用户的信息?

image-20200522192604750

cat /etc/passwd | grep lidaji #将/etc/passwd中的所有文本显示并且通过管道传给后面的命令搜索用户名为lidaji的用户,并将选择的用户使用信息显示在终端上

请简要描述这三个文件?

答:一、/etc/passwd :用户信息文件;在这个文件中存放着与用户有关的信息;包含的信息有7大类,由”:“分割开来,7大类分别为:

1、登录用户名(上图中lidaji);

2、用户密码(上图中x);

3、用户账户的UID(上图中的1000);

4、用户账户的组ID(上图中的1000);

5、用户账户的文本描述(图中的lidaji,,,);

6、用户Home的目录位置(上图中的/home/lidaji);

7、用户的默认shell(上图中的/bin/bash);

/etc/gruop:用户组文件,文件包含系统上用到的每个组的信息。包含的信息有4大类,由 “ :”分割开来,4大类分别为:

1、组名;

2、组密码;

3、用户账户的组ID[GID]();

4、属于该组的用户的列表;

2)用id命令查看当前用户相关信息

image-20200522192713122

请简要描述输出结果

使用id命令可输出:用户id(即UID),群组id(即GID),以及lidaji用户下的组成员id号,即4(adm)之类的

同理,使用id root命令输出的为用户id(uid),群组id(gid);以及用户组成员id

3)创建两个账号,一个账号为test,另外一个账号以大写E开头加上你自己学号尾数4位,两个账号分别设置密码及管理员权限,账号设置完成后,切换账号简单查看信息后,删除test账号,保留另一账号,以备后续操作。

a)创建账号

image-20200522192812126

b) 设置密码

image-20200522192842248

c)设置权限

image-20200522192951266

d)切换账号

image-20200522193029912

e)删除账号test

image-20200522193142781

2.VIM简单配置

a)切换到保留的新创建账号

image-20200522193434955

b)在用户主目录创建一个VIM配置文件.vimrc

老师,我这里出了点问题,所以我后面换了个账号做

image-20200522193536587

c)打开并向文件中添加以下内容

set number          "显示行号   

syntax on           "语法高亮

set cursorline      

set ruler           " 显示标尺  

set showcmd         " 输入的命令显示出来,看的清楚些  

set scrolloff=3     " 光标移动到buffer的顶部和底部时保持3行距离  

set novisualbell   " 不要闪烁(不明白)  

set statusline=%F%m%r%h%w\ [FORMAT=%{&ff}]\ [TYPE=%Y]\ [POS=%l,%v][%p%%]\ %{strftime(\"%d/%m/%y\ -\ %H:%M\")}   "状态行显示的内容  

set nocompatible               "去除VIM一致性,必须"

set fencs=utf-8,ucs-bom,shift-jis,gb18030,gbk,gb2312,cp936

set termencoding=utf-8

set encoding=utf-8

set fileencoding=utf-8


"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

"""""新文件标题

""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

"新建.c,.h,.sh,.java文件,自动插入文件头

autocmd BufNewFile *.cpp,*.[ch],*.sh,*.java exec ":call SetTitle()"

""定义函数SetTitle,自动插入文件头

func SetTitle()

  "如果文件类型为.sh文件

  if &filetype == 'sh'

      call setline(1,"\#########################################################################")

      call append(line("."), "\# File Name: ".expand("%"))

      call append(line(".")+1, "\# Author: 17043113-胡斌")

      call append(line(".")+2, "\# mail: 541775646@qq.com ")

      call append(line(".")+3, "\# Created Time: ".strftime("%c"))

      call append(line(".")+4, "\#########################################################################")

      call append(line(".")+5, "\#!/bin/bash")

      call append(line(".")+6, "")

  else

      call setline(1, "/*************************************************************************")

      call append(line("."), "   > File Name: ".expand("%"))

      call append(line(".")+1, "   > Author: 17043113-胡斌")

      call append(line(".")+2, "   > Mail: 541775646@qq.com")

      call append(line(".")+3, "   > Created Time: ".strftime("%c"))

      call append(line(".")+4, " ************************************************************************/")

      call append(line(".")+5, "")

  endif

  if &filetype == 'cpp'

      call append(line(".")+6, "#include<iostream>")

      call append(line(".")+7, "using namespace std;")

      call append(line(".")+8, "")

  endif

  if &filetype == 'c'

      call append(line(".")+6, "#include<stdio.h>")

      call append(line(".")+7, "")

  endif

  "新建文件后,自动定位到文件末尾

  autocmd BufNewFile * normal G

endfunc

""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set autoindent " 自动缩进

set cindent

set tabstop=4   " Tab键的宽度

set softtabstop=4 " 统一缩进为4

set shiftwidth=4

set noexpandtab " 不要用空格代替制表符

set smarttab " 在行和段开始处使用制表符

set showmatch

set history=1000 " 历史记录数

set nobackup "禁止生成临时文件

set noswapfile

set ignorecase "搜索忽略大小写

set hlsearch "搜索逐字符高亮

set incsearch

set gdefault "行内替换

set langmenu=zh_CN.UTF-8 "语言设置

set helplang=cn

set laststatus=2 " 总是显示状态行

filetype on   " 侦测文件类型

filetype plugin on " 载入文件类型插件

filetype indent on " 为特定文件类型载入相关缩进文件

set iskeyword+=_,$,@,%,#,- " 带有如下符号的单词不要被换行分割

set linespace=0 " 字符间插入的像素行数目

set wildmenu " 增强模式中的命令行自动完成操作

set backspace=2 " 使回格键(backspace)正常处理indent, eol, start等

set whichwrap+=<,>,h,l " 允许backspace和光标键跨越行边界

set mouse=a " 可以在buffer的任何地方使用鼠标(类似office中在工作区双击鼠标定位)

set selection=exclusive

set selectmode=mouse,key

"自动补全

:inoremap ( ()<ESC>i
:inoremap ) <c-r>=ClosePair(')')<CR>
:inoremap { {<CR>}<ESC>O
:inoremap } <c-r>=ClosePair('}')<CR>
:inoremap [ []<ESC>i
:inoremap ] <c-r>=ClosePair(']')<CR>
:inoremap " ""<ESC>i
:inoremap ' ''<ESC>i

function! ClosePair(char)
  if getline('.')[col('.') - 1] == a:char
      return "\<Right>"
  else
      return a:char
  endif
endfunction

set completeopt=longest,menu "打开文件类型检测, 加了这句才可以用智能补全

d)创建并打开一个以.c结尾的文件,如vim helloworld.c

显示如下:

image-20200522193813068

 

posted on 2020-05-23 12:20  17043113胡斌  阅读(208)  评论(1编辑  收藏  举报