The Linux user directory is a directory created by the system administrator when adding users. Each user has his own home directory. The home directories of different users are generally different from each other; when a user first logs in to the system, other The working directory is the user's home directory, usually the same as the user's login name; users can reference their home directory through a "~" character.
#The operating environment of this tutorial: linux5.9.8 system, Dell G3 computer.
What does the linux user directory mean?
~ represents the user’s home directory in Linux
For general users, ~ represents /home/ (user name)
For root users, ~ represents /root
If you want to see the true appearance of ~, you can first enter the ~ directory, and then use the pwd -P command to view the absolute path of ~
cd ~ pwd -P
The user's home directory can be in /etc/passwd Item 6 finds
[root@www ~]# head -n 4 /etc/passwdroot:x:0:0:root:/root:/bin/bash <p> Home directory: <br> This is the user’s home directory. Taking the above example, root’s home directory is in /root, so when root logs in, it will immediately go to /root It’s in the catalog! hehe! If you have an account with a particularly large space, what should you do if you want to move the account's home directory to another hard drive? correct! You can make modifications in this field! The default user home directory is in The /home/yourIDname</p><p> directory is a special file for organizing files in the Linux system. To enable users to better use directories, we introduce some basic concepts about directories. </p><p>(1) Working directory and user home directory <br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px">Logically speaking, after the user logs in to the Linux system, he is in a certain directory at all times. This directory <br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px"> The directory is called the working directory or current directory (Working Directory). The working directory can be changed at any time. When a user initially logs into the system, his home directory (Home<br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px">Directory) becomes his working directory. The working directory is represented by "." and its parent directory is represented by "..". <br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px">The user home directory is created by the system administrator when adding users (it can also be changed later). Each user has his own home directory. The home directories of different users are generally different from each other. <br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px">When a user first logs in to the system, his working directory is the user's home directory, which is usually the same as the user's login name. <br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px">Users can reference their home directory through a ~ character. <br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px">For example, the command <br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px">/home/WANG$ cat ~/class/software_1<br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px"> has the same meaning as the following command <br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px">/home/WANG$ cat /home/WANG/class/software_1<br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px">. The shell will replace the ~ character with the name of the user's home directory. After the directory hierarchy is created, users can put relevant files into the corresponding directories to organize the files. </p><p>(2)路径 <br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px">顾名思义,路径是指从树型目录中的某个目录层次到某个文件的一条道路。此路径的主要构成是目录名称,中间用“/”分开。任一个文件在文件系统中的位置都是由相应的路径决定的。 <br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px">用户在对文件进行访问时,要给出文件所在的路径。 路径又分相对路径和绝对路径。 绝对路径是指从“根”开始的路径,也称为完全路径;相对路径是从用户工作目录开始的路径。 <br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px">应该注意到,在树型目录结构中到某个确定文件的绝对路径和相对路径均只有一条。绝对路径是确定不变的,而相对路径则随着用户工作目录的变化而不断变化。这一点对于我们以后使用某些命令如cp和tar等大有好处。 <br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px">用户要访问一个文件时,可以通过路径名来引用,并且可以根据要访问的文件与用户工作<br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px">目录的相对位置来引用它,而不需要列出这个文件的完整路径名。例如,用户WANG有一个名为class的目录,该目录中有两个文件:software_1<br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px">和hardware_1。若用户WANG想显示出其class目录中的名为software_1的文件,可以使用下列命令: <br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px">/home/WANG$ cat /home/WANG/class/software_1<br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px">用户也可以根据文件software_1与当前工作目录的相对位置来引用该文件。</p><p>这时命令为: <br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px"></p><pre class='brush:php;toolbar:false;'> /home/WANG$ cat class/software_1
Linux中用 pwd 命令来查看”当前工作目录“的完整路径。 简单得说,每当你在终端进行操作时,你都会有一个当前工作目录。
在不太确定当前位置时,就会使用pwd来判定当前目录在文件系统内的确切位置。
命令格式:
pwd [选项]
命令功能:
查看”当前工作目录“的完整路径
常用参数:
一般情况下不带任何参数
如果目录是链接时:
格式:pwd -P 显示出实际路径,而非使用连接(link)路径。
常用实例:
1:用 pwd 命令查看默认工作目录的完整路径
[root@localhost ~]# pwd /root [root@localhost ~]#
实例2:
[root@localhost ~]# cd /opt/soft/ [root@localhost soft]# pwd /opt/soft [root@localhost soft]#
实例三:目录连接链接时,pwd -P 显示出实际路径,而非使用连接(link)路径;pwd显示的是连接路径
命令:
输出:
[root@localhost soft]# cd /etc/init.d [root@localhost init.d]# pwd /etc/init.d [root@localhost init.d]# pwd -P /etc/rc.d/init.d [root@localhost init.d]#
实例4:/bin/pwd
命令:
/bin/pwd [选项]
选项:
目录连接链接时,输出连接路径 输出物理路径输出:
[root@localhost init.d]# /bin/pwd /etc/rc.d/init.d [root@localhost init.d]# /bin/pwd --help [root@localhost init.d]# /bin/pwd -P /etc/rc.d/init.d [root@localhost init.d]# /bin/pwd -L /etc/init.d [root@localhost init.d]#
实例五:当前目录被删除了,而pwd命令仍然显示那个目录
输出:
[root@localhost init.d]# cd /opt/soft [root@localhost soft]# mkdir removed [root@localhost soft]# cd removed/ [root@localhost removed]# pwd /opt/soft/removed [root@localhost removed]# rm ../removed -rf [root@localhost removed]# pwd /opt/soft/removed [root@localhost removed]# /bin/pwd /bin/pwd: couldn't find directory entry in “..” with matching i-node [root@localhost removed]# cd [root@localhost ~]# pwd /root [root@localhost ~]#
推荐学习:《linux视频教程》
The above is the detailed content of What does linux user directory mean?. For more information, please follow other related articles on the PHP Chinese website!

