LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 02-07-2008, 11:39 PM   #1
knockout_artist
Member
 
Registered: Sep 2005
Distribution: fedora core 9
Posts: 324

Rep: Reputation: 33
BSD or Gentoo??


Good Day,

I want to install a new flavour of linux on my machine.


BSD::
I have installed freebsd few times, never used it for over a day or so. I liked they it was so small and fast to install.

Gentoo::
I have only hears about. I read few notes about it I liked the way kernel is complied. Making system more efficient from beginning.

Which one should I go for??

Thanks.
 
Old 02-08-2008, 12:59 AM   #2
Pearlseattle
Member
 
Registered: Aug 2007
Location: Zurich, Switzerland
Distribution: Gentoo
Posts: 999

Rep: Reputation: 142Reputation: 142
It's always too hard to answer to these kind of questions.
Try to see what you would like to have and check which OS would best satisfy your wishes.
Actually, as I am a happy Gentoo user, it would be nice if somebody would explain me what would be the advantages of freebsd compared to Gentoo. More stable software (but on the other side perhaps less software available)?
Thx
 
Old 02-08-2008, 09:09 AM   #3
H_TeXMeX_H
LQ Guru
 
Registered: Oct 2005
Location: $RANDOM
Distribution: slackware64
Posts: 12,928
Blog Entries: 2

Rep: Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301
If you want something in-between those two try Slackware ... it's actually right there in-between the two .
 
Old 02-08-2008, 09:39 AM   #4
knockout_artist
Member
 
Registered: Sep 2005
Distribution: fedora core 9
Posts: 324

Original Poster
Rep: Reputation: 33
Quote:
Originally Posted by H_TeXMeX_H View Post
If you want something in-between those two try Slackware ... it's actually right there in-between the two .
Thank you.
But I want to pick one extreme rather then some thing in the middle.

Pearlseattle
So bsd has less software available.
hmmm

Interesting.
 
Old 02-08-2008, 09:46 AM   #5
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
FreeBSD and Gentoo both are source-based. This means to take full advantage of it you must master your own make.conf with optimization for your CPU and likings. Most people disable some debugging features, etc. Below is the make.conf from my FBSD box.
Then you rebuild the whole base system before you start installing any software. Sorry, but if you say FreeBSD installed fast then you don't know much about the whole thing.

