【Linux】实验报告2 Linux基础命令

本文详细介绍了Linux系统中常见的文件系统结构、存储位置以及一系列常用命令的实践,如ls、cat、chmod、cp、mv、rm、mkdir、rmdir、cd、pwd等,涵盖了文件和目录的查看、复制、移动、删除、权限管理等方面。此外,还涉及其他命令如date、echo、cal、clear、ps、kill、who、passwd、su和man的使用,帮助读者深入理解并熟练掌握Linux系统操作。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

【封面】Linux实验报告
作者|Rickyの水果摊

时间|2022年6月27日


🍉 摊主の水果摊:

摊主的个人技术博客:https://rickyxcoder.top/ 🧑🏻‍💻
备用站点:https://rickyxcoder.gitee.io/

实验目的

了解Linux系统,熟悉Linux常用命令


实验原理

1.Linux文件系统

Linux 文件系统是树状结构,系统中每个分区都是一个文件系统,都有自己的目录层。Linux 会将这些分属不同分区的、单独的文件系统按照树状的方式形成一个系统的总目录层次结构。目录提供了一个管理文件方便而有效的途径,最上层是根目录,其它所有目录都是从根目录出发而生成的,如下图所示。

/root:根目录,该目录下一般只存放目录,不存放文件。

/bin:存放可执行二进制文件的目录,如常用命令 lsmvcat 等。

/home:为用户设置的目录,如用户 user 的主目录就是/home/user

/dev:系统硬件设备目录(device)。Linux系统所有的硬件都通过文件表示,访问该目录下某个文件,相当于访问某个设备,比如/dev/cdrom是光驱。

/etc:存放系统配置文件的目录,比如:/ect/passwd用于存储用户信息的文件。

/lib:存放根文件系统程序运行所需要的共享库及内核模块。共享库又叫作动态链接共享库,作用类似Windows里的.dll文件,存放了根文件系统程序运行所需的共享文件。

/sbin:放置系统管理员使用的可执行命令, 如 fdiskshutdown等。与/bin 不同的是,这几个目录是给系统管理员 root 使用的命令,一般用户只能"查看"而不能设置和使用。

/tmp:临时文件目录,用于存放各种临时文件,是公用的临时文件存储点,系统重启后不会被保存。

/usr:应用程序存放目录(unix system resource),/usr/bin 存放应用程序,/usr/share 存放共享数据,/usr/lib 存放一些函数库文件等。

/var:存放运行时需要改变数据的文件, 如随时更改的日志文件/var/log

/mnt:系统管理员安装临时文件系统的安装点,系统提供这个目录是让用户临时挂载其他的文件系统。

/boot:放置 Linux 系统启动时用到的一些文件,如Linux 的内核文件、引导程序等。

/opt:给主机额外安装软件所摆放的目录。

/proc:内存映射目录,该目录可以查看系统的相关信息。操作系统运行时,进程信息及内核信息(比如cpu、硬盘分区、内存信息等)存放在这里。

2.Linux存储位置

  • /bin

  • /sbin

  • /usr/bin

  • /usr/sbin

常用命令存放位置

image-20220524193310243

头文件存放位置

image-20220524194203751

3.Linux常用命令

路径
pwd			#print work/current directory
ls		   #list files
cd [directory_path]  #enter directory_path
cd .. 			#back to previous directory
cd ~    		#back to home directory
cd /    		#back to root directory
exit			#exit bash
目录
mkdir [new_directory]		#create new_folder in work directory

rm -ri [directory_name]		#remove directory with interaction
rm -rf [directory_name]		#remove directory without interaction
rmdir [empty_directory]		#remove empty_directory(not recommended)
文件
touch new.txt 				#create new.txt in work directory

echo "hello" > new.txt		#create new.txt with content "hello"
echo "world" >> new.txt	  	#append "world" to new.txt

cat test.txt				#show the content of test.txt

cat > test.txt            	#create test.txt with new_content
new_content
⌃+D
cat >> test.txt           #append new content to test.txt
new_content
⌃+D

vi test.txt				#open "vi" to modify test.txt
vim test.txt			#open "vim" to modify test.txt

实验内容

1. Linux常用命令实践

1.1 ls命令

ls → list directory contents

ls
ls

image-20220515164215572

ls -l
ls -l  #以长格式列出文件的详细信息

image-20220515164530190

ls -a
ls -a  #列出目录下的所有文件,包括以.开头的隐藏文件。

image-20220515164807708

ls -s
ls -s  #在每个文件名后输出该文件的大小。

在这里插入图片描述


1.2 cat命令

cat → concatenate and print files

cat
cat file_name.txt  #显示输出文档的内容

image-20220515170144998

cat -n
cat -n file_name.txt  #显示输出文档时,对输出文档的行数进行编号,从1开始

