网站地图    收藏   

主页 > 系统 > linux系统 >

Linux下链接文件使用RM无法删除的解决办法 - lin

来源:自学PHP网    时间:2014-11-28 23:07 作者: 阅读:

[导读] 在进行U-boot开发的时候,遇到一个小问题。网友wanglida79前几天刚遇到过,我当时没有模拟出来,现在自己倒是遇上了。不过我想出了解决的办...

Linux下链接文件使用RM无法删除的解决办法

在进行U-boot开发的时候,遇到一个小问题。网友wanglida79前几天刚遇到过,我当时没有模拟出来,现在自己倒是遇上了。不过我想出了解决的办法,只不过原因不明确,或许使用方法不对,或许有bug。 

现象描述:进行U-boot移植的开发,为了patch方便,将源码的名字命名为.orig,这样以示区分。但是名字太长,在命令行下操作不太方便,所以想法就是建立软链接。

  1. [armlinux@lqm bootloader]$ tree -L 1 
  2. |-- patch 
  3. |-- u-boot-1.1.3 
  4. |-- u-boot-1.2.0 
  5. |-- u-boot-1.2.0.orig 
  6. |-- vivi 
  7. `-- vivi_origin 
  8. 6 directories, 0 files 

上面是目录下的主要文件夹,现在将源码链接为orig,将开发部分链接为develop。

  1. [armlinux@lqm bootloader]$ ln -s u-boot-1.2.0.orig/ orig 
  2. [armlinux@lqm bootloader]$ ln -s u-boot-1.2.0 develop 
  3. [armlinux@lqm bootloader]$ ls 
  4. develop orig patch u-boot-1.1.3 u-boot-1.2.0 u-boot-1.2.0.orig vivi vivi_origin 

如上,现在想要删除develop和orig,出现意外情况:

  1. [armlinux@lqm bootloader]$ rm develop/ 
  2. rm: cannot remove `develop/': Not a directory 
  3. [armlinux@lqm bootloader]$ rm -f develop/ 
  4. rm: cannot remove `develop/': Not a directory 
  5. [armlinux@lqm bootloader]$ unlink develop/ 
  6. unlink: cannot unlink `develop/ 

看来删不掉,删除orig也同样如此,转念又实验了利用find来删除:

  1. [armlinux@lqm bootloader]$ find . -type l | xargs rm -f 
  2. [armlinux@lqm bootloader]$ ls 
  3. patch u-boot-1.1.3 u-boot-1.2.0 u-boot-1.2.0.orig vivi vivi_origin 

看来能够成功。

现象分析与解决:上面提供的find and xargs的删除方法可以实现,但是只用rm为什么不能删除呢,我想应该是使用的方法上有问题,必须查阅rm和ln的用法,经过man查阅,ln的使用和rm的使用并没有问题,推翻了前面的想法,我想从rm直接删除和find删除的不同入手找到原因。

  1. [armlinux@lqm bootloader]$ find . -type l 
  2. ./develop 
  3. ./orig 

