A couple of days ago I found an interesting article called Lazy Linux: 10 essential tricks for admins, so I decided to try a couple of these on my Mac – I’m running Tiger, by the way.
1. Unmounting a stuck DVD (or disk image, for that matter)
I could not find the fuser command mentioned for linux on my Mac but we can always use lsof.
If you’re trying to eject a disk called Movies and are getting the old The disk “Movies” is in use and could not be ejected message you can open up the Terminal and run the following commands to find which app is at fault:
$ lsof | grep Movies
You should get something like this:
QuickTime 404 myuser 13r REG 14,3 735825920 45186 /Volumes/Movies/My Movie.mov
This example tells you that QuickTime has a file called My Movie.mov open from the Movies disk. So just close the file in QuickTime and you should be able to eject your DVD/image file.
2. Collaboration with screen
This one worked exactly as it says in the article. Just do the following:
- Open up the Terminal on your Mac. Let’s assume your username is myuser.
- From another machine, open up an SSH connection to your Mac as myuser.
- From the remote machine type the following:
$ screen -S myscreen
- Now, from the Mac Terminal type the following:
$ screen -x myscreen
The linux article includes tips for:
- Unmounting the unresponsive DVD drive – works great.
- Getting your screen back when it is hosed.
- Collaboration with screen – I did not know about this, works great.
- Getting back the root password – I will probably try this one soon.
- SSH back door.
- Remote VNC session through an SSH tunnel.
- Checking your bandwidth.
- Command-line scripting and utilities.
- Spying on the console.
- Random system information collection.
So if you’re a linux user check them out. They could come in handy eventually.