Linux入门(二) 之 基本操作(上)

时间:2023-02-11 17:47:01

一. 文件文本操作
目标: 建一个linuxStudy目录,里面有子目录test1,test1下有一个文本command,里面写了Linux最基本的命令,再查看目录和文本信息
命令如下:

mkdir linuxStudy
cd linuxStudy
mkdir test1
cd test1
touch command
vi command
写上该写的.....
ls -a
cat command

二. 复制移动重命名
mv command command1
cp command1 ..command
rm command1
mv ..command command
Linux入门(二) 之 基本操作(上)

三. vi的基本使用,so easy,和用记事本差不多,不多介绍了,不懂不记得百度就知道啦

四. 查看信息

ls -l command
cat command
more command
tail command
head command
less command
history
lsmod
date
cal
uptime
clock
man uptime
echo 9999 //输入

五. 查找
find . name “command” -exec ls -l {} \
find . user root -exec ls -l {} \
find . type d -exec ls -l {} \
find / size 50 -exec ls -l {} \

六. 归档
tar -cvf test1.tar test1
tar -tf test1.tar
详细的请看查看归档博客

七. 关机
shutdown -h 23:20
shutdown -r +10
shutdown -h now
poweroff
reboot重启