Related Posts
Check the Top 10 Linux Commands you can’t live without
Type the following on your cmd line (or make into an alias) cat ~/.bash_history | sort | uniq -c | sort -r | head In my case they are (for this week) ls fg svnSync (script I created) stats_fetch; stats_display (other scripts) cd crontab -e ps aux | grep ssh_map_command (another script) python emacs -nw
What is the Rust equivalent to Java’s PrintWriter?
In Rust, the equivalent of Java’s PrintWriter is the std::io::Write trait, which is implemented by a number of types that can be used to write data to an output stream, such as a file or a network socket. To use Write to write text to an output stream, you can use the write_all method, which […]
Ubuntu/Debian Quick Reference: How To Change Your Server’s UTC Timezone on the command line
Just Type… sudo dpkg-reconfigure tzdata …and follow the instructions on screen. The process should look something like the following: Select your Region Select a city on your time zone You’re done. Tip You can always check the status of your configuration using sudo debconf-show tzdata You could for example map that command via ssh to […]