linux设备节点是应用程序和设备驱动程序沟通的一个桥梁;设备节点被创建在“/dev”,是连接内核与用户层的枢纽,相当于硬盘的inode一样的东西,记录了硬件设备的位置和信息。设备节点使用户可以与内核进行硬件的沟通,读写设备以及其他的操作。

区别:1、open是UNIX系统调用函数,而fopen是ANSIC标准中的C语言库函数;2、open的移植性没fopen好;3、fopen只能操纵普通正规文件,而open可以操作普通文件、网络套接字等;4、open无缓冲,fopen有缓冲。

端口映射又称端口转发,是指将外部主机的IP地址的端口映射到Intranet中的一台计算机,当用户访问外网IP的这个端口时,服务器自动将请求映射到对应局域网内部的机器上;可以通过使用动态或固定的公共网络IP路由ADSL宽带路由器来实现。

在linux中,eof是自定义终止符,是“END Of File”的缩写;因为是自定义的终止符,所以eof就不是固定的,可以随意的设置别名,linux中按“ctrl+d”就代表eof,eof一般会配合cat命令用于多行文本输出,指文件末尾。

在linux中,可以利用“rpm -qa pcre”命令判断pcre是否安装;rpm命令专门用于管理各项套件,使用该命令后,若结果中出现pcre的版本信息,则表示pcre已经安装,若没有出现版本信息,则表示没有安装pcre。

在linux中,交叉编译是指在一个平台上生成另一个平台上的可执行代码,即编译源代码的平台和执行源代码编译后程序的平台是两个不同的平台。使用交叉编译的原因:1、目标系统没有能力在其上进行本地编译;2、有能力进行源代码编译的平台与目标平台不同。

linux查询mac地址的方法:1、打开系统,在桌面中点击鼠标右键,选择“打开终端”;2、在终端中,执行“ifconfig”命令,查看输出结果,在输出信息第四行中紧跟“ether”单词后的字符串就是mac地址。

在linux中,rpc是远程过程调用的意思,是Reomote Procedure Call的缩写,特指一种隐藏了过程调用时实际通信细节的IPC方法;linux中通过RPC可以充分利用非共享内存的多处理器环境,提高系统资源的利用率。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Zend Studio 13.0.1
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
