Friday, December 7, 2012

Expanding Windows 2003 server harddrive

Today i need to expand the drive of a VMware machine that is running W2k3. I found this little guide.

jjclements w2k3 guide

Thursday, December 6, 2012

Two external display Macbook Air 11"

I wrote earlier about the Macbook Air not being possible to use two external screens out of the box with Thunderbolt. Now i use the Dualhead2go from Matrox. It works really smoothly. Since i cant go full screen with any programs and i get loads of desktop space with my dual 24" screen + 11" laptop setup i use a program called Window Tidy. I can create any kind of layout i want to.
My screen setup is the following.

Left 24" screen: Safari + Finder
Right 24" screen: Remote desktop, VMware Fusion, Terminal
Macbook Air 11" screen(middle and below the two screens): E-mail

I get a nice workspace and it is not to expensive compared to the Thunderbolt display.

Possible to install ESXi on mac mini?

I just got a question if it is possible to install ESXi on a mac mini. I found this article on paraguin that was helpful. They have managed to install a ESXi server on Mac mini. It seems like the perfect home lab for networking. No need for noisy home servers that take up much space! Paraguin Mac mini ESXi

Tuesday, August 14, 2012

Macbook Air and two thunderbolt display. Not working

I just found a curious video that I always have been wondering about since i have a 11" MBA. Its two Thunderbolt displays connected to a Macbook Air 2012. Its not working :/



There is altho another way to get two displays. Its called DualHead2Go and is a converter that you put between your mac and 2 displays. Its not really two displays but its two connected displays that is recognized by mac as one big display. So if you put fullscreen on movies it will be in the middle. Not on one. The menu will also be in the middle spanning across both displays.


Thursday, June 14, 2012

Linux VMware 8 swedish keyboard

After loads of problems with VMware 8.0.3 installation on Fedora 16(with patch vmware802fixlinux320.tar.gz 'changed the version number in the script' ) i noticed that all the keys did not work. Im using swe keys in Fedora 16.
After a bit of research and Keyboard mapping i managed to get it right.
edit following config file. save it( esc :wq) restart VMware and it hopefully will work for you to.

vi ~/.vmware/config


xkeymap.noKeycodeMap = "TRUE"
xkeymap.keycode.20 = 0x00c #SWE +?\
xkeymap.keycode.21 = 0x00d #SWE '`
xkeymap.keycode.61 = 0x035 #SWE -_
xkeymap.keycode.49 = 0x029 #SWE §½
xkeymap.keycode.34 = 0x01a #SWE Å
xkeymap.keycode.35 = 0x01b #SWE ~^"
xkeymap.keycode.47 = 0x027 #SWE ö
xkeymap.keycode.48 = 0x028 #SWE ä
xkeymap.keycode.51 = 0x02b #SWE '*

Tuesday, June 12, 2012

head / tail


head and tail command displays the upper and bottom of a file.
head -n 10 /var/log/messages #displays top 10 rows of messages
head -n 10 /var/log/messages /var/log/secure #displays the top 10 rows of messages and secure
tail -n 10 #displays the same thing as head but the bottom part of the filename

Less command


Less shows the content of a file. syntax is less filename.
You cant less output through a pipe but you can pipe to less.

SPACE = Move forward a page at a time
ESC then V = Move backward a page
UP and Down arrowkeys = Move up and down a line
/word = searches for word forwards
?word = searches for word backwards
g50 = jumps to row 50
q = exits Less program