SSD and Linux encryption may not be the best idea, especially without the TRIM (allow-discards) option (or never executed fstrim?). Nevertheless, this error may occur…
Tag: find
Transfer only a list of files with rsync
Transferring a list of files from one server to another maybe not so easy as it looks like, if the list consists of files with…
List all your files (and directories) with file size over FTP without ls -R (recursive)
A great piece of software is lftp – sophisticated file transfer program This little console tool could ease your life significantly with many enhancements to…
Delete files in a directory with checking for the free space with find and stat command – effective and fast approach
If you have a big storage for let’s say your cache proxy and you may want to delete some files fast you could use find…
Replace an old IP with new one in all files of all sub-directories recursively
Here is a quick Linux tip for those who want to replace their old IP with new one for all files in a given directory…
Delete millions of files slowly without loading the server
There a situations when we need to delete a great deal of files from our filesystem and if we just execute rm -Rf the server…
bash: find all files between a given time period
Here is the command to find all files between two given dates with find linux command: to use “find” with -newermt you must have find…