Category Archives : Linux


Mac hosed from installing new mac os

New mac os available.  You try to install but you run out of space.  It will fail and your mac will be hosed.  You could press command + R while booting and get into OS Utilities, but it doesn’t allow you to free up space and delete files individually.   Solution: boot into live usb […]


# yum install hfsplus-tools Loaded plugins: presto, refresh-packagekit Error: Cannot retrieve repository metadata (repomd.xml) for repository: fedora. Please verify its path and try again

In fedora, if you try to yum install and get:   # yum install hfsplus-tools Loaded plugins: presto, refresh-packagekit Error: Cannot retrieve repository metadata (repomd.xml) for repository: fedora. Please verify its path and try again   Change https to http in files in /etc/yum.repos.d/*, e.g.:   sed -i ‘s/https/http/g’ /etc/yum.repos.d/*


apache unresponsive

apache2 hangs.  Check logs, see: [error] could not make child process 16190 exit, attempting to continue anyway check your php files (such as drupal’s includes/common.inc and sites/all/modules/advagg/advagg.missing.inc ) for: ignore_user_abort Try to comment all out, and restart apache.


apt-get upgrade getting: Err http://security.ubuntu.com raring-security/universe amd64 Packages 404 Not Found [IP: 91.189.91.15 80]

To make apt-get update work, we simply need to edit /etc/apt/sources.list and update all URLs from security.ubuntu.com and archive.ubuntu.com to point to old-releases.ubuntu.com, as per the following sed command: sudo sed -i.bak -r ‘s/(archive|security).ubuntu.com/old-releases.ubuntu.com/g’ /etc/apt/sources.list After this, sudo apt-get update seems to run without a hitch. Of course if you do this, you’re accepting to […]