Welcome to Linux Forums! With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.
Find the answer to your Linux question:
New to Linux Forums? Register here for free!
    Linux Forums > Your Distro > Gentoo Linux Help > What combination of USE flags work for you ?

Forgot Password?
 Gentoo Linux Help   For help and discussion related to Gentoo Linux

Site Navigation
Linux Articles
Linux Forums
Linux Downloads
Linux Hosting
Free Magazines
Job Board
IRC Chat
RSS Feeds


Linux Forum Topics
Linux Forums
Your Distro
Linux Resources
GNU Linux Zone
The Community
Reply
 
Thread Tools Display Modes
Old 02-01-2009   #11 (permalink)
Linux User
 
gruven's Avatar
 
Join Date: Dec 2004
Location: Arkansas
Posts: 432
Send a message via ICQ to gruven Send a message via AIM to gruven Send a message via MSN to gruven Send a message via Yahoo to gruven Send a message via Skype™ to gruven
A long list of USE flags isn't really bad, as long as you keep track of them. Not all use flags are for all programs, I just keep them in the USE flag list so I don't have to put them in /etc/portage/package.use/ every time I do a new install.

The MAKEOPTS options I have set is -j9 (quad core x2 +1) because my computer has plenty of ram + cache to keep up, and the processor has never been more happy. The -l8 option (lower case L stands for "load") is to control the load put on the system from portage. With a higher -j number, you need the -l. You just have to play with the options until you get an acceptable speed from portage.
__________________

Linux User #376741
Preferred Linux Distro: Funtoo
Screenshots
Remember, Ubuntu is A Linux distribution, not THE Linux distribution.

There is no need to login to the GUI as root!
gruven is offline  


Reply With Quote
Old 02-01-2009   #12 (permalink)
Trusted Penguin
 
MikeTbob's Avatar
 
Join Date: Apr 2006
Location: Panther City, Tx
Posts: 4,059
Quote:
Originally Posted by gruven View Post
A long list of USE flags isn't really bad, as long as you keep track of them. Not all use flags are for all programs, I just keep them in the USE flag list so I don't have to put them in /etc/portage/package.use/ every time I do a new install.
Indeed, or if you just compile one program with special use flags, then you do emerge -avDN world and it gets compiled without the special use flags. I find it much easier to just toss all use flags into make.conf and forget about them.
__________________
I do not respond to private messages asking for help.
Please keep it on the forums only.
MikeTbob is offline   Reply With Quote
Old 02-03-2009   #13 (permalink)
Linux User
 
darkrose0510's Avatar
 
Join Date: Jan 2006
Location: Queensland, the cyclone/flood/drought capital of Australia
Posts: 364
I'll try to remember to post mine later tonight when I've got a gentoo system in front of me - Ubuntu at work - but I am kind of stingy on USE flags generally, unless it's to remove things like -kde -qt3 -qt4 -gnome etc. If I need a particular flag for something I'll add it to package.use as necessary.
__________________
for (int i=0; i<100; i++) {
printk(KERN_INFO "I will not take shortcuts with kernel modules.\n");
}
A computer without a Microsoft operating system is like a dog without bricks tied to its head.
darkrose0510 is online now   Reply With Quote
Old 02-03-2009   #14 (permalink)
Linux User
 
darkrose0510's Avatar
 
Join Date: Jan 2006
Location: Queensland, the cyclone/flood/drought capital of Australia
Posts: 364
Ok, make.conf for my acer aspire one:
Code:
CFLAGS="-O2 -march=prescott -pipe"
CXXFLAGS="-O2 -march=prescott -pipe"
MAKEOPTS="-j2"
CHOST="i686-pc-linux-gnu"
VIDEO_CARDS="intel"
INPUT_DEVICES="keyboard synaptics mouse"
GENTOO_MIRRORS="ftp://ftp.swin.edu.au/gentoo/"
SYNC="rsync://rsync.gentoo.org/gentoo-portage"
USE="X gtk -gnome -qt3 -qt4 -kde alsa opengl sdl png jpeg gif dri"
Like I said, pretty light.
__________________
for (int i=0; i<100; i++) {
printk(KERN_INFO "I will not take shortcuts with kernel modules.\n");
}
A computer without a Microsoft operating system is like a dog without bricks tied to its head.
darkrose0510 is online now   Reply With Quote
Old 02-03-2009   #15 (permalink)
Linux Guru
 
