
shell
leo_weile
这个作者很懒,什么都没留下…
展开
-
问题error while loading shared libraries: xxxx.so.0: cannot open shared object file 解决
1、问题表现执行时出现:error while loading shared libraries:xxx.so.0: cannot open shared object file: No such file or directory2、问题原因及解决原因:未找到需要的链接库解决办法:使用export加该文件xxx.so.0所在目录(/home/work/test/.lib),加入到LD_LIBRARY_PATH路径命令:export LD_LIBRARY_PATH=/home/wo.原创 2021-05-06 18:48:08 · 681 阅读 · 0 评论 -
Ubuntu 下创建用户
创建用户sudo useradd -m test -s /bin/bash创建用户名为test的用户,并使用 /bin/bash 作为 shellsudo passwd test给test用户设置密码sudo adduser test sudo给test用户增加管理员权限...原创 2019-12-13 14:24:11 · 234 阅读 · 0 评论 -
linux下限制下载速度
起因实验室在无人的时候网速飞快,但是只能坚持几秒就挂了,所以需要限制网速来下载东西,不限制网速百兆的资源只能下载10%左右就断网了。解决方法使用wget参数设置限制网速,将网速限制到规定的范围,具体命令wget --limit-rate=500k https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64....原创 2019-09-17 14:46:29 · 2243 阅读 · 0 评论