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 | Jan 6, 2015 | OSX | 0 |
Open the .dmg You’ll find the .mpkg. Right*click and “Show Package Contents Open Contents Dir Open Packages Dir Install each of the 4 packages in this order: 1. OSXFUSECore.pkg, 2. OSXFUSEMacFUSE.pkg, 3. MacFUSE.pkg, 4....
Read Moreby papadiddydoo | Dec 18, 2014 | Database, MySQL / Percona, OSX | 0 |
Getting the following error on your mac v10.10? Run the following command in the Terminal / command line to fix the issue. This allows your program to find the library dependencies in the lib path. sudo ln -s...
Read Moreby papadiddydoo | Dec 3, 2014 | Operating Systems, OSX, Programming, Ruby | 0 |
Download “Command Line Tools (OS X 10.10)” for Xcode 6.1.1 from https://developer.apple.com/downloads/index.action I installed rvm for multi-user. \curl -sSL https://get.rvm.io | sudo bash -s stable This will...
Read Moreby papadiddydoo | Mar 8, 2013 | Operating Systems, OSX, Ruby | 0 |
I had a lot of trouble installing ruby 2.0.0 on mountain lion. Tried various things recommended on different forums and blogs, but the one that was easiest and worked best for me was the one written by Christopher Kaukis on the...
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 7, 2013 | Operating Systems, OSX, Shell, Ubuntu | 0 |
find . -name .svn -print0 | xargs -0 rm -rf
Read Moreby papadiddydoo | Sep 18, 2012 | iPhone, Mobile, OSX | 0 |
Here is a great tutorial on jailbreaking and unlocking your 1st generation iphone. Some of the download links provided in that tutorial are no longer active so I have provided them here. Note: this tutorial is using a mac to do...
Read Moreby papadiddydoo | Sep 16, 2012 | Database, MySQL / Percona, OSX, Ubuntu | 0 |
I’ve gotten this error on both ubuntu and mac osx. Can’t connect to local MySQL server through socket ‘/var/run/mysqld/mysqld.sock’ (2) Simple quick fix solution is to create a symbolic link to it. The...
Read Moreby papadiddydoo | Sep 16, 2012 | OSX, Ruby | 0 |
Install rvm on OSX 10.8.1 Mountain Lion in 4 easy steps. Download & install Command line tools for Xcode 4.4 (you don’t need to download Xcode):https://developer.apple.com/downloads/index.action Install...
Read More
Recent Comments