Gentoo Linux
Latest news, Help & Support, or discuss issues with *nix and Linspire systems.

Moderators: Management, Forum Experts

Gentoo Linux

Postby Weaver on Wed Jan 15, 2003 7:14 pm

Anybody played around with Gentoo Linux?

http://www.gentoo.org/index.xml

-Weaver
Public Keys

The primary purpose of the DATA statement is to give names to constants; instead of referring to pi as 3.141592653589793 at every appearance, the variable PI can be given that value with a DATA statement and used instead of the longer form of the constant. This also simplifies modifying the program, should the value of pi change.
-- FORTRAN manual for Xerox Computers
User avatar
Weaver
PROfessional Member
 
Posts: 2240
Joined: Tue Jun 18, 2002 7:05 pm
Location: /home/weaver/

Postby lilwip on Wed Jan 15, 2003 8:12 pm

Guy I work with has it on all his machines. I have burned the install cd's but have not installed it yet. Am thinking about wiping my mandrake install and loading gentto though.
=====

Image
User avatar
lilwip
PROfessional Member
 
Posts: 1419
Joined: Thu Aug 08, 2002 12:15 pm
Location: Independence, Missouri

Postby epec254 on Wed Jan 15, 2003 10:10 pm

I think I will setup a Linux box when I get my new PC. I think Gentoo looks nice, but the install process ain't the easiest. Which could be a good thing - learn from errors (or lack thereof)
Last edited by epec254 on Thu Jan 16, 2003 5:55 pm, edited 1 time in total.
VP - Technology
epec254
VP - Technology
 
Posts: 1702
Joined: Mon Jul 08, 2002 8:31 am
Location: USA

Postby lilwip on Thu Jan 16, 2003 11:03 am

Image

I love this shot....... lol
=====

Image
User avatar
lilwip
PROfessional Member
 
Posts: 1419
Joined: Thu Aug 08, 2002 12:15 pm
Location: Independence, Missouri

Postby Weaver on Thu Jan 16, 2003 3:55 pm

I know what their site says, but what does he (your coworker) like about it?

-Weaver
Public Keys

The primary purpose of the DATA statement is to give names to constants; instead of referring to pi as 3.141592653589793 at every appearance, the variable PI can be given that value with a DATA statement and used instead of the longer form of the constant. This also simplifies modifying the program, should the value of pi change.
-- FORTRAN manual for Xerox Computers
User avatar
Weaver
PROfessional Member
 
Posts: 2240
Joined: Tue Jun 18, 2002 7:05 pm
Location: /home/weaver/

Apologize for the delay...

Postby chuckx on Wed May 14, 2003 11:41 pm

I'm Shannon's coworker, and to answer your question...

Overall, Gentoo's selling point is it's package management system. It's similar to Debian's dpkg, but is source-based. Dependencies are automatically handled and it's very easy to keep your system up to date. The best way to think about Gentoo is as an automated LFS (Linux From Scratch).

There are a couple things to keep in mind when considering Gentoo.

First, the process of compiling an entire OS installation can be very enlightening, but it can also be time consuming. Also, the installation procedure is very bare bones. It's more a list of commands to run than a typical installation application.

Last, if you have a slow machine and/or a slow internet connection, Gentoo may not be the best choice. Downloading and compiling applications and libraries can take a long time (KDE is especially notorious in this respect).

Contrary to what Shannon said, I do not run Gentoo on all my machines. When I want to setup a Linux installation and I'm working with a slow machine, I use Debian.

When dealing with servers, if Linux is necessary, I once again use Debian. For routers and simple server systems, I am now leaning towards OpenBSD.

For desktop systems, I use either Windows 2000/XP or Gentoo Linux.

My current home setup includes:
Pentium 4 2.6 GHz Laptop - Gentoo
Athlon XP 2200 Desktop - Windows XP
Pentium 200 MHz Server - OpenBSD

--
chuckx
chuckx
PRO Level 2
PRO Level 2
 
Posts: 10
Joined: Wed Jan 22, 2003 10:36 am