image-20220515170925160

cat -b
cat -b file_name.txt  #显示输出文档时,对输出文档的非空行数进行编号,从1开始

image-20220515171057080

cat -s
cat -s file_name.txt  #显示输出文档时,将输出文档的多行空格显示为一行空格

image-20220515171611129

cat -e
cat -e file_name.txt  #显示输出文档时,在每行结束处显示$

image-20220515171755091

cat >
cat >new_test.txt  #创建空白的new_test.txt文件,并且写入下面内容
add new text here.


There are 3 blank lines in this new file.
#输入control+D来结束输入

image-20220515172620783

image-20220515173021499

cat >>
cat >>new_test.txt  #向new_test.txt文件中追加内容
This line is appended to the file by using >>
#输入control+D来结束输入

image-20220515173434034

cat [file1] [file2]
cat file1.txt file2.txt  #将file1与file2内容连接起来并显示(不改变原file1,file2内容)

image-20220515174226239

cat [file1] [file2] >[file3]
cat file1.txt file2.txt >file3.txt  #创建file3,将file1与file2内容连接起来并且写入file3中

image-20220515174850845


1.3 chmod命令

chmod → change file mode bits

ll [file]
ll file1.txt  #查看指定文档的权限

image-20220517084621142

chmod [user_type] [+/-] [r/w/x] [file]
chmod u-w file1.txt  #删除owner的写入权限

image-20220517091613281

chmod -w file1.txt  #删除file1.txt的写入权限
chmod +w file1.txt  #添加file1.txt的写入权限

image-20220517085657642

用户类型

who用户类型说明
uowner文件所有者
ggroup文件所有者所在组
oother users所有其他用户
aall所有用户,相当于ugo

Linux/Unix的文件调用权限分为三级 : 文件所有者(Owner)用户组(Group)其它用户(Other Users)

操作符号

Operator说明
+添加指定用户类型的权限
-删除指定用户类型的权限
=设置指定用户权限的设置,即将用户类型的所有权限重新设置

权限符号

operator说明
r读取
w写入
x执行

1.4 cp命令

cp → copy files or directories

cp [file1] [file2]
cp file1.txt file2.txt  #将file1.txt复制到file2.txt

image-20220517093040562

cp [file] [folder]
cp file1.txt test  #将file1.txt复制到test文件夹中

image-20220517093828335


1.5 mv命令

mv → move(rename) files

mv [file1] [file2]
mv file1.txt file2.txt #将当前目录下的文件 file1 更名为 file2

image-20220627111102686

mv [file] [folder]
mv file2.txt test  #将file2.txt移动至同一目录下的test文件夹中

image-20220517141618133

mv file2.txt ~/Desktop  #将file2.txt移动至桌面

image-20220517142106800

mv [file] ..
 mv file1.txt ..  #将file1.txt移动至上一级目录中

image-20220517143155906


1.6 rm命令

rm → remove files or directories

rm [file]
rm file1.txt  #删除file1.txt

image-20220517151802470

rm -i [file]
rm -i file1.txt  #以交互的方式删除file1.txt

image-20220517150524405

rm -rf [folder]
rm -rf folder7  #删除整个folder7目录,无交互

image-20220517152304592

rm -ri [folder]
rm -ri folder2  #删除整个folder7目录,有交互

image-20220517152721342


1.7 mkdir命令

mk → make directories

mkdir [folder]
mkdir folder  #在当前工作目录中创建新的目录folder

image-20220517143703047

mkdir [folder1 folder2 folder3]
mkdir folder4 folder5 folder6  #在当前工作目录中创建新的目录folder

image-20220517144031339

mkdir -p [folder/subfolder]
mkdir -p folder7/test  #在当前工作目录中创建带有子目录的目录

image-20220517144236875


1.8 rmdir命令

rmdir → remove empty directories

rmdir [folder]
rmdir folder6 folder5 folder4  #删除空目录folder6/5/4

image-20220517144830102

注意点:rmdir命令仅支持删除空目录,若选择的目录是非空目录,则会报错。

image-20220517145314120


1.9 cd命令
cd [directory]
cd test  #切换至指定目录

image-20220517082636083

cd ..
cd ..  #返回上一级目录

image-20220517082932749

cd ~
cd ~  #进入用户主目录

image-20220517083307053

cd /
cd /  #进入根目录

image-20220517083456655


1.10 pwd命令

pwd → print name of current/working directory

pwd
pwd  #显示当前工作目录的绝对路径

image-20220517082159157


2. Linux其他命令实践

2.1 date命令

date → print or set the system date and time

date
date  #显示当前日期信息

image-20220516160754872


2.2 echo命令

echo → display a line of text

echo
echo "hello\tworld"   #显示字符串,一般起到提示的作用

