更新资源update。 sudo apt-get update 对软件进行升级。 sudo apt-get upgrade 接着安装系统更新,如果不希望升级系统版本,完成这步就可以了。 sudo apt-get dist-upgrade 安装上面的更新后重新启动一次系统。 sudo reboot 检 ...
分类:
系统相关 时间:
2019-09-26 09:42:09
阅读次数:
291
1.ls 2.pwd 3.cd 4.mkdir 5.touch 6.cp 7.mv 8.rm 9.cat 11.more 13.head 14.tail 15.clear 16.wc 17.ping 18.du 19.poweroff 20.reboot ...
分类:
系统相关 时间:
2019-09-25 21:06:33
阅读次数:
144
一、开关机 sync :把内存中的数据写到磁盘中(关机、重启前都需先执行sync) shutdown -r now或reboot :立刻重启 shutdown -h now :立刻关机 shutdown -h 19:00 :预定时间关闭系统(晚上7点关机,如果现在超过8点则第二天) shutdown ...
分类:
系统相关 时间:
2019-09-21 22:57:06
阅读次数:
92
```
# 安装adb
apt install adb # 安装fastboot
apt install fastboot # 进入bootloader模式
adb reboot bootloader # 刷入twrp
fastboot flash recovery Downloads/twrp-3... ...
分类:
其他好文 时间:
2019-09-21 12:19:34
阅读次数:
87
方法一,用户登录服务器,直接修改: crontab -e 然后添加: @reboot [nohup] {命令} ctrl + O ctrl + x方法二,指定用户进行修改: sudo crontab -u {usernam} -e 然后添加: @reboot [nohup] {命令} ctrl + ... ...
分类:
系统相关 时间:
2019-09-20 17:11:18
阅读次数:
217
linux centos 6安装方法 前提需要: 1, centos6的镜像文件 2,VMware 提前安装 注: "获取镜像" 阿里开源系统,此处可下载其他的 1.Ubuntu 2.Susa 3.Centos all 4. 。。。 步骤: 1. 创建 2. 安装方式选择 3. 系统选择 4. 虚拟 ...
分类:
其他好文 时间:
2019-09-19 19:45:40
阅读次数:
114
1、重启VCSA,2、在GNUGrub界面按“e”,如下图输入:rwinit=/bin/bash3、按F10,装载此配置进入系统4、使用passwd命令修改root用户密码5、umount系统umount/6、重启reboot-f
分类:
其他好文 时间:
2019-09-19 10:30:54
阅读次数:
514
一、 关机&重启命令 基本介绍: shutdown shutdown –h now : 表示立即关机 shutdown -h : 表示1分钟后关机 shutdown -r now : 表示立即重启 halt 就是直接使用,效果等价于关机 reboot 就是重启系统 sync 就是把内存的数据保存到磁 ...
分类:
系统相关 时间:
2019-09-16 19:24:57
阅读次数:
152
目录 reboot shutdown -h 0 now unname -r netstat -an cp cat tail >和>> echo 1、reboot命令 重启服务器命令 2、shutdown -h now命令 关机命令 3、uname -r命令 查看linux内核版本 4、netstat ...
分类:
系统相关 时间:
2019-09-14 19:14:20
阅读次数:
132