Code:
CPUTYPE=c3
# ports
.if ${.CURDIR:M*/ports/*}
    CFLAGS= -O2 -fno-strict-aliasing -pipe -s -funroll-loops -fomit-frame-pointer
    CXXFLAGS= -O2 -fno-strict-aliasing -pipe -s -funroll-loops
    WRKDIRPREFIX= ${PORTSDIR}/obj
.endif

# base
.if ${.CURDIR:M*/usr/src/*} || ${.CURDIR:M*/usr/obj/*}
    CFLAGS+= -O2 -fno-strict-aliasing -pipe -s
    CXXFLAGS+= -O2 -fno-strict-aliasing -pipe -s
    COPTFLAGS= -O2 -fno-strict-aliasing -pipe -s
#   MAKEOBJDIRPREFIX=/usr/obj
# ccache for base
    CC=/usr/local/libexec/ccache/world-cc
    CXX=/usr/local/libexec/ccache/world-c++
.endif

NO_INET6="YES"
WITHOUT_X11="YES"
NO_PROFILE="YES"
NO_BLUETOOTH="YES"
NO_I4B="YES"
KERNCONF=TURTLE2-2
MODULES_OVERRIDE=acpi sound

# added by use.perl 2007-11-09 21:26:43
PERL_VER=5.8.8
PERL_VERSION=5.8.8

Last edited by Emerson; 02-08-2008 at 09:47 AM.
 
Old 02-08-2008, 09:54 AM   #6
knockout_artist
Member
 
Registered: Sep 2005
Distribution: fedora core 9
Posts: 324

Original Poster
Rep: Reputation: 33
Quote:
Originally Posted by Emerson View Post
FreeBSD and Gentoo both are source-based. This means to take full advantage of it you must master your own make.conf with optimization for your CPU and likings. Most people disable some debugging features, etc. Below is the make.conf from my FBSD box.
Then you rebuild the whole base system before you start installing any software. Sorry, but if you say FreeBSD installed fast then you don't know much about the whole thing.

[/CODE]

Thanks Mr. Guru for encouraging remarks!!
 
Old 02-08-2008, 10:00 AM   #7
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
Quote:
Originally Posted by knockout_artist View Post
Thanks Mr. Guru for encouraging remarks!!
Encouraging? Do I smell sarcasm here?
I'm not a guru nor do I pretend to be one. If some operating systems work as intended only in experienced hands then sorry, it certainly isn't my fault.
 
Old 02-08-2008, 10:07 AM   #8
knockout_artist
Member
 
Registered: Sep 2005
Distribution: fedora core 9
Posts: 324

Original Poster
Rep: Reputation: 33
Quote:
Originally Posted by Emerson View Post
Encouraging? Do I smell sarcasm here?
I'm not a guru nor do I pretend to be one. If some operating systems work as intended only in experienced hands then sorry, it certainly isn't my fault.
dude!
I don't know what expert is,
I have build working OS from binary files.
I have also build working OS on 28mb chip.

I think I can handle some level of difficulty.

I didn't want to hurt any one's feeling by saying "I am going to put my hands on the thing which meant to be for chosen ones"

People do need to get a life!!!!!!!!!!!!!!!
 
Old 02-08-2008, 10:07 AM   #9
reddazz
LQ Guru
 
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298

Rep: Reputation: 77
Quote:
FreeBSD and Gentoo both are source-based.
Strictly speaking, FreeBSD gives you the choice to build packages from source or use prebuilt ones if you desire. You don't even need to tinker with /etc/make.conf unless you want to.
 
Old 02-08-2008, 10:21 AM   #10
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
Quote:
Originally Posted by knockout_artist View Post
dude!
I don't know what expert is,
?
Quote:
I have build working OS from binary files.
Sure.
Quote:
I have also build working OS on 28mb chip.
No you didn't, 28 mb is twenty eight millibits. Less than nothing, you cannot break bits into thousands.
Quote:
I think I can handle some level of difficulty.
Good! But before handling difficulties one should acknowledge them,
Quote:
I didn't want to hurt any one's feeling by saying "I am going to put my hands on the thing which meant to be for chosen ones"
No such intentions, hope bringing you down to the Earth didn't hurt you?
 
Old 02-08-2008, 10:37 AM   #11
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
Quote:
Originally Posted by reddazz View Post
Strictly speaking, FreeBSD gives you the choice to build packages from source or use prebuilt ones if you desire. You don't even need to tinker with /etc/make.conf unless you want to.
Out of curiosity, have you tried to run FBSD using prebuilt binaries? I was under impression nobody, including developers, takes this option seriously?
 
Old 02-08-2008, 10:39 AM   #12
knockout_artist
Member
 
Registered: Sep 2005
Distribution: fedora core 9
Posts: 324

Original Poster
Rep: Reputation: 33
Quote:
Originally Posted by Emerson View Post
?

Sure.

No you didn't, 28 mb is twenty eight millibits. Less than nothing, you cannot break bits into thousands.

Good! But before handling difficulties one should acknowledge them,

No such intentions, hope bringing you down to the Earth didn't hurt you?
Its good to learn some communication skills too.

I wonder where the mods are. Why such nasty behavior is allowed on the forum.

NOW GIVE ME YOU EMAIL i SEND YOU A FILE SYSTEM
1-TAKES off FROM LESS THEN 12MB
USE customized FILE SYSTEM consist ONLY
2- /
3-/dev/only 6 to 7 nodes
4- /bin/busybox(ONLY)
Open up file system in memory(no hard disk used)
whole file system is gziped---so support for unzipping a zipped fs is added to the kernel along with loopback.
linsys is used on the boot sector to get system up.

Now would you allow me to install BSD????????????????????????????????

Last edited by Tinkster; 02-08-2008 at 08:22 PM. Reason: clean-up ... someone needs a chill-pill
 
Old 02-08-2008, 10:52 AM   #13
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
Look, I do not care what you do there. I was merely trying to point out you have to get deeper into this FBSD. If you can enjoy binary install, good. If you are such a big expert, again, good for you. This forum here is to discuss Linux matters, not your personality problems.
This is my last response here, have a good day now. Make sure you take your daily medicine, you seem somewhat out of sorts.
 
Old 02-08-2008, 11:06 AM   #14
knockout_artist
Member
 
Registered: Sep 2005
Distribution: fedora core 9
Posts: 324

Original Poster
Rep: Reputation: 33
Quote:
Originally Posted by Emerson View Post
?

No you didn't, 28 mb is twenty eight millibits. Less than nothing, you cannot break bits into thousands.
Kindly explain.
how the router you use at your home runs an OS on it running firewall-dhcp-ftp etc, while it has usually less the 28mb in some cases.

Have you ever heard about RTOs, or embedded linux??? usually you only pick the part whcih you would be using rather than conventional heavyweight File-system.

My point is: no need to disrespect ppl if they sound like, the way you want them to sound like.

Peace.

Last edited by knockout_artist; 02-08-2008 at 11:08 AM.
 
Old 02-08-2008, 12:56 PM   #15
dv502
Member
 
Registered: Sep 2006
Location: USA - NYC
Distribution: Whatever icon you see!
Posts: 642

Rep: Reputation: 57
Quote:
Originally Posted by knockout_artist View Post
Good Day,

I want to install a new flavour of linux on my machine.


BSD::
I have installed freebsd few times, never used it for over a day or so. I liked they it was so small and fast to install.

Gentoo::
I have only hears about. I read few notes about it I liked the way kernel is complied. Making system more efficient from beginning.

Which one should I go for??

Thanks.
I've used freebsd and openbsd in the past and they both do better jobs on the server side of things. On the desktop side, it's still behind linux.

Only you can determined which OS will give you the most or least out of it by testing. Do a dual boot of freebsd and linux and see which is easier to setup in terms of services and desktop usage.

Last edited by dv502; 02-08-2008 at 02:07 PM.
 
  


Reply



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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: Interview with Diego Pettenò, Gentoo/*BSD developer LXer Syndicated Linux News 0 04-12-2006 04:21 AM
LXer: PC-BSD : A user friendly BSD flavor geared for the desktop LXer Syndicated Linux News 0 02-04-2006 03:01 PM
LXer: DistroWatch Weekly: Fedora rescue CD, Gentoo LiveUSB, Puppy2, first look at DragonFly BSD 1.4 LXer Syndicated Linux News 0 01-09-2006 03:16 AM
Gentoo/BSD/LFS rvijay Linux From Scratch 2 01-12-2005 03:38 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 06:30 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration