- get ISO of the latest version of CentOS 5 from the CentOS website, centos.org. You will only need the first disc or the net install disc. (eg. CentOS-5.3-x86_64-bin-1of7.iso)
- following normal installation but deselect all pkg (refer to screenshot)
- after reboot. add EPEL repo (EPEL - FedoraProject), such that iceWM is available.
# rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-3.noarch.rpm - install additional pkg (yum install):
- xorg-x11-twm
- xorg-x11-xfs
- xorg-x11-xinit
- xorg-x11-server-Xorg
- xorg-x11-drv-vmware
- urw-fonts (needed by icewm)
- icewm
- vnc-server
- vnc
Monday, August 17, 2009
CentOS 5.3 minimal installation with X as VMware guest
Friday, March 13, 2009
Freeware for Mac
- Paintbrush - Paintbrush is a simple paint program for Mac OS X, reminiscent of Microsoft Paint and Apple’s own now-defunct MacPaint. It provides users with a means to make simple images quickly, something which has been noticeably absent from the Mac for years.
- Seashore - Seashore is an open source image editor for Mac OS X's Cocoa framework. It features gradients, textures and anti-aliasing for both text and brush strokes. It supports multiple layers and alpha channel editing. It is based around the GIMP's technology and uses the same native file format.
- Burn - Simple CD/DVD burning utilities.
- Transmission - BT client
- VLC - Video player
- Adium - IM client
- Perian - Perian is a free, open source QuickTime component that adds native support for many popular video formats.
- Flip4Mac WMV component - to play .wmv file using quicktime.
- Carbon Copy Cloner - Backup software
- Stuffit Expander - Expand compressed file, eg. zip, rar, etc.
- Cyberduck - FTP client
- Skype - VOIP software
- HandBrake - Video converter
- iStat Pro - iStat pro is a highly configurable widget that lets you monitor every aspect of your Mac, including CPU, memory, disks, network, battery, temperatures, fans, load & uptime and processes.
- Firefox - Web Browser
- Skim - Skim is a PDF reader and note-taker for OS X. It is designed to help you read and annotate scientific papers in PDF, but is also great for viewing any PDF file.
- arCHMock - CHM files viewer for Mac OS X
- OpenTerminal - This application allows you to open a Terminal window with the path of the current Finder window
Saturday, August 16, 2008
How to Install VMware Tools on Ubuntu Hardy 8.04 under VMware Fusion
http://peterc.org/2008/62-how-to-install-vmware-tools-on-ubuntu-hardy-804-under-vmware-fusion.html
http://x86virtualization.com/open-source/howto-install-open-vmware-tools-in-linux-kernel-2624.html
sudo apt-get install build-essential linux-headers-`uname -r` libx11-devInstall VMware Tools make scroll mouse not workable, edit /etc/X11/xorg.conf to add following under:
Section "InputDevice"
Identifier "Configured Mouse"
....
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"
Saturday, April 26, 2008
skype audio failure in Ubuntu 8.04
In the input section of "Multimedia Systems Selector" try switching your input to ALSA and then going into volume control and turning it all the way up. You may have to kill pulseaudio for this to work:
pulseaudio -k
play quicktime and real media files on Ubuntu
Medibuntu (Multimedia, Entertainment & Distractions In Ubuntu) is a repository of packages that cannot be included into the Ubuntu distribution for legal reasons (copyright, license, patent, etc).
Some of these packages include the
libdvdcss package from
VideoLAN and the external binary codecs package (commonly known as w32codecs) used by
MPlayer and
xine.
https://help.ubuntu.com/community/Medibuntu
Ubuntu 8.04
Then I enable the ATI driver, things get even worst, startup no display (can be solved), then the external display is only allow to work in clone mode and the resolution is limited to my laptop resolution which is 1280x800.
No choice, I was lazy to debug and just revert to the generic driver, at least i can set the external monitor to 1280x1024.
Wednesday, December 26, 2007
Install Ruby using apt-get
sudo apt-get install ruby rdoc irb libyaml-ruby libzlib-ruby ri libopenssl-ruby
Install RubyGems manually from source
wget http://rubyforge.org/frs/download.php/29548/rubygems-1.0.1.tgz
tar xzvf rubygems-1.0.1.tgz
cd rubygems-1.0.1
sudo ruby setup.rb
# This creates /usr/bin/gem1.8, but every guide you find will just use “gem”
# so create a symbolic link
sudo ln -s /usr/bin/gem1.8 /usr/bin/gem
# update rubygems
sudo gem update –system
Install Rails using RubyGems
sudo gem install rails