Every Flavour Beans

“The time has come…to talk of many [technologies].” –Lewis Carroll(’The Walrus and the Carpenter’)
Development Tools. Web Frameworks. GNU/Linux. Nokia N800. Video Encoding.

October 1, 2006

How to Speed up Booting Into GNOME - A Gentoo Wiki Tip

Filed under: GNU/Linux, Gentoo — tabrez @ 4:32 pm

While there are several ways to cut down the time it takes for a GNU/Linux system to boot up completely, the most popular way is to prevent any unnecessary services from being started at the boot time(if you don’t host web pages from your machine, for example, then disabling the apache server from starting at boot time will save some precious CPU cycles). There are several HOWTOs littered around the internet describing how to identify and disable the services that are not needed by a user. You can go to Desktop -> Administration -> Services in GNOME to have a look at the most important services; the commands ‘rc-status boot’ and ‘rc-status default’ will give you a complete list. Make sure that you understand what a service does before trying to disable them.

Gentoo Wiki has another trick to speed up the boot process of Gentoo OS: start loading GDM at boot time by adding ‘xdm’ to the boot runlevel instead of the default runlevel. I am reproducing the procedure here mainly because the boot time for my Gentoo system got reduced roughly by 40% after I implemented this tip, which by no means is insignificant.

Follow these steps.

  1. Using your favourite editor, modify one line of code in the file /etc/init.d/xdm:
    sh# emacs -nw /etc/init.d/xdm

    Substitute the following line:

    /sbin/telinit a &> /dev/null

    with this line:

    /etc/X11/startDM.sh &> /dev/null

    (All the above names are case-sensitive.)

  2. Now run the following two commands:
    sh# rc-update del xdm
    sh# rc-update add xdm boot

That’s it. To immediately try it out, you can run ‘/etc/init.d/xdm restart’ command, or preferably, can do a full system reboot. The major gain for me after making this modification has been that the system no more gets stuck at the boot time for more than 10 seconds when it can’t find a DHCP server.

NOTE: This tip is meant only for the desktop machines. It’s not advisable for server machines for obvious reasons.

More information on Gentoo Wiki:

Speed up your boot time
Gnome Desktop for the End-User


If you want to receive future posts by email, enter your email address here:

