首页 > 系统 > Linux教程

Linux删除乱码文件操作技巧

  在Linux系统中,有些中文文件变成了乱码文件,对于强迫症用户来说,看到乱码文件就像删除,那么要如何删除Linux乱码文件呢?可通过删除inode节点来实现。

Linux删除乱码文件操作技巧

  [root@localhost tmp]# ls -l

  total 1024

  -r--r--r-- 1 root root 624541 May 3 09:33 mkisofs-2.01-10.7.el5.x86_64.rpm

  srwxrwxrwx 1 mysql mysql 0 Jul 2 12:26 mysql.sock

  --rw-r--r-- 1 root root 0 Jul 27 08:27 乱码file

  -rw-r--r-- 1 root root 0 Jul 27 08:26 嘎儿

  我的系统里有2个中文命名的文件,查找2个文件的inode

  [root@localhost tmp]# ls -il

  total 1024

  917852 -r--r--r-- 1 root root 624541 May 3 09:33 mkisofs-2.01-10.7.el5.x86_64.rpm

  919797 srwxrwxrwx 1 mysql mysql 0 Jul 2 12:26 mysql.sock

  920533 -rw-r--r-- 1 root root 0 Jul 27 08:27 乱码file

  918587 -rw-r--r-- 1 root root 0 Jul 27 08:26 嘎儿

  乱码文件的 inode 为920533 我们就来先删除它,用find 命令来找到这个inode 接着删除

  [root@localhost tmp]# find 。 -inum 920533

  。/乱码file

  [root@localhost tmp]# find 。 -inum 920533 -exec rm -f {} \;

  [root@localhost tmp]# ls -l

  total 1024

  -r--r--r-- 1 root root 624541 May 3 09:33 mkisofs-2.01-10.7.el5.x86_64.rpm

  srwxrwxrwx 1 mysql mysql 0 Jul 2 12:26 mysql.sock

  -rw-r--r-- 1 root root 0 Jul 27 08:26 嘎儿

  名为乱码file 的文件已经删除了

  上面就是Linux删除乱码文件的技巧介绍了,你的系统中应该也存在一些乱码文件,不妨使用本文的方法删除掉这些文件吧。

版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。
本文地址:/jtjc/Linux/2021-03-09/29742.html

留言与评论(共有 0 条评论)
   
验证码:

潘少俊衡

| 桂ICP备2023010378号-4

Powered By EmpireCMS

爱享小站

中德益农

谷姐神农

环亚肥料

使用手机软件扫描微信二维码

关注我们可获取更多热点资讯

感谢潘少俊衡友情技术支持