image-20220516200057058

echo -e
echo -e "hello\tworld"   #显示字符串,转义字符生效

image-20220516200347827

echo -n
echo -n "hello\tworld"   #显示字符串,结尾不换行

image-20220516200320603

echo string > file1
echo -e "hello\tworld" >file1.txt   #将"hello world"覆盖至file1.txt中

image-20220516200938163

echo string >> file1
echo -e "hello\tworld" >>file1.txt   #将"hello world"追加至file1.txt中

image-20220516201206735

echo “\033[xxm……\033[0m”
echo -e "\033[33mhello\tworld\033[0m"  #显示彩色字体

image-20220516201731150

#彩色字体参数表
\033[30m 黑色字 \033[0m
\033[31m 红色字 \033[0m
\033[32m 绿色字 \033[0m
\033[33m 黄色字 \033[0m
\033[34m 蓝色字 \033[0m
\033[35m 紫色字 \033[0m
\033[36m 天蓝字 \033[0m
\033[37m 白色字 \033[0m
\033[40;37m 黑底白字 \033[0m
\033[41;37m 红底白字 \033[0m
\033[42;37m 绿底白字 \033[0m
\033[43;37m 黄底白字 \033[0m
\033[44;37m 蓝底白字 \033[0m
\033[45;37m 紫底白字 \033[0m
\033[46;37m 天蓝底白字 \033[0m
\033[47;30m 白底黑字 \033[0m

2.3 cal命令

cal → calendar

cal
cal  #显示当前月份日历

image-20220516160951028

cal month year
cal 10 2022  #显示指定月份日历

image-20220516161330131

cal -j
cal -j  #显示自1月1日起的总天数

image-20220516161454632

cal -y
cal -y  #显示当前年历

image-20220516194534708


2.4 clear命令

clear → clear the terminal screen

clear
clear  #使终端显示页向后翻一页,实现清屏

2.5 ps命令

ps → report a snapshot of the current processes

ps -l
ps -l  #较长、较详细的将属于本次登入用户的进程列出来

image-20220517194126372

各个表头的含义为:

  • F:代表这个进程的flag,如果是4,则代表使用者为 super user
  • S:代表这个进程的状态stat
  • UID:代表执行者的userId
  • PID:进程的id
  • PPID:父进程的id
  • C:占用CPU资源的百分比
  • PRI:指进程的执行优先级(Priority的简写),其值越小越早被执行
  • NI:代表进程的nice值,其表示进程可被执行的优先级的修正数值
  • ADDR:代表进程的地址,它指出该进程在内存的哪个部分,如果是个正在运行的程序,一般都是"-"
  • SZ:占用的内存大小
  • WCHAN:判断当前进程是否正在运行,若为"-",则代表正在运行;若该进程处于休眠状态,该值就是它在内核中的地址
  • TTY:该进程是在那个终端机上面运行,若与终端机无关,则显示?,另外,tty1-tty6 是本机上面的登入者程序,若为 pts/0 等等的,则表示为由网络连接进主机的程序。
  • TIME:占用CPU的时间
  • CMD:所下达的指令名称
ps -aux
ps -aux  #显示后台运行的进程

image-20220517191900654

各个表头的含义为:

  • USER:表示该进程属于哪个用户
  • PID:进程id
  • %CPU:该进程占用CPU资源的百分比
  • %MEM:该进程占用内存的百分比
  • VSZ:该进程使用掉的虚拟内存量 (Kbytes)
  • RSS:该进程占用的固定的内存量 (Kbytes)
  • TTY:该进程是在那个终端机上面运行,若与终端机无关,则显示?,另外,tty1-tty6 是本机上面的登入者程序,若为 pts/0 等等的,则表示为由网络连接进主机的程序。
  • STAT:代表该进程目前的状态,主要的状态有:
    • R:该进程正在运行
    • S:该进程正在休眠,但可被某些信号(signal)唤醒
    • D:无法中断的休眠状态(通常为IO进程)
    • T:该进程已经停止
    • Z:僵死状态,该进程应该已经终止,但是其父进程却无法正常的终止它,造成zombie(疆尸)程序的状态
    • W:等待状态,等待内存的分配
    • <:高优先级的进程
    • N:低优先级的进程
  • START:该进程被触发启动的时间
  • COMMAND:该进程的实际指令
ps -u
ps -u  #显示属于自己的进程

image-20220517191656939

ps -ef | grep [xxx]
ps -ef | grep java  #查看指定进程,如关于java的进程

image-20220517195239326


2.6 kill命令

kill → send a signal to a process

kill -l
kill -l  #显示所有信号名称

image-20220517192949958

只有第9种信号 “强制退出” (SIGKILL)才可以无条件终止进程,其他信号进程都有权利忽略。

kill -9 [PID]
#先筛选出相关进程
> ps -ef | grep java
root     16934     1  0 Feb25 ?        00:18:13 java -jar demo.jar

#彻底杀死该进程
> kill -9 16934

2.7 who命令

who → show who is logged on

who
who  #显示当前登录系统的用户

image-20220517201556841

who --version
who --version  #查看当前版本

image-20220517201903969

whoami
whoami  #显示当前登录的用户名

image-20220517201354675


2.8 reboot命令

reboot → halt, power-off or reboot the machine

reboot
reboot  #重新启动计算机,它的使用权限是系统管理者。

2.9 passwd命令

passwd → change user password

passwd
passwd  #修改当前用户登陆密码

image-20220518095431116

passwd -d [user]
passwd -d parallels  #删除用户parallels的密码

image-20220518095431116


2.10 su命令

su → run a command with substitute user and group ID

cat
>whoami #显示当前用户
ricky
>pwd    #显示当前目录
/home/ricky
>su root #切换到root用户
密码: 
>whoami #显示当前用户
root
2.11 man命令

man → an interface to the system reference manuals

man
man ls  #显示ls命令的使用指南

image-20220518094554866


实验作业

1.who 命令

  1. 有多少用户正在使用你的Linux系统?给出显示的结果

image-20220518101457337

  1. 哪个用户登录的时间最长?给出该用户登录的时间和日期。

image-20220518101422734

2.uname 命令

使用下面的命令显示有关你计算机系统信息:uname(显示操作系统的名称), uname –n(显示系统域名),uname –p(显示系统的CPU名称)

  1. 你的操作系统名字是什么?

image-20220518101657785

  1. 你计算机系统的域名是什么?

image-20220518101728024

  1. 你计算机系统的CPU名字是什么?

image-20220518101838598

3.passwd命令

  1. 使用passwd命令修改你用whoami命令找到的用户的密码。

image-20220518102204758

  1. 然后使用who -a命令来看看你的用户名和同一系统其他用户的登录密码。

    image-20220518102402592

4.PS1提示符

  1. 在shell提示符后,输入echo $PS1并按回车键,系统怎样回答?

image-20220518102517782

PS1为shell命令行界面的主提示符。

  1. 在shell提示符后,输入PS1=%并按回车键,显示屏有什么变化?

image-20220518103358099

  1. 在shell提示符后,输入set 并按回车键,系统显示环境变量。给出你系统中的环境变量和它的值。

image-20220518103610752

5.综合实践

本实验用到的命令还有:date、cal、pwd、write、uptime、man等。

  1. 登录你的Linux系统。

image-20220518112316632

  1. 用命令date显示当前的时间,给出显示的结果。
date

image-20220518103855653

  1. 用cal命令显示下列年份的日历:4、52、1752、1952、2005、2006

a) 给出你显示以上年份年历的命令

cal 4
cal 52
cal 1752
cal 1952
cal 2005
cal 2006

b) 1752年有几天,为什么?

image-20220518104447563

image-20220518104853546

image-20220518104516952

1752年由于某些历史原因,在9月份少了11天,全年仅有355天。

  1. 用pwd显示你的主目录(home directory)名字,给出pwd显示的结果。
pwd

image-20220518105142466

  1. 使用alias 命令显示系统中的命令的别名,给出显示的结果。
alias

image-20220518105247054

  1. 使用uptime命令判断系统已启动运行的时间和当前系统中有多少登录用户,给出显示的结果。
uptime

image-20220518105353859

  1. 通过因特网或 Linux的man命令得到下面的shell命令、系统调用和库函数功能描述及每个命令使用例子:
CommandShort DescriptionUse Example
touchupdate the access and modification times of each FILE to the current timetouch [file]
cpcopy files and directoriescp [file] [dir]
mvmove (rename) filesmv [file] [dir]
rmremove files or directoriesrm -rf [dir]
mkdirmake directoriesmkdir [dir]
rmdirremove empty directoriesrmdir [dir]
lslist directory contentsls
cdchange directorycd [dir]
pwdprint name of current/working directorypwd
openopen, openat, creat - open and possibly create a fileint fd=open(“./file”,O_RDONLY)
readread from a file descriptorread -p “prompt” [input]
writesend a message to another usern=write(fp, p1+len, 3)
closeclose a file descriptorint close(int fd)
pipecreate pipeint pipe(int pipefd[2]); #fd[0]为读端,fd[1] 为写端
socketcreate an endpoint for communicationint socket(int domain,int type,int protocol)
mkfifomake FIFOs (named pipes)int mkfifo(const char* pathname, mode_t mode)
systemexecute a shell commandint system(const char *command)
printfformat and print dataprintf [format] [arguments]

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值