Skip to main content

Installing Gentoo into ECS A097

ECS A097 is a laptop using a Transmeta Crusoe microprocessor. Crusoe is different from two other will known processors, namely AMD microprocessors and Intel microprocessor, because it is using the VLIW technology. Intel and AMD are mostly CISC based processors. With the Transmeta Crusoe design, some of the instructions are being run by the processor and some are implemented in software they called code morphing. By doing this they basically offloaded the microprocessor thereby consuming less power. To prove further about Crusoe check the following link. What I am going to do here basically is to document how to run Linux in Transmeta Crusoe the fastest possible. There are many ways of achieving this like installing the OS using LFS but we will use Gentoo here instead. Install sequence: 1) Download install-x86-minimal-2006.1.iso from www.gentoo.org. 2) Burn the image into a CD-R/W. 3) Boot the machine using the minimal Gentoo CD. 4) Since my network was not configured properly on boot-up, I configured eth0 using "net-setup eth0." This is needed in my case because my network configuration is not really one of the common setup. I have a gateway running Windows XP SP2 and I have a DHCP served by Airlink wireless router. I don't know how to setup the router so that when a computer requests for an IP it should also return the correct gateway. My problem really is with configuring the router with non-default gateway. Anyways, enough for that. Since this is my own network I know what data to supply for the gateway and the DNS servers. 5):(... I got stumbled with issues and forgot to document every steps I have taken to configure this portable computer in Gentoo. Better luck next time. Some important information I have collected while playing around with Gentoo. Updating entire Gentoo system:
#: emerge --update --deep --newuse world
#: emerge --deepclean
#: revdep-rebuild
Very Important when updating kernel: Run the following command to rebuild external modules:
#: module-rebuild rebuild
~yth~

Comments

Popular posts from this blog

Error! Could not locate dkms.conf file install VirtualBox 4.1.8 on Ubuntu 11.10

Tried to update my Ubuntu host today and it did pickup that new version of VirtualBox is available (4.1.8). All other packages installed properly except that VirtualBox installation was complaining about missing dkms.conf file, see error message below. $: sudo /etc/init.d/vboxdrv setup * Stopping VirtualBox kernel modules [ OK ] * Uninstalling old VirtualBox DKMS kernel modules Error! Could not locate dkms.conf file. File: does not exist. [ OK ] * Trying to register the VirtualBox kernel modules using DKMS [ OK ] * Starting VirtualBox kernel modules [ OK ] Though it looks like installation was fine but I am concerned about its effects to VirtualBox functionality. To fix this, do: $: cd /var/lib/dkms/vboxhost $: sudo rm -r 4.1.4 $: sudo /etc/init.d/vboxdrv setup Of course you have to re

The following add-ins could not be started MonoDevelop.GnomePlatform

Installing MonoDevelop in OpenSUSE 12.2 from its repository was very easy. When running it for the first time though I got the message: The following add-ins could not be started: The root of the trace shows MonoDevelop.GnomePlatform,2.8 A quick search shows that MonoDevelop depends on libgnomeui . This should have been part of dependencies when installing the application but well.... Below is the screen shot of the error message. References: http://software.1713.n2.nabble.com/MonoDevelop-and-openSUSE-12-1-td7462957.html [2013/04/09] - Same issue observed in OpenSUSE 12.3 and also the same fix. [2014/11/02] - Same issue observed in OpenSUSE 13.3, mondevelop 3.0.6 and the same fix.