Thursday, July 5, 2012

Configuring Samba with Webmin

August 7, 2010 by  
Filed under Webmin

The Webmin administration tool is a very powerful suite of web-based admin tools (for the Linux operating system) that have been around for some time. Webmin includes numerous modules covering nearly every aspect of Linux administration.  In this article we will show how to install Webmin and use it to configure your Samba server. We [...]

Delete some specific files from all subdirectories

February 23, 2010 by  
Filed under General

Useful unix-command trick to quickly remove i.e. Thumbs.db files, WS_FTP.LOG files or *.fla files, recursively through directories. It could be a real pain on a huge directory tree Removing all *.fla files from /home/user/ and subdirectories… find /home/user/ -name *.fla -ok rm {} ; Removing all WS_FTP.LOG files from /home/user and subdirectories… # find /home/user [...]