自定义快捷命令
vim /etc/bash.bashrc
alias deploy_jar="sh /xxxxx/xxxx.sh"
alias deploy_html="sh /xxxx/xxxx.sh"
重启系统
reboot
提升普通用户为root账户
sudo vim /etc/passwd #找到用户test test:x:1000:1000::/home/test #修改权限 test:x:0:0::/home/test
#重启生效
reboot
root账号开启ssh登录
sudo vi /etc/ssh/sshd_config #增加或者修改以下内容为: LoginGraceTime 120 PermitRootLogin yes StrictModes yes sudo service ssh restart
修改系统时间
#查看时间 date -R #修改时区,以此选 Asia China Beijing tzselect #复制文件到/etc目录下 cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime #再次查看当前时间 date -R