首页 > 代码库 > 《Linux菜鸟入门》初识linux基础
《Linux菜鸟入门》初识linux基础
初识linux
一 进入系统
1.用户
普通用户 : student 密码: student
超级用户 : 点击 not listed
username :root password: redhat
在系统中,为了系统的安全性,大部分使用的是普通用户。
2.语言调整
点击屏幕左上 Application 点击 system tools setting Region&language
3.系统的基础使用
1》系统登陆
图形登陆方式:即有画面的登陆方式
文本登陆方式:在终端方式下登陆
2》系统关机,重启
在终端中输入
重启: reboot , init 6 , shutdown -r now
关机: poweroff , init0 , shutdown -h now
3》虚拟控制台
Ctrl+Alt+F(1|7) 进入图形
Ctrl+Alt+F(2~6) 进入虚拟控制台
Red hat Enterprise Linux Server 7.0 (Maipo) 系统版本
Kernel 3.10.0-123.el7.x86_64 on an x86_64 内核版本,系统位数
desktop0 login:root 登陆用户名称输入
Password: 密码输入无回显
4》打开终端
①Applications Utilities Terminal
②鼠标右键 open in terminal
③gnome-terminal
④退出:exit , ctrl+d
[kiosk@foundation0 Desktop]$
kiosk 打开shell的用户
@ 分隔符
foundation0 主机名称
Desktop 工作目录名称
$ 身份提示符,#表示超级用户,$表示普通用户
⑤注意:命令要在行提示符之后输入才能执行
4.快捷键
①. 锁屏 ctrl + alt +L
②. 在终端中
左右键 一个字符一个字符移动一个字一个字移动
ctrl+ a 光标移动到行首
ctrl+ e 光标移动到行尾
ctrl+ u 光标所在位置删除到行首
ctrl+ r+关键字 调出最近一条含有关键字的命令
ctrl+ 左|右 光标移动以单词为单位
ctrl+ c 撤销以输入的命令
ctrl+ d 关闭当前环境
ctrl+ shift + t 在现有shell中重新打开一个table
ctrl+ shift + pageup|pagedown 切换table
ctrl+ alt + l 锁屏
ctrl+ alt +上|下 切换工作界面
ctrl+ alt + f1|f7 进入图形界面
ctrl+ alt + f2-f6 进入虚拟控制台
5.虚拟机
[kiosk@foundation0 Desktop]$ rht-vmctl start desktop 开启desktop虚拟机
Error: desktop not started (is already running) 报错,desktop已经运行
[kiosk@foundation0 Desktop]$ rht-vmctl view desktop 显示desktop
[kiosk@foundation0 Desktop]$ rht-vmctl poweroff desktop 关闭dekstop
Powering off desktop..
[kiosk@foundation0 Desktop]$ rht-vmctl start desktop 开启desktop
Starting desktop.
[kiosk@foundation0 Desktop]$ rht-vmctl view desktop
[kiosk@foundation0 Desktop]$ rht-vmctl poweroff desktop
Powering off desktop..
[kiosk@foundation0 Desktop]$ rht-vmctl view desktop
Error: unable to view desktop - not currently running. 虚拟机没开启无法显示
二 命令
1.学习如何查询命令
whatis 命令 查看命令的功能
命令 --help 查看命令的帮助
[] 选择加入的内容,可加可不加
... 加入的内容个数任意
<> 内容在命令执行过程当中必须要加
2.使用命令的基本注意事项
1.命令必须在行提示符之后输入
2.命令格式
命令 参数 目标
3.ctrl +c 撤销命名的执行
4.命令参数
-参数 单词缩写
--参数 单词的全拼
3.简单的系统命令
①.date
watch -n 1 date 让date命令每秒执行一次,ctrl +c 推出监控模式
date 11181115 把系统时间设定为11月18日11:15 格式:月月天天小时分钟
date 111811152016.55 2016表示年(可以不加).55 表示秒(可以不加)
-d +xday -xday 查看x天前或者后的时间
+%.... 设定date的输出格式
②.passwd
1.passwd 修改用户密码
[root@foundation0 ~]# passwd 改变超级用户密码
Changing password for user root.
New password:
BAD PASSWORD: The password is shorter than 8 characters 密码不得少于8位
Retype new password:
passwd: all authentication tokens updated successfully.
[kiosk@foundation0 Desktop]$ passwd
Changing password for user kiosk.
Changing password for kiosk.
(current) UNIX password:
New password:
BAD PASSWORD: The password is the same as the old one
New password:
BAD PASSWORD: The password fails the dictionary check - it is too simplistic/systematic 密码必须是无序数字+字母
New password:
BAD PASSWORD: The password is shorter than 8 characters 密码必须>8位
2.passwd其他参数
参数 用户名称
-S 用户密码信息
--status 。。。。。。
-l 锁定帐号
-u 解锁
-n 设定密码最短有效期
-x 设定密码最长有效期
-w 警告期
-i 设定用户非活跃天数
-d 清除用户密码监控passwd密码信息
watch -n 1 passwd -S student
③.file 查看文件类型
file 文件名字
④.文件的查看 ##显示文件的全部内容
cat 显示一个文件的前几行
head ##前五行
head -n 5 ##显示文件后几行
tail ##显示一个文件的后5行
tail -n 5
⑤.wc统计文件容量信息
-l 行数
-w 字数
-c 字节数
-m 字符数
⑥.history
history 显示历史
hostory -c 清除当前环境当中的历史命令
!数字 执行第多少行命令
!字母 执行最近一条以这个字母开头的命令
ctrl +R +关键字 执行最近一条含有这个关键字的命令
上下键 逐行调用命令
本文出自 “12147236” 博客,谢绝转载!
《Linux菜鸟入门》初识linux基础