Linux
gungun_changjiang
这个作者很懒,什么都没留下…
展开
-
乱七八糟的一些
命令修改liunx系统时区 echo "Asia/shanghai" > /etc/timezone cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 参考来源 https://blog.csdn.net/weixin_34166847/article/details/92494367转载 2020-07-14 14:44:31 · 164 阅读 · 0 评论 -
linux scp命令
scp root@107.172.27.254:/home/test.txt . //下载文件 scp test.txt root@107.172.27.254:/home //上传文件 scp -r root@107.172.27.254:/home/test . //下载目录 scp -r test root@107.172.27.254:/home //上传目录 ...原创 2019-10-24 19:49:27 · 147 阅读 · 0 评论 -
sudo apt-get install 报错解决
在Ubuntu使用命令安装程序时,出现: E: 无法打开锁文件 /var/lib/dpkg/lock-frontend - open (21: 是一个目录) E: 无法获取 dpkg 前端锁 (/var/lib/dpkg/lock-frontend),请查看您是否正以 root 用户运行? 这样的问题解决办法: /var/lib/dpkg$ sudo rm -rf lock-fronten...原创 2019-07-22 20:00:59 · 542 阅读 · 0 评论