linux软连接
Posted mvpbang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux软连接相关的知识,希望对你有一定的参考价值。
linux软连接、类似window的快捷方式可以跨磁盘块(硬连接不可以)。
#软硬链接 ln -sf source target ln source target #硬链接不能跨分区 #批量解压文件 -n1 一条一条进行 ls *.tar.gz | xargs -n1 tar zxf unzip -o xx.zip -d /tmp/ #杀掉用户的全部进程 lsof -u weblogic | xargs kill -9 #释放cached内存,cache缓存过大 sync #把在内存中未写到磁盘,写到磁盘 echo 3 > /proc/sys/vm/drop_caches #1 --true 0 --false echo 0 > /proc/sys/vm/drop_caches cache #从内存中读数据,分配的内存空间 buffer #从数据写到内存,分配的内存空间
以上是关于linux软连接的主要内容,如果未能解决你的问题,请参考以下文章
-bash: /usr/bin/ls: /lib64/ld-linux-x86-64.so.2: bad ELF interpreter: No such file or directory(代码片段