How to Find Largest Files Taking Up Disk Space in Linux
sudo find / -size +100M -exec ls -lh {} \;
Read Moreby papadiddydoo | Jul 24, 2015 | OSX, Shell, Ubuntu | 0 |
sudo find / -size +100M -exec ls -lh {} \;
Read Moreby papadiddydoo | Apr 10, 2015 | OSX, Shell | 0 |
zip command with -e flag (encrypt). zip -e [target or destination.zip] [file or folder source to zip up] you could specify a -r or recursively zip all files in the source folder zip -er target.zip...
Read Moreby papadiddydoo | Mar 1, 2015 | OSX, Shell | 1 |
Getting the following error when trying to change your mac terminal to use zsh? chsh: /usr/local/bin/zsh: non-standard shell All you need to do to fix this is to add the zshell path ( /usr/local/bin/zsh) to your /etc/shells...
Read Moreby papadiddydoo | Feb 27, 2013 | Operating Systems, Shell, Ubuntu | 0 |
cat /etc/lsb-release
Read Moreby papadiddydoo | Feb 26, 2013 | Operating Systems, Shell, Ubuntu | 0 |
How to add an existing user to existing group? using -a -G option, adds user to the supplemental group(s). sudo usermod -a -G [groupname] [username] How to change existing david’s primary group to www? sudo usermod -g www...
Read Moreby papadiddydoo | Feb 26, 2013 | Operating Systems, Shell, Ubuntu | 0 |
Command to display the number of processors cat /proc/cpuinfo | grep processor | wc -l /proc/cpuinfo contains all of the processor information for all current processors in the system. This will include the speed, and the...
Read Moreby papadiddydoo | Feb 26, 2013 | Operating Systems, Shell, Ubuntu | 0 |
to install sudo dpkg -i package_file.deb to uninstall (remove) sudo dpkg -r package_file.deb.
Read Moreby papadiddydoo | Jan 21, 2013 | OSX, Ruby, Shell | 0 |
brew install imagemagick mdfind MagickWand.h C_INCLUDE_PATH=/path/MagickWand.h gem install rmagick Example: C_INCLUDE_PATH=/usr/local/Cellar/imagemagick/6.7.7-6/include/ImageMagick/wand/MagickWand.h gem install rmagick Might...
Read Moreby papadiddydoo | Jan 16, 2013 | Shell, Ubuntu | 0 |
export EDITOR=vim *note: this will only work for this terminal session.
Read Moreby papadiddydoo | Jan 9, 2013 | Git, Shell | 0 |
Getting this error message during a git push? Counting objects: 13, done. Delta compression using up to 2 threads. Compressing objects: 100% (11/11), done. error: insufficient permission for adding an object to repository...
Read Moreby papadiddydoo | Jan 7, 2013 | Operating Systems, OSX, Shell, Ubuntu | 0 |
find . -name .svn -print0 | xargs -0 rm -rf
Read MoreI thought this was pretty hilarious…just might work! VIM Clutch is a hardware pedal for improved text editing speed for users of the magnificent VIM text editor (1, 2). When the pedal is pressed down, the pedal types...
Read More
Recent Comments