Join Date: Oct 2007
Posts: 2,410
Quote:
Originally Posted by darkrose0510 View Post
Ok, make.conf for my acer aspire one:
Code:
USE="X gtk -gnome -qt3 -qt4 -kde alsa opengl sdl png jpeg gif dri"
Like I said, pretty light.
To be honest that's the sort of thing I was expecting ... is this combination for fluxbox ?
Jonathan183 is offline   Reply With Quote
Old 02-03-2009   #16 (permalink)
Linux User
 
darkrose0510's Avatar
 
Join Date: Jan 2006
Location: Queensland, the cyclone/flood/drought capital of Australia
Posts: 364
Yeah, Fluxbox, plus all my apps are gtk, and I do a little gaming and play some mp3's, this takes care of evrything I need.
__________________
for (int i=0; i<100; i++) {
printk(KERN_INFO "I will not take shortcuts with kernel modules.\n");
}
A computer without a Microsoft operating system is like a dog without bricks tied to its head.
darkrose0510 is online now   Reply With Quote
Old 03-16-2009   #17 (permalink)
Linux User
 
hazel's Avatar
 
Join Date: May 2004
Location: Harrow, UK
Posts: 481
What I would like to do basically is:

1) Compile smaller and faster versions of some of the "heavier" graphical apps that I currently use on Debian.

2) Stop programs like abiword spewing out spurious warnings simply because I choose not to use them under gnome. That really irritates me.

But I suspect that gnome support is built into these programs so using a USE flag of -gnome probably wouldn't have much effect.
__________________
"I'm just a little old lady; don't try to dazzle me with jargon!"
hazel is offline   Reply With Quote
Old 04-01-2009   #18 (permalink)
Linux Guru
 
Join Date: Oct 2007
Posts: 2,410
Quote:
Originally Posted by hazel View Post
What I would like to do basically is:

1) Compile smaller and faster versions of some of the "heavier" graphical apps that I currently use on Debian.

2) Stop programs like abiword spewing out spurious warnings simply because I choose not to use them under gnome. That really irritates me.

But I suspect that gnome support is built into these programs so using a USE flag of -gnome probably wouldn't have much effect.
hazel - emerge -p with gnome and -gnome flags gives different results ... when I tried to emerge abiword with -gnome in the use flag it errored out part way through (I don't use abiword so have not really investigated further). Did you get any further trying to emerge abiword with -gnome?
Jonathan183 is offline   Reply With Quote
Old 04-01-2009   #19 (permalink)
Linux User
 
hazel's Avatar
 
Join Date: May 2004
Location: Harrow, UK
Posts: 481
Quote:
Originally Posted by Jonathan183 View Post
hazel - emerge -p with gnome and -gnome flags gives different results ... when I tried to emerge abiword with -gnome in the use flag it errored out part way through (I don't use abiword so have not really investigated further). Did you get any further trying to emerge abiword with -gnome?
No, that's on my "To Do Eventually" list. At the moment I'm still playing about with smaller tasks, emerging and unmerging stuff and getting some sort of a desktop up and running. I've already discovered that to build a big package like mozilla, I shall need to use a temporary build directory on my home partition (the biggest one in my system) because there just aren't enough free inodes on /. You'd think 9900 would be enough but they all get eaten up in the first minute of the build. And I have discovered that some packages just won't emerge if certain USE flags are unset, which is probably what you're finding with abiword.
__________________
"I'm just a little old lady; don't try to dazzle me with jargon!"
hazel is offline   Reply With Quote
Old 04-01-2009   #20 (permalink)
Linux Guru
 
Join Date: Oct 2007
Posts: 2,410
Quote:
Originally Posted by hazel View Post
I've already discovered that to build a big package like mozilla, I shall need to use a temporary build directory on my home partition (the biggest one in my system) because there just aren't enough free inodes on /.You'd think 9900 would be enough but they all get eaten up in the first minute of the build.
I have not come across that problem yet

Quote:
And I have discovered that some packages just won't emerge if certain USE flags are unset
I have experienced that ... one reason for starting this thread
Jonathan183 is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Free Magazines
Run Your Own Web Server Using Linux & Apache - Free 191 Page Preview
Learn about everything you'll need to build and maintain your Linux servers, and to deploy Web applications to them.
subscribe
Open Source Security Myths Dispelled
Dispel the five major myths surrounding Open Source Security and gain the tools necessary to make a truly informed decision for your IT organization
subscribe
InformationWeek
InformationWeek is the only newsweekly you'll need to stay on top of the latest developments in information technology.
subscribe



All times are GMT. The time now is 08:28 AM.






© 2000 - 2009 - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.3.0 RC2