看来原因找到了,我在使用rm的时候总是习惯使用TAB键补全命令,但是TAB补全命令的时候,最后是以“/”结尾的,很明显的原因,rm也好,unlink也好,并不能很好的处理这种情况,这算是一处bug,我在前面写shell脚本来实现autozip时的时候,自己遇到过这个问题,采用了awk解决,原有的脚本如下:

  1. [armlinux@lqm bin]$ cat autozip 
  2. #!/bin/bash 
  3. # Copyright 2007 (c), Shandong University 
  4. # All rights reserved. 
  5. # 
  6. # Filename : autozip 
  7. # Description: Compress files, and print "OK" out if the file 
  8. # can be compressed successfully. 
  9. # Syntax : autozip [filename | directory name] 
  10. # Author : Liu Qingmin 
  11. # Version : 1.0 
  12. # Date : 07-04-29 
  13. # 
  14. # Func: get_target() 
  15. # Desc: Obtain the name of target file 
  16. # Para: $1 -- file name that will be compressed 
  17. # Ret : TARGET -- current file name  
  18. get_target()  
  19. TARGET=`echo $1 |  
  20. awk -F/ '{if ($NF == "") print $(NF-1);  
  21. else print $(NF)}'` 
  22. # Handle Parameters 
  23. if [ $# != 1 ];then 
  24. echo "Usage: `basename $0` " 
  25. exit 1 
  26. fi 
  27. # Assign the parameter to the Macro OPT 
  28. OPT=$1 
  29. # Uncompress files 
  30. if [ -d $OPT ]; then 
  31. get_target $OPT 
  32. tar zcvf ${TARGET}.tar.gz $OPT && echo "OK" 
  33. elif [ -f $OPT ]; then 
  34. get_target $OPT 
  35. cp $OPT tmp 
  36. gzip tmp 
  37. cp tmp.gz ${TARGET}.gz 
  38. rm tmp.gz 
  39. if [ -x ${TARGET}.gz ]; then  
  40. chmod -x ${TARGET}.gz 
  41. fi 
  42. echo "OK" 
  43. fi 

上面的get_target就是对这个情况的处理,不过没有想到rm也无法处理这种情况,要知道,使用TAB键提高效率是经常用的手段啊。

找到了bug,还没有看rm的源代码,倒是可以利用上面的脚本的思路来解决这个小bug,写了一个脚本rmlink,如下:

  1. [armlinux@lqm bin]$ cat rmlink 
  2. #!/bin/sh 
  3. # Copyright 2007 (c), Shandong University 
  4. # All rights reserved. 
  5. # Filename : rmlink 
  6. # Description : solve the bug of "rm" and "unlink" 
  7. # Syntax : rmlink <linkfile name> 
  8. # Author : Liu Qingmin 
  9. # Version : 1.0 
  10. # Date : 07-09-19 
  11. # Func: get_target() 
  12. # Desc: Obtain the name of target file 
  13. # Para: $1 -- file name that will be compressed 
  14. # Ret : TARGET -- current file name  
  15. get_target()  
  16. TARGET=`echo $1 |  
  17. awk -F/ '{if ($NF == "") print $(NF-1);  
  18. else print $(NF)}'` 
  19. # Handle Parameters 
  20. if [ $# != 1 ];then 
  21. echo "Usage: `basename $0` " 
  22. exit 1 
  23. fi 
  24. # Assign the parameter to the Macro OPT 
  25. OPT=$1 
  26. # Uncompress files 
  27. if [ -d $OPT ]; then 
  28. # eliminate the "/" at the ending 
  29. get_target $OPT 
  30. # you also can use "unlink" instead of "rm" 
  31. rm ${TARGET} 
  32. fi 
  33. # OK 
  34. exit 0 
  35. //测试: 
  36. [armlinux@lqm bootloader]$ ls 
  37. develop orig patch u-boot-1.1.3 u-boot-1.2.0 u-boot-1.2.0.orig vivi vivi_origin 
  38. [armlinux@lqm bootloader]$ rmlink develop 
  39. [armlinux@lqm bootloader]$ rmlink orig 
  40. [armlinux@lqm bootloader]$ ls 
  41. patch u-boot-1.1.3 u-boot-1.2.0 u-boot-1.2.0.orig vivi vivi_origin 

可见测试正常,rmlink可以正常使用,至此,问题最终解决。

附:vmware崩溃,导致关心查阅磁盘空间和文件大小,现在附几个常用的小命令,备查阅。

·查看文件的大小

[armlinux@lqm bootloader]$ ls -hl

·如果只想看到大小,而不希望看到其他信息,可以使用下面的命令:

[armlinux@lqm bootloader]$ ls -hl | awk '{print $5 "t" $NF}'

·查看单个目录占用空间的大小

[armlinux@lqm bootloader]$ du -hs u-boot-1.2.0

71M u-boot-1.2.0

·查看磁盘剩余空间的大小

[armlinux@lqm bootloader]$ df -hl

关于选项-h,在ls等等的命令中都有,具体的含义是一致的,如下:

-h, --human-readable

with -l, print sizes in human readable format (e.g., 1K 234M 2G)

从上面的显示,可以看出,如果不加-h,那么大小是以字节显示的,如果加入-h,那么就以很明显的K,或者M来显示,也就明确的多了。

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论