Postby SCJwl on Thu May 15, 2003 8:45 am

Good info chuck! It always helps to have somebody around that's experienced in other things. :yesnod:
I believe that imagination is stronger than knowledge - myth is more potent than history - dreams are more powerful than facts - hope always triumphs over experience - laughter is the cure for grief - love is stronger than death
Robert Fulghum


Image
User avatar
SCJwl
PROfessional Member
 
Posts: 6559
Joined: Mon Mar 11, 2002 11:45 am
Location: South Carolina

Postby Weaver on Thu May 15, 2003 8:27 pm

What is your reason for moving to OpenBSD for simple server and routing purposes? I have heard that there are certain enhancements (differences) to certain aspects of the network stacks in the BSD's. Sometimes for the best, sometimes for the worst. Thanks.

-Weaver
Public Keys

The primary purpose of the DATA statement is to give names to constants; instead of referring to pi as 3.141592653589793 at every appearance, the variable PI can be given that value with a DATA statement and used instead of the longer form of the constant. This also simplifies modifying the program, should the value of pi change.
-- FORTRAN manual for Xerox Computers
User avatar
Weaver
PROfessional Member
 
Posts: 2240
Joined: Tue Jun 18, 2002 7:05 pm
Location: /home/weaver/

OpenBSD

Postby chuckx on Sat May 17, 2003 6:55 pm

The main reason I originally tried OpenBSD is because I just wanted to play with something new. The other factor which drew me towards it are the developers radical bent on keeping their software secure (this is the same group that created OpenSSH).

In any case, when you install a BSD system, you definitely get the sense that it's a more "integrated" UNIX environement. The man documentation is especially good as compared to a typical Linux system (ie. 'man afterboot' gives you a thorough explanation of things that should be done once you get your system up and running).

I like the default install of OpenBSD. It's very minimal and almost guaranteed to be secure. From that solid starting point, you can install additional software. You can do it manually (ie. download the source archive, uncompress and 'configure && make && make install') or browse the ports tree in /usr/ports for software (ie. 'cd /usr/ports/category/application && make && make install').

The filesystem layout is very logical. The packages included in the base intall are in /usr. Things you install via the ports system go into /usr/local. The init system is simple (but very different from the System V init system most Linux distributions use).

OpenBSD is definitely for those who are experienced with the Unix environment. There are no GUI configuration tools. If you know how to get around and configure things from the command line in Linux, getting familiar with a BSD environment should be relatively easy.

I haven't done any performance testing, so I can't comment on how the network stacks of each OS compares.

The only problem I've had is the upgrade path. No hand holding is done here. Patches are distributed in source format, so you need to get familiar with their build system to upgrade your system. If you wait for major releases, upgrading is pretty simple (boot off CD, choose the upgrade option, then read the documentation to make the necessary changes in /etc by hand).

Overall, OpenBSD is just a nice, compact UNIX like system.

--
chuckx
chuckx
PRO Level 2
PRO Level 2
 
Posts: 10
Joined: Wed Jan 22, 2003 10:36 am

Postby Weaver on Sun May 18, 2003 10:20 am

No problem there, my mother was a command line. I think you have convinced me to give OpenBSD a try. The one question I have for you though it this, how does one go about updating the kernel? Are there as many people working future kernel releases for BSD as there are for GNU Linux? Secondly, how does NetBSD fit into the BSD equation? My buddy is always raving about that, I tell him that I'll stick to Slackware and Debian. Thanks.

-Weaver
Public Keys

The primary purpose of the DATA statement is to give names to constants; instead of referring to pi as 3.141592653589793 at every appearance, the variable PI can be given that value with a DATA statement and used instead of the longer form of the constant. This also simplifies modifying the program, should the value of pi change.
-- FORTRAN manual for Xerox Computers
User avatar
Weaver
PROfessional Member
 
Posts: 2240
Joined: Tue Jun 18, 2002 7:05 pm
Location: /home/weaver/

Next

Return to Unix & Linux

Who is online

Users browsing this forum: No registered users and 0 guests