Results 1 to 3 of 3

Thread: How to set up make .conf in Gentoo Linux?

  1. #1
    Join Date
    May 2012
    Posts
    105

    How to set up make .conf in Gentoo Linux?

    I am an regular Linux user and I have been using Linux as my operating system for a long time. Recently I had urge to modify the Linux as per my needs, but couldn’t find any method to do so. I researched on internet for any option that can help me, but I couldn’t find any. But on one link, I found a tool by name Gentoo Linux which might help me to modify my operating system as needed. I am not professional at modifying Linux and related stuff. So can anyone tell me exactly, how Gentoo Linux works and what its purpose is?

  2. #2
    Join Date
    May 2009
    Posts
    210

    Re: How to set up make .conf in Gentoo Linux?

    Gentoo Linux is not usual Linux distribution type of operating system but a meta-distribution operating system which will provide options and tools for proper customization of Linux as you want and as you need. It will safely edit the /etc/make.conf file in the system without hampering the processes and other system performances and activities. I am using an AMD PC and I can tell you how to start with the basic modification of GUI.

    CHOST="x86_64-pc-linux-gnu"

    This command will show if your operating system and the hardware are compatible to handle the modifications of the operating systems without any problems. The presets and the options for modification of Gentoo Linux work best with stage3 tarball architecture. The CHOST shouldn’t be changed in any computer, but in case of 64 bit architecture, we can use a different code to create the modification of Linux.

    This code is used on the 64-bit machine,
    CFLAGS="-march=native -O2 -pipe"
    CXXFLAGS="${CFLAGS}"

    And the code for 32-bit machine, we can use,
    CFLAGS="-march=native -O2 -pipe -fomit-frame-pointer"
    CXXFLAGS="${CFLAGS}"

    When using this code, make sure that you have that –march is set to native. If not set, the configuration and the modification tools will utilize every resource that is available

  3. #3
    Join Date
    Apr 2009
    Posts
    569

    Re: How to set up make .conf in Gentoo Linux?

    Since you are modifying the Linux, you will also need to modify the performance by setting the values for working of hardware peripherals. For getting the maximum performance from CPU when using Linux, you will need to use following code,
    MAKEOPTS="-j3"

    This will also enhance the performance of the RAM in the system. Here in the above code, j3 denotes that you want 3 cores of the processor to dedicate their power for processes in Linux. Depending on the working of your system, you will also need to reduce the performance of the peripherals. You can also increase the speed by which the system accesses the cache memory by using following command,
    FEATURES="ccache"

    For language settings, you can us following command,
    LINGUAS="en_US en"

Similar Threads

  1. Replies: 2
    Last Post: 27-02-2012, 03:56 PM
  2. ncurses-devel use make menuconfig for blocking Gentoo
    By jAYASENA in forum Operating Systems
    Replies: 5
    Last Post: 03-07-2011, 10:18 AM
  3. How to make correct settings for AMD Fusion E350 on Gentoo?
    By Aerona in forum Motherboard Processor & RAM
    Replies: 5
    Last Post: 03-06-2011, 10:31 AM
  4. xorg.conf in Linux Mint for Automatic configuration
    By intoxicating in forum Operating Systems
    Replies: 4
    Last Post: 02-02-2011, 10:11 AM
  5. How to Test Gentoo Linux?
    By foraman in forum Operating Systems
    Replies: 4
    Last Post: 09-11-2010, 01:40 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,711,636,673.81029 seconds with 17 queries