Fdupes adalah alat baris perintah yang memungkinkan Anda menemukan semua file duplikat melalui konsol. Keuntungan menggunakan alat grafis seperti fslint tentu saja kecepatannya. Pada akhirnya, tidak ada yang lebih cepat dan lebih nyaman daripada konsol Linux.
Mengapa kita harus mencari file duplikat di Linux?
Tidak peduli sistem operasi apa yang Anda gunakan cepat atau lambat, komputer Anda akan berisi banyak file dengan ukuran berbeda, dan jika Anda tidak cukup berhati-hati, mengulanginya dapat menghabiskan ruang disk yang Anda butuhkan. Misalnya, Anda secara tidak sengaja mengunduh film ultra HD yang sama dengan 40 giga byte dua kali.
Bagaimana cara menginstal fdupes di Ubuntu atau linux Debian?
sudo apt install fdupes
Atau menggunakan apt-fast yang kami sukai
sudo apt-fast install fdupes
Bagaimana cara menginstal fdupes di Fedora?
dnf install fdupes
Cara menginstal fdupes di CentOS /RHEL ?
yum install fdupes
Setelah terinstal, Anda dapat mencari file duplikat menggunakan perintah berikut:
fdupes /path/to/folder
Atau Anda dapat mencari secara rekursif dalam hal ini Anda akan disajikan dengan bilah kemajuan
# fdupes -r /path/to/folder
Progress [34248/65545] 80%
Code language: PHP (php)
Menggunakan -S opsi akan memberi Anda ukuran file duplikat. Menggunakan -d opsi akan menghapus file duplikat secara permanen! fdupes -d /path/to/folder
Itu tidak akan menghapus apa pun dengan sendirinya, Anda akan dimintai konfirmasi.
Untuk bantuan, Anda dapat menggunakan bantuan bawaan dalam perintah
fdupes -h
Usage: fdupes [options] DIRECTORY...
-r --recurse for every directory given follow subdirectories
encountered within
-R --recurse: for each directory given after this option follow
subdirectories encountered within (note the ':' at
the end of the option, manpage for more details)
-s --symlinks follow symlinks
-H --hardlinks normally, when two or more files point to the same
disk area they are treated as non-duplicates; this
option will change this behavior
-n --noempty exclude zero-length files from consideration
-A --nohidden exclude hidden files from consideration
-f --omitfirst omit the first file in each set of matches
-1 --sameline list each set of matches on a single line
-S --size show size of duplicate files
-m --summarize summarize dupe information
-q --quiet hide progress indicator
-d --delete prompt user for files to preserve and delete all
others; important: under particular circumstances,
data may be lost when using this option together
with -s or --symlinks, or when specifying a
particular directory more than once; refer to the
fdupes documentation for additional information
-N --noprompt together with --delete, preserve the first file in
each set of duplicates and delete the rest without
prompting the user
-v --version display fdupes version
-h --help display this help message
Code language: JavaScript (javascript)
Sebagai kesimpulan, kita dapat mengatakan bahwa perintah sederhana ini adalah opsi yang sangat kuat dan cepat untuk menangani file duplikat di komputer kita dan menggunakan ruang kosong di disk kita untuk tujuan yang lebih bermanfaat.