Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment
Linux常用命令
Linux基础命令系统信息uname -s:显示当前系统的发行版号
unmae -a:显示系统名、节点名称、操作系统的发行版号、内核版本等等
hostname:显示当前主机名
systemctl:控制系统服务的启动、关闭等
关机/重启shutdown:关机
reboot:重启
文件/目录ls:列出文件夹信息
ll:是ls -l的别名,列出当前目录文件或目录的详细信息,包含时间、权限、大小等信息
pwd:展示当前目录
cd:切换工作目录
mkdir:创建文件夹
touch:创建文件
cat:查看文件内容
grep:过滤关键字,在一堆文件中查找一个特定的字符串
more:查看文件,可以支持翻页查看,空格键翻页,q退出查看
cp:复制文件、文件夹,-r代表复制文件夹
mv:移动文件、文件夹
rm:删除文件、文件夹,-r代表复制文件夹,-f是force(强制),代表强制删除,不会给出确认提示,一般root用户会使用
which:查看命令的程序本体文件路径
find:搜索文件,-name代表按文件名查找文件,-size代表按文件大小查找文件
echo:输出内容
tail:查看 ...

