月辉清照

博客园 首页 新随笔 联系 订阅 管理

2021年7月17日 #

摘要: Linux系统目录是呈倒置的树形层次结构。 目录名称 作用 / 系统根目录 /boot 引导文件存放目录,内核文件(vmlinuz)、引导加载器(bootloader,grub)都存放于此目录 /bin 供所有用户使用的基本命令:不能关联至独立分区,OS启动即会用到的程序 /sbin 管理类的基本命 阅读全文
posted @ 2021-07-17 16:40 月辉清照 阅读(84) 评论(0) 推荐(0) 编辑

摘要: export命令 export声明变量 实例1,声明变量 [zhangchuangfei@localhost ~]$ export abc="This is strings." [zhangchuangfei@localhost ~]$ echo $abc This is strings. 阅读全文
posted @ 2021-07-17 16:32 月辉清照 阅读(132) 评论(0) 推荐(0) 编辑

摘要: screen命令 screen - screen manager with VT100/ANSI terminal emulation 带有 VT100/ANSI 终端仿真的屏幕管理器 screen命令的用法: screen [ -options ] [ cmd [ args ] ] screen 阅读全文
posted @ 2021-07-17 16:29 月辉清照 阅读(68) 评论(0) 推荐(0) 编辑

摘要: ifconfig命令 ifconfig - configure a network interface。即,配置网络接口。 ifconfig的用法: ifconfig [-v] [-a] [-s] [interface] ifconfig [-v] interface [aftype] option 阅读全文
posted @ 2021-07-17 16:14 月辉清照 阅读(206) 评论(0) 推荐(0) 编辑

摘要: date命令 date - print or set the system date and time。即,打印或设置系统日期和时间。 date的用法: date [OPTION]... [+FORMAT] date [-u|--utc|--universal] [MMDDhhmm[[CC]YY][ 阅读全文
posted @ 2021-07-17 15:55 月辉清照 阅读(115) 评论(0) 推荐(0) 编辑

摘要: echo命令 echo - display a line of text。即显示一行文本。 echo的用法: echo [短选项]... [字符串]... echo 长选项 实例1,显示一行文本 [zhangchuangfei@localhost ~]$ echo "Hello World" Hel 阅读全文
posted @ 2021-07-17 15:44 月辉清照 阅读(592) 评论(0) 推荐(0) 编辑

摘要: 一切皆文件 提供很多小型的单一用途的程序 连接程序,共同完成复杂功能 避免令人困惑的用户界面 配置数据存储在文本中 阅读全文
posted @ 2021-07-17 13:56 月辉清照 阅读(23) 评论(0) 推荐(0) 编辑

摘要: Linux系统中,history命令可以显示历史命令记录。 默认情况下,history命令的输出格式为: [zhangchuangfei@localhost ~]$ history 1 cat /etc/centos-release 2 uname -r 3 poweroff 4 bye 5 log 阅读全文
posted @ 2021-07-17 13:53 月辉清照 阅读(1503) 评论(0) 推荐(0) 编辑

摘要: 第一步:下载Ubuntu18.04版的镜像文件 镜像下载地址:https://cdimage.ubuntu.com/releases/18.04.5/release/ubuntu-18.04.5-server-amd64.iso 第二步:创建虚拟机 操作系统选择Linux,版本选择Ubuntu 64 阅读全文
posted @ 2021-07-17 13:26 月辉清照 阅读(305) 评论(0) 推荐(0) 编辑

摘要: 第一步:安装VMware虚拟机软件 我安装的是VMware12,如下图: 第二步:准备好Centos7.9的镜像文件 我是在清华源站上下载的镜像。 清华源站地址是:https://mirrors.tuna.tsinghua.edu.cn/centos/7/isos/x86_64/ 第三步:创建新的虚 阅读全文
posted @ 2021-07-17 10:45 月辉清照 阅读(289) 评论(0) 推荐(0) 编辑