【Linux】Linux相关操作
https://ip:8888/baota
1.查看面板入口:
1/etc/init.d/bt default
请输入新的面板密码:Xuzikang0917|-用户名: ae9zbxss|-新密码: Xuzikang0917
tar指令:
123456789101112131415161718192021222324252627282930313233343536tar -cvf [打的包的名称].tar [目录名称] --打包tar -zcvf [想压缩的包的名称].tar.gz [压缩的目录] --打包并压缩tar -xvf [需要解的包名].tar --解包tar -zxvf [需要解压缩的压缩文件名].tar.gz --解压缩包mv指令:mv [想移动的文件名] [移动到哪个目录]/ --移动文件cd指令:cd [想转到的目录名]/ --转目录层cd .. --回到上一层目录touch指令:touch [想创建的文件] --创建文件mkdir指令:mkdir [想创建的目录名称] --创建目录rm -rf 文件夹名 --暴力删除vim指令:set nu --给 ...
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