发布网友 发布时间:2024-09-26 16:52
共1个回答
热心网友 时间:2024-11-19 16:52
linux中[root@localhost ~]的root代表当前登录的用户,在Linux中管理员账户是root,用户以root身份登录到linux本机。localhost代表当前计算机主机名。~代表当前所在家目录。不管用户用哪个用户身份登录,系统的目录结构是不变的,只是相关权限改变了而已。
扩展资料:
linux中[root@localhost ~]执行语句有:
1、[root@localhost ~]# cat /etc/profile :检查/etc/目录下的profile文件内容。
2、[root@localhost ~]# cat -b /etc/profile :检查/etc/目录下的profile内容,而且对非空白行进行编号,行号从1开端。
3、[root@localhost ~]# cat -n /etc/profile :对/etc目录中的profile的一切的行(包含空白行)进行编号输出显现。
4、[root@localhost ~]# cat -E /etc/profile :检查/etc/下的profile内容,而且在每行的结尾处附加$符号。