安装centos7
1.在VMware中建立空白虚拟机
2.编辑虚拟机
3.选择光盘镜像作为启动源
4.时区,语言,分区等配置,root用户密码设置,普通用户设置
5./boot 系统引导程序,swap虚拟交换分区,/proc虚拟文件系统(反映进程等的实时状态),/tmp临时文件,/usr系统文件,/var经常发生变化的文件(数据库文件等)
服务器介绍
三种服务器类型: 塔式服务器 、 机架式服务器 、 刀片式服务器 。云平台的使用
阿里云,腾讯云等的使用。
阿里云https://www.aliyun.com/?utm_content=se_1000301881,
腾讯云https://cloud.tencent.com/fromSource=gwzcw.2212127.2212127.2212127&utm_medium=cpd&utm_id=gwzcw.2212127.2212127.2212127
在其各个官网上进行操作,选择服务器规格(内存,核数等),系统(Windows,linux等)。
基本指令
su---切换用户
ls---查看目录下包含的
cat---查看文件内容
head--查看文件前10行内容(-n)
tail----查看文件末尾10行内容(-n)
cd---更改目录
touch---创建文件
mkdir---创建文件夹
rm---删除文件或目录(-r 递归)
mv---移动文件同时改名
init 0--关机
init 6--重启
locale--查看语系(编码格式:UTF-8,GBK等)
shutdown -h now---立刻关机(参数可为具体时间)
shutdown -r now---立即重启()
sync; sync; sync; reboot---同步数据后重启
ls
ls -l #显示详细信息
ls -h #显示容量大小
ls -d #查看自己
ls -t #按时间排序
ls -r #反向排序
ls -a #查看全部文件,包括隐藏文件
ls -i #列出inode的位置
ls -R #与子目录内容一起列出来
ls -S #按文件容量大小排序,大于 4096 字节才有效
ls --full-time #完整的呈现文件的修改时间
ls -1 #每行显示一个文件或目录名
选项可以组合:
例如
ls -lid #查看自己的详细信息 以及自己的inode位置
cd
cd ~ #回到自己的家目录
cd ~ rourou #回到rourou的家目录
cd - #回到上次离开的目录
cd .. #到上一层目录
date
[root@hostname ~]# date
Mon Jul 22 22:29:42 CST 2019
[root@hostname ~]# date +"%Y-%m-%d"
2019-07-19
时间格式.jpg
日历:
cal #可以指定年,月
帮助
ls --help #查看帮助
man ls #查看说明文档
权限
linux里一切皆文件
关系有三种:user,group,other
/etc/passwd 保存了用户的相关信息
/etc/shadow 保存了用户的密码等信息
/etc/group 保存了组的相关信息
修改关系
chown
[root@localhost a]# ll a.txt
-rw-r--r--. 1 root root 0 Jul 22 16:00 a.txt
[root@localhost a]# chown rourou a.txt
[root@localhost a]# ll a.txt
-rw-r--r--. 1 rourou root 0 Jul 22 16:00 a.txt
[root@localhost a]# chown :rourou a.txt
[root@localhost a]# ll a.txt
-rw-r--r--. 1 rourou rourou 0 Jul 22 16:00 a.txt
[root@localhost a]# chown root:root a.txt
[root@localhost a]# ll a.txt
-rw-r--r--. 1 root root 0 Jul 22 16:00 a.txt
修改权限
符号方式
对象 赋值 权限类型
U + r
Chmod g - w
o =(覆盖) x
a(所有的)
数字方式
r=4
w=2
x=1
[root@localhost a]# ll a.txt
-rw-r--r--. 1 root root 0 Jul 22 16:00 a.txt
[root@localhost a]# chmod 166 a.txt
[root@localhost a]# ll a.txt
---xrw-rw-. 1 root root 0 Jul 22 16:00 a.txt
文件的r : 查看文件内容
文件的x : 执行该文件
目录的r :查看该目录下的文件和目录
目录的x: 允许使用该目录
inode
linux的存储方式所致,linux的文件和文件夹存储是通过索引完成的,inode相当于索引,但是又不同于索引,inode中包含权限,user,group以及对应的clock号,clock中包含对应数据或是其下一级目录的inode号,以此类推。
inode.jpg
权限掩码
umask -S #从创建时减去umask的权限得到最后的权限
umask.jpg
网友评论