
Linux
数学工具构造器
这个作者很懒,什么都没留下…
展开
-
终端走代理
有天, 我下模型python3 -m spacy download en连接失败export http_proxy=socks5://127.0.0.1:1080export https_proxy=socks5://127.0.0.1:1080好了原创 2020-11-02 17:53:42 · 305 阅读 · 0 评论 -
Linux查询路由器ip
route -n原创 2020-01-08 14:03:49 · 387 阅读 · 0 评论 -
ssh不输入yes
Google到了一个网页,里面都是解决方法https://askubuntu.com/questions/123072/ssh-automatically-accept-keys/553308我觉得最简单的解决方法是:With 18.04, there’s a new possibility: StrictHostKeyChecking=accept-new. From man 5 ssh_...原创 2020-01-08 11:11:04 · 510 阅读 · 0 评论 -
Linux新建用户
sudo useradd -d /home/tqc -u 1001 -g 1000 tqc -m原创 2019-08-02 17:03:43 · 284 阅读 · 0 评论 -
玩一下kvm
https://ubuntu.com/download/iot/kvm原创 2019-10-26 00:25:19 · 307 阅读 · 0 评论 -
解决无法登录Linux百度网盘
cd ~rm -rf baidunetdisk原创 2019-10-27 11:28:16 · 807 阅读 · 0 评论 -
Linux主机间文本通信
send-msgecho "$1">/tmp/sendboxscp -P 22 /tmp/sendbox tqc@192.168.0.101:/tmp/inbox在这里插入代码片recv-msgcat /tmp/inbox原创 2019-10-17 11:30:59 · 268 阅读 · 0 评论 -
tar命令如何解压指定文件到指定目录下
举一个例子:解压 a.tar.gz 包里文件名以 one 开头的文件到 /tmp 文件夹下:tar -xzv -C /tmp -f a.tar.gz one*原创 2019-09-22 22:31:24 · 8928 阅读 · 0 评论