Archive for category imac
Installing MS-DOS 6.22 Using Parallels 10
Posted by edwgon in dos, http://schemas.google.com/blogger/2008/kind#post, imac, ms dos, ms-dos 6.22, OS X, Parallels, Parallels 10, virtual, virtual machine, windows for workgroups, yosemite on January 8, 2015
Here’s how I was able to install MS-DOS 6.22 on my iMac using Parallels 10.
I’m not going into details on how to create the virtual machine using Parallels, it’s easy to figure that out.
Here is the hardware configuration for the MS-DOS 6.22 virtual machine.
CPU & Memory
CD/DVD 1
Hidden Folders In Finder (OS X 10.7)
Here’s something interesting that happened on my iMac after a restore procedure using Carbonite.
Another netstat trick
Posted by edwgon in connection, established, geektools, imac, internet, mac, netstat on April 21, 2012
So, I run GeekTools on my iMac, and I wanted to be able to view all established internet connections on my Mac.
Here’s how I did it.
netstat -abf inet | grep “ESTABLISHED” -C 1 | grep -v “localhost” | sort -rk7
Explanation:
1. netstat -abf inet
Shows me a list of all internet connections
2. grep “ESTABLISHED” -C 1
It filters the netstat output to show only the ESTABLISHED connections, and it keeps the heading by using -C 1 option.
3. grep -v “localhost”
Basically I’m removing any “localhost” lines from the grep output in command 2.
4. sort -rk7
I’m going to (r)everse sort on column (k7). So it displays my output from largest number of bytes transmitted.
The screenshot shows the output on the lower right hand corner.
Recent Comments