linux 常用命令整理

linux 下使用systemctl 启动软件失败后查看失败的原因

journalctl -fp err

修改用户密码 passwd
修改其他用户密码 passwd test

centos8 同步虚拟机时间命令

systemctl restart chronyd.service
chronyc sources -v

timedatectl #查看当前的时区设置
timedatectl set-timezone Asia/Shanghai #设置时区未中国,有时候时间不同步,可能就是时区设置的问题,centos8 默认时区为 America/New_York。

linux 下 tar.xz文件的解压,录入解压 test.tar.xz

xz -d test.tar.xz   #解压后得到了 tar 文件
tar -xvf test.tar   #解压 tar 文件得到原始文件

linux 解压 tgz 文件

tar zxvf  test.tgz -C ./test #就是把 test.tgz 解压到 当前目录下的test 文件夹下面

linux unzip 解压文件

unzip test.zip -d ./test  把文件解压到指定的文件夹

linux 以某一用户执行命令 格式如下 sudo -u www command
是以www用户执行命令 比如 sudo -u www git pull 就是在以www的用户执行更新

sudo -u www git config credential.helper store
sudo -u www git config user.email “test@test.com”
sudo -u www git config user.name “test”

You May Also Like