Related Posts:

  • Apache + PHP + MySQL on Gentoo
  • Installing Ubuntu & Kubuntu Dapper(6.06 LTS) For NVidia GeForce Cards
  • K3B and amaroK: Only KDE applications I use
  • Direct Server to Server Copy using FXP
  • Spice up GNOME Desktop Using gDesklets(aka SuperKaramba in KDE)
  • Moving A GNU/Linux Installation To A Different Partition
  • C# & MonoDevelop (.NET) on Gentoo and Ubuntu

  • September 24, 2006

    Moving A GNU/Linux Installation To A Different Partition

    Filed under: GNU/Linux, General, Gentoo — tabrez @ 5:19 pm

    When I had first installed the Gentoo GNU/Linux operating system, my initial plan was to use it just for a couple of weeks before overwriting it by installing some other new distribution from Distrowatch. But I started to like it so much in less than a month’s time that I replaced Debian Sid with Gentoo as the primary operating system on my personal desktop(the server still runs Debian Sarge). Almost an year now, I haven’t regretted the decision ever. What I did regret a few days ago, though, was the amount of disk space that I had allotted for Gentoo during its installation - a meagre 11GB partition! Mortals like me lack the foresight required in such situations.

    I had never considered ‘moving’ an installed operating system to a different location until then - I thought it to be such a lousy way to lose the oppurtunity for a fresh installation of the OS from the scratch(avoiding the mistakes that were committed the last time). But installing a Gentoo system from the sratch! Heavens forbid. It had taken 3 days for me to get the a bare minimum Gentoo system up and running, nothing more than the GNOME desktop manager. Another 4-5 days to install the most basic applications. I was not prepared at all to go through similar 1 week of downloading, compiling and installing the packages again by starting from the scratch. I decided to move my existing Gentoo system to a new, bigger partition. Not just the data but the entire bootable operating system.

    None of my reservations regarding moving an installed system to a new location turned out to be true after a quick google search about them: all one needs to accomplish this task is a new, empty partition and atleast a GNU/Linux Live CD to run the basic unix commands. I confirmed that this is indeed correct information and won’t result in an unusable system by getting help from folks on the linux IRC channels. I had only two things to confirm:

    1. If there is a way to ‘cp’ files which preserves the file permissions for the copied files, right? Yes. ‘cp -a’
    2. If /proc kind of directories which store special, non-data files will be re-created at the boot time and won’t create any problems while they are copied(or if they are skipped from the copy operation)? Yes.

    Thanks to the folks on the IRC channels, both my doubts were clarified to my satisfaction(one must appreciate the level of depth that they are ready to go to explain such stuff, I got more than what I had asked for :) ) and I was well set to finally begin the process of moving my Gentoo system from the 11GB partition(/dev/hdc7) to a 40GB one(/dev/hdc6, which I had earlier formatted with ext3 filesystem).

    NOTE:
    1. I could have tried to use GParted Live CD to resize the Gentoo partition if there were any free space available *after* my Gentoo partition. Unfortunately, /dev/hdc6 was the last partition on my third hard disk.
    2. Another way to accomplish the same task would be to use the dd command. But remember that it copies the empty(non-data) space also and hence would be very inefficient if you have very less occupied space on the partition. This was not the case with me, but I still thought that cp is a better bet for my case.

    I booted into my Kubuntu system(can be done from any Live CD) and followed the procedure listed below to complete the process of moving my Gentoo Installation from /dev/hdc7 to /dev/hdc6:

    1. Unmounted /dev/hdc7 from /media/gentoo and re-mounted it with read-only option, just to be on the safe side(those who are attempting to do something like this *must* take a complete backup of their entire partition before beginning).
      sh# sudo umount /media/gentoo
      sh# sudo mount /dev/hdc7 /media/gentoo -o ro
    2. Mounted the partition to which I want to move the Gentoo system.
      sh# sudo mkdir /media/newgentoo
      sh# sudo mount /dev/hdc6 /media/newgentoo
    3. Copied the files from the old partition to the new one.
      sh# sudo cp -a /media/gentoo/* /media/newgentoo/

      The ‘-a’ option tries to preserve as much structure of the filesystem as possible(ownerships, permissions, symbolic links etc). Consider if ‘-x’ is also required in your case.

    4. Did one modification to the /etc/fstab file in /media/newgentoo(/ should now be /dev/hdc6).
      sh# sudo emacs -nw /media/newgentoo/etc/fstab

      Earlier:

      /dev/hdc7 / ext3 noatime 0 1

      Now:

      /dev/hdc6 / ext3 noatime 0 1

    5. Modified the GRUB configuration file to add an entry for the new Gentoo partition. Did not remove the entry of the old Gentoo system for now and decided to remove it once my new system boots correctly.
      NOTE: The grub installed on my MBR belongs to my Kubuntu installation. All the other GNU/Linux systems and the Windows operating systems have their boot loaders on their respective partitions whose entries I have added to the grub configuration file present in Kubuntu.
      sh# sudo emacs -nw /boot/grub/menu.lst

      title Gentoo GNU/Linux(New)
      root (hd0,7)
      kernel /boot/kernel-genkernel-x86-2.6.14-gentoo-r5 root=/dev/ram0 init=/linuxrc ramdisk=8192 real_root=/dev/hdc6 udev
      initrd /boot/initramfs-genkernel-x86-2.6.14-gentoo-r5
      savedefault
      boot

      I actually made a copy of my previous entry and just changed the value of ‘real_root’ field from ‘/dev/hdc7 udev’ to ‘/dev/hdc6 udev’. The strange looking values of the rest of the fields owe to the fact that I have my kernel and initramfs images copied in /boot directory of my Ubuntu system(and hence needed no modifications). The Grub boot loader reads these files from there and then mounts /dev/hdc6 as the ‘real root’ device.

    That’s it. I booted into the new Gentoo system by selecting its entry from the boot-loader menu, and soon the all familiar Gentoo desktop I had gotten used to for the past one year was ready to go. No hiccups, no troubleshooting and no tweaking was required. The only observable difference from my old Gentoo system was that I had a lot more free disk space now! I will continue to use the old system for some more time to do couple of testings(which I was afraid to do earlier) before erasing it to install another GNU/Linux operating system over it. With RC5 already available, Slackware 11.0 seems to be just around the corner ;)

    For those who don’t have another GNU/Linux OS installed on their computers or don’t have the luxury to boot from a Live CD(for remote systems, for example) to perform the copying operations, the copying can be done from the running system(the OS you want to move) too - with a litttle more caution. A lot of information on this can be extracted from the Gentoo wiki pages(applies to all distributions, not just Gentoo) - Google search should take you there.


    If you want to receive future posts by email, enter your email address here:

    Related Posts:

  • System rescue act using GNU/Linux Live CD
  • A NFS Story on Gentoo
  • Another system rescue story, using Ubuntu LiveCD
  • Installing Oracle Database 10g Express Edition on Debian/Ubuntu
  • Step 1: Ripping Movie DVDs to the Hard Disk(VOB format)
  • Setting Up Development Environment For Grails on GNU/Linux
  • Setting Up C++ Development Environment on Windows with EasyEclipse and MinGW

  • July 22, 2006

    Create ASP.NET 1.0 & 2.0 Applications On GNU/Linux and Windows Using Mono XSP

    Filed under: GNU/Linux, Gentoo, Mono, Web — tabrez @ 12:39 pm

    This post assumes that Mono is installed on your system. The following links should help if it is not installed.

    Installing Mono on Gentoo and Ubuntu 5.10
    Installing Mono and XSP on Ubuntu 6.06
    Installing Mono and XSP on Fedora

    Installing Mono XSP on Gentoo

    #emerge xsp xsp2

    Installing Mono XSP on Debian/(K)Ubuntu

    #sudo apt-get install xsp xsp2

    Installing Complete Mono Environment(Mono, GTK#, XSP) on MS Windows

    1. Download the Mono installation file for MS Windows from the Mono website.
    2. Run the installer and follow the installation wizard.

    Go to the Mono menu in the Start menu(Start->All Programs->Mono[version]) to access all the applications installed as part of Mono.

    Your First ASP.NET 1.0 Application Using Mono XSP

    1. First create a directory to store the ASP.NET files and change to that directory. You can create the directory in your home directory.
      sh# mkdir aspnet && cd aspnet
    2. Create a sample ASP.NET page. Copy and paste the following code in two separate files(hello.aspx and hello.aspx.cs).
      hello.aspx
      HTML:
      1. <%@ Page language="c#" src="hello.aspx.cs"
      2.                     Inherits="HelloApp.HelloPage" AutoEventWireup="true" %>
      3.     <title>First Mono ASP.NET 1.0 Application</title>
      4.   </head>
      5.     <H1>Welcome to my page!</H1>
      6.     <form  runat="server">
      7.       Enter your name: <asp:TextBox id="name" runat="server" />
      8.       <asp:Button id="greet" Text="Greet" onClick="OnGreetClick" runat="server"/>
      9.     </form>
      10.     <br /><strong><asp:Label id="message" runat="server">Hello, World!
      11.             </asp:Label></strong>
      12.   </body>

      hello.aspx.cs
      C#:
      1. using System;
      2. using System.Web.UI.WebControls;
      3.  
      4. namespace HelloApp
      5. {
      6.    public class HelloPage : System.Web.UI.Page
      7.    {
      8.       protected Label message;
      9.       protected Button greet;
      10.       protected TextBox name;
      11.  
      12.       public void OnGreetClick(Object sender, EventArgs e)
      13.       {
      14.           message.Text = "Hello, " + name.Text;
      15.       }
      16.    }
      17. }

    3. From the same directory('aspnet'), start the XSP server:
      sh# xsp

      (you can press ENTER to terminate the XSP server process)

    4. Open a web browser, type the url http://localhost:8080/hello.aspx and press ENTER. You should see a web page with a text box and a message. Enter a name in the text box and click the "Greet" button to see the personalised greeting displayed.

    On MS Windows, go to the Mono menu in the Start menu(Start->All Programs->Mono[version]), select "Mono[version] Command Prompt" menu item. Create a directory(say 'c:\programs\aspnet'), change to that directory and copy the above two files in that directory. From the same directory, run 'xsp' commad to start the XSP webserver. Open a web browser and access the url http://localhost:8080/hello.aspx.

    Your First ASP.NET 2.0 Application Using Mono XSP

    To develop ASP.NET 2.0 applications using Mono XSP server, start 'xsp2' webserver instead of 'xsp'. Create a test ASP.NET 2.0 page(say 'hello2.aspx') and copy it in a folder. Run the following command from the same folder:

    sh# xsp2

    Go to http://localhost:8080/hello2.aspx to test the ASP.NET 2.0 page.


    If you want to receive future posts by email, enter your email address here:

    Related Posts:

  • Installing C#, Mono(.NET) & MonoDevelop in Ubuntu Dapper Drake 6.06
  • Installing C#/Mono(.NET)/MonoDevelop/XSP in Ubuntu Gutsy Gibbon(7.10)
  • Writing Your First Program With Mono And MonoDevelop
  • C# & MonoDevelop (.NET) on Gentoo and Ubuntu
  • Creating “Hello World” Web Application Using the Grails Framework
  • My Favourite Note-Taking Applications
  • Another system rescue story, using Ubuntu LiveCD

  • July 19, 2006

    Installing Ruby on GNU/Linux(Gentoo, (K)Ubuntu, Fedora, SUSE) And MS Windows

    Filed under: GNU/Linux, Gentoo, Ruby/Rails, Ubuntu — tabrez @ 12:05 pm

    Installing Ruby on Gentoo:

    To install Ruby on Gentoo, run the following command(as root) in a shell:

    sh# emerge ruby ruby-mode

    You can add a few 'USE' keywords if you want to install additional Ruby support(like database integration, CGI support etc). Add the following line to the /etc/portage/package.use file(keywords that are already present in 'USE' flag of /etc/make.conf file need not be added):

    dev-lang/ruby docs examples fastcgi mysql

    'ruby-mode' adds the ruby mode to the Emacs editor while editing .rb files. Use 'ruby-modes' to add similar support to XEmacs. You need to add some text to .emacs file from your home directory; see this to know how to do it.

    Installing Ruby on (K)Ubuntu:

    Preparation:

    A little note before you start installing Ruby on (K)Ubuntu:
    There are two versions of Ruby available in the Ubuntu repositories:

    • Ruby 1.8.4
    • Ruby 1.9.0

    1.8.4 version can be installed by appending 1.8(Eg. ruby1.8, irb1.8 etc) to the respective package names. Similarly, 1.9 version can be installed by appending 1.9(Eg. ruby1.9, irb1.9 etc) to the respective package names. If nothing is appended(Eg. ruby, irb etc), what debian considers as default version of ruby(currently 1.8.4) will be installed.

    Once Ruby is installed, the command to invoke the Ruby interpreter would depend on which version of it is installed. Like, if ruby1.8 is installed, ruby can be invoked using 'ruby' or 'ruby1.8' commands('ruby' will be a symbolic link to 'ruby1.8'):

    sh# ruby1.8 first.rb
    sh# ruby first.rb
    sh# ls -l `which ruby`
    lrwxrwxrwx 1 root root 7 2006-07-18 18:47 /usr/bin/ruby -> ruby1.8

    (the quotes in the third command are inverted quotes and not single quotes)

    Use 'ruby1.9' if 1.9 version is installed.

    If all this sounds confusing, just follow my recommended way of installing Ruby and skip the 'Optional' part.

    My recommended way of installing Ruby on (K)Ubuntu:

    To install Ruby on Ubuntu family of operating systems, type the following command in a shell:

    sh# sudo apt-get install ruby ruby1.8 libruby1.8 irb irb1.8 rdoc rdoc1.8 ri ri1.8 ruby1.8-examples ruby1.8-elisp ruby-manual rubybook

    (Or search and install these packages using Synaptic(on Ubuntu) or Adept(on Kubuntu) Package Manager.)

    Running commands like 'ruby', 'irb' etc will invoke the latest stable versions:

    sh# ruby -v
    ruby 1.8.4 (2005-12-24) [i486-linux]
    Optional

    To install the 1.9 version(which is not stable as of now), use the following command:

    sh# sudo apt-get install ruby ruby1.9 libruby1.9 irb irb1.9 rdoc rdoc1.9 ri ri1.9 ruby1.9-examples ruby1.8-elisp ruby-manual rubybook
    sh# ruby -v
    ruby 1.9.0 (2006-04-21) [i486-linux]

    Of course you can also have both 1.8.4 and 1.9 versions installed on the system at the same time. Run the following command to do so:

    sh# sudo apt-get install ruby ruby1.8 ruby1.9 libruby1.8 libruby1.9 irb irb1.8 irb1.9 rdoc rdoc1.8 rdoc1.9 ri ri1.8 ri1.9 ruby1.8-examples ruby1.9-examples ruby1.8-elisp ruby-manual rubybook

    In this case, use 'ruby' to execute the 1.8.4 version of the interpreter and use 'ruby1.9' to run the 1.9 version.

    sh# ruby -v
    ruby 1.8.4 (2005-12-24) [i486-linux]
    sh# ruby1.9 -v
    ruby 1.9.0 (2006-04-21) [i486-linux]

    What about ruby-gems?

    I don't recommend installing additional Ruby packages using the 'rubygems' utility if you use a distribution specific package manager(apt, emerge etc) to manage the software on your system. Debain community strongly discourages its use to install the ruby packages(rightly so), as it doesn't follow the package management conventions of Debian's package manager(and hence can mess up with it and stop it from working properly). Same goes for Gentoo OS too. Go here to read more information on this. But if Ruby is (one of) the most important software for you, then 'rubygems' can make it very easy to install the latest versions of Ruby related software, long before they are added to the Debian or Gentoo repositories. In that case, follow the documentation on how to install 'rubygems' and how to install Ruby packages using it from this page.

    In Gentoo, you can do this:

    sh# apt-get install rubygems

    Installing Ruby on Fedora/SUSE/Mandriva etc:

    Use RPMs! Hunt them down using google.com or rpmfind.net and then install them one by one in the order.
    Or use the package manager of each distribution('yum', 'yast' and 'urpmi' respectively) and hope for the best. I have tested with yum and yast and at least they did not create too many issues for me:

    Ruby on Fedora using yum:

    If the yum configuration files(fedora.repo etc) are properly setup, you can install Ruby using the following command:

    sh# yum install ruby.i386 ri.i386 ruby-mode.i386
    sh# ruby -v
    ruby 1.8.4 (2005-12-24) [i386-linux]

    Above command will install ruby, irb, ri, rdoc commands and Ruby mode for Emacs. You need to add the following line to '.emacs' file present in your home directory(create it otherwise) to enable Ruby mode in Emacs editor:

    (require 'ruby-mode)

    On SUSE, use YaST to install 'ruby', 'ruby-doc-ri' and 'rubygems' packages by searching for them from the YaST interface(YaST->Software Management->Search).

    sh# ruby -v
    ruby 1.8.2 (2004-12-25) [i586-linux]

    'ruby' and 'rubygems' are available on the SUSE 10.1 DVD itself; you can add repositories from the Internet to install the other Ruby packages(ruby-docs-ri etc), or use 'rubygems' to install them.
    Add the following in the YaST configuration (YaST->Installation Source) if you want to install 'ruby-docs-ri' from the Internet:

    Protocol: FTP
    Server Name: ftp.mirrorservice.org
    Directory on Server: /distribution/SL-10.0-OSS/inst-source/
    Authentication: Anonymous

    Another way would be to simply download all the needed RPM files by manually searching for them on the web and installing them directly without bothering with yast. Same can be done for Mandriva and other RPM based distributions.

    Installing Ruby on Microsoft Windows:

    Download the Ruby Windows installer file from the following url: Ruby 1.8.4
    (blog entries become outdated very soon; this is version 1.8.4, currently the latest stable version. Always Google for the latest stable version to check if this url still useful to compensate my laziness in updating the above link once a new version is released. 40+ words waster for the lack of Package Manager in Microsoft Windows.)

    Click on the installer file and follow the wizard. Once finished, you have three ways to run your Ruby programs(assuming its Windows XP):

    All the menu items are available at: Start->All Programs->Ruby-184-19, so first go there.
    Menu for Ruby Programs
    Then,

    1. Select fxri-Interactive Ruby Help & Console menu item to load the interactive Ruby interpreter. Run your Ruby programs at the 'irb' prompt.

      Interactive Ruby Shell(irb) And Help

    2. Select FreeRIDE menu item, which will open a minimal IDE to write, debug and run Ruby programs.

      FreeRIDE IDE For Ruby

    3. (Recommended)Use SciTE editor.
      Select SciTE menu item. This will open the excellent editor called SciTE that supports many programming languages other than Ruby, and is also available for many other operating systems(including GNU/Linux). Its one of the best programming editors available today.

      Programmable Editor SciTE for Ruby

    After finishing editing and saving the program with SciTE, go to the command prompt(Start->All Programs->Accessories->Command Prompt), change to the directory where you have saved the program and run it using the 'ruby' command.

    C:\myprogs>ruby first.rb

    End Note:

    This article describes the installation of basic Ruby software. There are many related packages that can be installed to get additional functionality, like database bindings for popular database software(mysql, postgre), email support, gui programming(gtk, qt), rails, soap etc. Hopefully, I will cover installation of these packages in a future article(also planning to post an article on using various popular IDEs(Eclipse, Komodo) to create Ruby programs in Windows and GNU/Linux OS), so check back if you are interested.


    If you want to receive future posts by email, enter your email address here:

    Related Posts:

  • Installing C++ Boost on SuSE and Fedora
  • Installing Ubuntu & Kubuntu Dapper(6.06 LTS) For NVidia GeForce Cards
  • Killer Looks of KDE in Kubuntu Entices a Long Time GNOME User!
  • Develop Ruby Applications Using JEdit Editor
  • 7-Zip Compression Format Support on GNU/Linux Using p7zip
  • Which is my favourite OS?
  • Programming in Ruby Using SciTE - Windows Issues and Other Tips

  • June 20, 2006

    Two Applications For Easy Management Of ‘USE’ Flags In Gentoo

    Filed under: GNU/Linux, Gentoo — tabrez @ 10:41 pm

    The feature I like the most in the Gentoo operating system is the flexibility available through the use of 'USE' flags while installing the software packages. Its one of the features which you feel fortunate to have found out, wondering how you could have lived without it in the other operating systems.

    Many operating systems(Debian/Ubuntu, Gentoo) handle the first level of dependency quite efficiently - the dependencies which are essential for a package to work are automatically resolved and installed whenever you install the package with 'apt' in Debian/Ubuntu or 'emerge' in Gentoo. yum, urpmi, yast etc are trying to achieve the same but they are still not as robust as the earlier two. The second level of dependencies that are not essential for the package to work but can add to its core functionality are still managed by the users manually in every operating system(AFAIK) except in Gentoo. Its just one more thing to worry less about for the Gentoobies.

    If you want every package that can provide functionality related to MySQL software to have such support included in it when it is installed, then just add the 'mysql' keyword to the 'USE' flag in the '/etc/make.conf' file:

    USE='gtk gnome kde qt apache mysql'

    MySQL support will now be added to every application that has such bindings available for it. Now you can Install new applications or upgrade the entire system never bothering about missing MySQL support in any of the applications. Similarly you can chose to include support for Java, Apache, alsa etc for the applications that support them. Have a look at the Gentoo website for a complete list of USE flags that are supported by Gentoo or run the following command from a Gentoo system:

    sh# less /usr/portage/profiles/use.desc

    USE flags can also be used to disable a certain optional functionality(if it will be installed by default but you don't want it, for example) by prefixing the flag with a minus-sign("-"):

    media-sound/banshee ipod njb -aac real

    In this case, aac support will NOT be installed for the Banshee application.

    Adding a USE flag in the /etc/make.conf will globally enable it for the entire Gentoo system and will apply to every application that is installed on it. To enable/disable USE flags on an application to application basis(you want MySQL support in one application but not in the other), you can add a separate line for every application in /etc/portage/package.use file:

    =dev-lang/php-5.0.5-r5 cli cgi apache apache2 mysql dba gd

    These USE flags will be applied only to the PHP package and only for the version specified in the above line. To enable the use flags for any version of a package, drop the version number:

    media-sound/banshee ipod njb aac real

    This installs the optional support available for ipod, aac format, real media in the Banshee music player. For more infornation on USE flags, see this.

    Two applications that simplify the management of USE flags in Gentoo are:

    1. ufed
    2. profuse

    Install them using the following command:

    sh# emerge ufed profuse

    The first one is console based and the second one uses a graphical interface. Though its not terribly difficult to manually add/remove the USE flags by directly editing the /etc/make.conf file, I find these two applications to provide a convenient interface to simply search through the list of flags available and enable/disable them with a single click/key press. Below are screenshots of these applications.

    'ufed' console based USE flag editor

    'ufed' console based USE flag editor

    'profuse' graphical USE flag editor

    'profuse' graphical USE flag editor


    If you want to receive future posts by email, enter your email address here:

    Related Posts:

  • C# & MonoDevelop (.NET) on Gentoo and Ubuntu
  • Java on Gentoo
  • How to Speed up Booting Into GNOME - A Gentoo Wiki Tip
  • Apache + PHP + MySQL on Gentoo
  • Update or Install Applications on a Gentoo Machine Without an Internet Connection
  • Linux Bible 2007 Edition: Install/Run 10+ GNU/Linux Distributions(Ubuntu, Fedora, Gentoo etc)
  • Moving A GNU/Linux Installation To A Different Partition

  • Next Page »

    Copyright (c) 2006, 2007 Tabrez Iqbal.
    Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. Verbatim copying and distribution of this entire article is permitted in any medium without royalty provided this notice is preserved. A copy of the license is included in the section entitled "GNU Free Documentation License".


    Powered by WordPress
    This website is hosted by Dreamhost