Rsyncd with Cygwin Posted on December 20, 2014 by admin Configuration Create the /etc/rsyncd.secrets file and add the user [xfloyd] with password [password] separated by a colon. Read More Posted in Cygwin Leave a comment
Archive files and folders in Linux Posted on December 20, 2014 by admin ASSERT: No files have newline characters in them. Spaces, however, are AOK. # TEST FIRST: CREATION OF FOLDERS find . -type f -iname \*.mov -printf ‘%h\n’ | sort | uniq | xargs -n 1 -d ‘\n’ -I ‘{}’ echo mkdir -vp “/TARGET_FOLDER_ROOT/{}” # EXECUTE CREATION OF EMPTY TARGET FOLDERS find . -type f -iname \*.mov -printf ‘%h\n’ | sort | uniq | xargs -n 1 -d ‘\n’ -I ‘{}’ mkdir -vp “/TARGET_FOLDER_ROOT/{}” # TEST FIRST: REVIEW FILES TO BE MOVED find . -type f -iname \*.mov -exec echo mv {} /TARGET_FOLDER_ROOT/{} \; # EXECUTE MOVE FILES find . -type f -iname \*.mov -exec mv {} /TARGET_FOLDER_ROOT/{} \; Posted in Linux Leave a comment
Rsync Daemon Backup configuration. From source client to rsync daemon Posted on December 20, 2014 by admin On client side: crate password file “rsync.pwd” vi /etc/rsync.pwd chown 18.544 /etc/rsync.pwd chmod 660 /etc/rsync.pwd rsync -rtlHv --delete --password-file=rsync.pwd /SOURCE ON CLIENT/ rsync://rsync@DESTINATION IP:/DESTINATION FOLDER/ Posted in Cygwin
Installing wkhtmltopdf on Ubuntu Server 12.04 or 14.04 Posted on October 15, 2016 by admin 14.04 Steps: At first install xvfb server: sudo apt-get install xvfb Get needed version of wkhtmltopdf from http://wkhtmltopdf.org/downloads.html.For Ubuntu 14.04 64-bit: wget http://download.gna.org/wkhtmltopdf/0.12/0.12.2.1/wkhtmltox-0.12.2.1_linux-trusty-amd64.deb Install wkhtmltopdf: sudo dpkg -i wkhtmltox-0.12.2.1_linux-trusty-amd64.deb Install dependency (if needed): sudo apt-get -f install Posted in Linux Tagged 123, abc, swe
OpenVPN Posted on September 8, 2014 by admin http://john.de-graaff.net/wiki/doku.php/links/openvpn http://wadihzaatar.com/?p=11 Posted in Uncategorized