linux命令列模式 linux vi列模式

怎么才能进入linux的命令行模式如果已经进入xwindow可以是使用init 3命令进入console模式;可以使用ctrl+alt+f1~f6切换控制台linux命令列模式,ctrl+alt+f7为重新到xwindow;如果要使下次开机就进入console模式就编辑/etc/inittab 中id:5:initdefault中的5改为3
进入xwindows之后 , vi打开/etc/inittab
修改
idlinux命令列模式:x :initdefault
主要修改这里
x=3 #是文本
x=5 #是图形
---------------------------
方案一:从图形界面切换到字符界面
右键打开一个终端,然后命令:init 3
方案二:启动时自动进入字符界面
编辑文件/etc/inittab
id:3:init default
默认进入运行级 3
------------------------
INIT运行级别的相关知识:
运行级就是操作系统当前正在运行的功能级别 。这个级别从1到6 ,具有不同的功能 。
不同的运行级定义如下:/etc/inittab
# 0 - 停机(千万不能把initdefault 设置为0 )
# 1 - 单用户模式
# 2 - 多用户,没有 NFS
# 3 - 完全多用户模式(标准的运行级)
# 4 - 没有用到
# 5 - X11 (xwindow)
# 6 - 重新启动 (千万不要把initdefault 设置为6 )
你可以在命令行下执行init 1即可进入单用户模式 。
Linux 命令 格式 (命令的详细,排列,顺序,样式 。。。。)详细的格式:man --help
Usage: man [OPTION...] [章节] 手册页...
-C, --config-file=文件使用该用户设置文件
-d, --debug输出调试信息
-D, --default将所有选项都重置为默认值
--warnings[=警告]开启 groff 的警告
主要运行模式:
-f, --whatis等同于 whatis
-k, --apropos等同于 apropos
-K, --global-apropossearch for text in all pages
-l, --local-file
把“手册页”参数当成本地文件名来解读
-w, --where, --location输出手册页的物理位置
-W, --where-cat, --location-cat
输出 cat 文件的物理位置
-c, --catman由 catman 使用,用来对过时的 cat
页重新排版
-R, --recode=编码output source page encoded in ENCODING
寻找手册页:
-L, --locale=区域
定义本次手册页搜索所采用的区域设置
-m, --systems=系统use manual pages from other systems
-M, --manpath=路径设置搜索手册页的路径为“路径”
-S, -s, --sections=列表使用以半角冒号分隔的章节列表
-e, --extension=扩展
将搜索限制在扩展类型为“扩展”的手册页之内
-i, --ignore-case查找手册页时不区分大小写字母
(默认)
-I, --match-case查找手册页时区分大小写字母 。
--regexshow all pages matching regex
--wildcardshow all pages matching wildcard
--names-onlymake --regex and --wildcard match page names only,
not descriptions
-a, --all寻找所有匹配的手册页
-u, --update强制进行缓存一致性的检查
--no-subpagesdon't try subpages, e.g. 'man foo bar' = 'man
foo-bar'
控制格式化的输出:
-P, --pager=PAGER使用 PAGER 程序显示输出文本
-r, --prompt=字符串给 less pager 提供一个提示行
-7, --ascii显示某些 latin1 字符的 ASCII 翻译形式
-E, --encoding=编码use selected output encoding
--no-hyphenation, --nh turn off hyphenation
--no-justification,--njturn off justification
-p, --preprocessor=字符串字符串表示要运行哪些预处理器:
e - [n]eqn, p - pic, t - tbl,
g - grap, r - refer, v - vgrind
-t, --troff使用 groff 对手册页排版
-T, --troff-device[=设备]使用 groff 的指定设备
-H, --html[=浏览器]使用或指定浏览器显示 HTML 输出
-X, --gxditview[=分辨率]使用 groff 并通过 gxditview (X11)
来显示:

推荐阅读