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.

Linux Forum ArticlesLinux ForumsLinux Forum DownloadsLinux HostsFree MagazinesJobs
Home|Register|FAQ|Member List|Calendar|Unanswered Posts|Forum Rules|Today's Posts|Advanced Search|
SEARCH FOR IN
Go Back   Linux Forums > The Community > Everything BSD
Reload this Page fresh freebsd install
Linux Forums
Linux Forums
Welcome To The Linux Forums!
Welcome to Linux Forums. We pride ourselves in being one of the largest Linux communities on the web, we encourage you to REGISTER on our forums and participate in the community. There are over 150,000 members ready to answer your questions. JOINING US today will allow you to make new posts, get support, send messages to other members and submit downloads to our downloads directory and many other great features!

Everything BSD For all discussions regarding Free/NetBSD and OpenBSD.

Reply
 
Thread Tools Display Modes
Old 02-15-2005   #1 (permalink)
Linux Engineer
 
adrenaline's Avatar
 
Join Date: Aug 2004
Location: Seattle, Washington
Posts: 1,052
fresh freebsd install

I installed Freebsd last night. I did all the easy do it for me options since I am not familiar with BSD yet. I must say this was the easiest install ever. It only took about 15 min. at the most and I was in some window manager I have never seen but I managed to get to Mozilla and surf. That is all I had time for but I would like to change window managers. Can anybody tell me where to change window managers. There is a /etc/X11 but when I go there it is empty.

So far I am impressed with the speed.
Mike
__________________
Some people have told me they don't think a fat penguin really embodies the grace of Linux, which just tells me they have never seen a angry penguin charging at them in excess of 100mph. They'd be a lot more careful about what they say if they had.
-- Linus Torvalds
adrenaline is offline   Reply With Quote
Old 02-15-2005   #2 (permalink)
Linux Engineer
 
Join Date: Aug 2004
Posts: 826
Re: fresh freebsd install

Quote:
Originally Posted by adrenaline
It only took about 15 min. at the most and I was in some window manager I have never seen but I managed to get to Mozilla and surf.
It was probably twm.
Quote:
Originally Posted by adrenaline
Can anybody tell me where to change window managers.
Code:
cd
vi .xinitrc
Then in this file add any window manager you'd like to start, ie "fluxbox" for fluxbox, "startkde" for KDE, "exec gnome-session" for Gnome, etc. You do, of course, have to have these installed first.
Quote:
Originally Posted by adrenaline
There is a /etc/X11 but when I go there it is empty.
This means you have not configured X yet. Do xorgcfg -textmode as root. Even if X is already working it's best to get it working with the right driver, etc.

You're going to find you're gonna spend a lot of time configuring FreeBSD - it's not pre-configured for regular use like most Linux distros are.

Good luck, and tell me how it goes.
sether is offline   Reply With Quote
Old 02-15-2005   #3 (permalink)
Linux Engineer
 
adrenaline's Avatar
 
Join Date: Aug 2004
Location: Seattle, Washington
Posts: 1,052
Re: fresh freebsd install

Quote:
Originally Posted by sether

You're going to find you're gonna spend a lot of time configuring FreeBSD - it's not pre-configured for regular use like most Linux distros are.

Good luck, and tell me how it goes.
Thanks for the speedy reply.
I will definitely keep you informed.
I am at work and can't play with it till tonight. I am not scared of a little configuration. I use slackware too.
I am assuming I will have to use something called ports to get gnome or kde or windowmaker. I usually use windowmaker but I download kde and gnome libs. Will I get these from ports and if so can you give me a brief overview of what that is and how to use it.
Thanks
Mike
__________________
Some people have told me they don't think a fat penguin really embodies the grace of Linux, which just tells me they have never seen a angry penguin charging at them in excess of 100mph. They'd be a lot more careful about what they say if they had.
-- Linus Torvalds
adrenaline is offline   Reply With Quote
Old 02-15-2005   #4 (permalink)
Linux Guru
 
sarumont's Avatar
 
Join Date: Apr 2003
Location: /dev/urandom
Posts: 3,662
Re: fresh freebsd install

Quote:
Originally Posted by adrenaline
Quote:
Originally Posted by sether

You're going to find you're gonna spend a lot of time configuring FreeBSD - it's not pre-configured for regular use like most Linux distros are.

Good luck, and tell me how it goes.
Thanks for the speedy reply.
I will definitely keep you informed.
I am at work and can't play with it till tonight. I am not scared of a little configuration. I use slackware too.
I am assuming I will have to use something called ports to get gnome or kde or windowmaker. I usually use windowmaker but I download kde and gnome libs. Will I get these from ports and if so can you give me a brief overview of what that is and how to use it.
Thanks
Mike
Ports is very intuitive and pretty easy to use. You first have to grab the ports tree and put it in /usr/. This can be done (initially it's the best way) by grabbing a tarballed snapshot from a freebsd ftp and untarring it in your /usr directory. From here, you use cvsup to update your tree. This is well documented on FBSD's site.

To use ports, just cd to the directory of the port (e.g.: cd /usr/ports/shells/bash) and type make. Then su and make install. Bam. It resolves dependencies like portage (or rather...portage resolves dependencies like ports), so you'll get everything that you need.
sarumont is offline   Reply With Quote
Old 02-15-2005   #5 (permalink)
Linux Engineer
 
Join Date: Aug 2004
Posts: 826
Yes, ports are indeed cool. Read this entire section:
http://www5.us.freebsd.org/doc/en_US...ook/ports.html

It well tell you a lot.

But for KDE or Gnome, it'll take a few hours to get those compiled, so use the package system:
Code:
pkg_add -r kde
or
Code:
pkg_add -r gnome
as root.
sether is offline   Reply With Quote
Old 02-15-2005   #6 (permalink)
Linux Engineer
 
Join Date: Aug 2004
Posts: 826
Re: fresh freebsd install

Quote:
Originally Posted by sarumont
Ports is very intuitive and pretty easy to use. You first have to grab the ports tree and put it in /usr/. This can be done (initially it's the best way) by grabbing a tarballed snapshot from a freebsd ftp and untarring it in your /usr directory.
Using sysinstall might be easier:
Quote:
Sysinstall Method

This method involves using sysinstall again to manually install the Ports Collection.

1.

As root, run sysinstall (/stand/sysinstall in FreeBSD versions older than 5.2) as shown below:

# sysinstall

2.

Scroll down and select Configure, press Enter.
3.

Scroll down and select Distributions, press Enter.
4.

Scroll down to ports, press Space.
5.

Scroll up to Exit, press Enter.
6.

Select your desired installation media, such as CDROM, FTP, and so on.
7.

Scroll up to Exit and press Enter.
8.

Press X to exit sysinstall.
sether is offline   Reply With Quote
Old 02-15-2005   #7 (permalink)
Linux Engineer
 
adrenaline's Avatar
 
Join Date: Aug 2004
Location: Seattle, Washington
Posts: 1,052
Quote:
Originally Posted by sether
Yes, ports are indeed cool. Read this entire section:
http://www5.us.freebsd.org/doc/en_US...ook/ports.html

It well tell you a lot.

But for KDE or Gnome, it'll take a few hours to get those compiled, so use the package system:
Code:
pkg_add -r kde
or
Code:
pkg_add -r gnome
as root.
Do I need to do the ports thing before I get kde or can I get my windows managers then do the ports thing or is ports even a necessity? can I buld packages as I would in Linux?

Sether I printed out your flow chart I will try that tonight.
Thanks
__________________
Some people have told me they don't think a fat penguin really embodies the grace of Linux, which just tells me they have never seen a angry penguin charging at them in excess of 100mph. They'd be a lot more careful about what they say if they had.
-- Linus Torvalds
adrenaline is offline   Reply With Quote
Old 02-15-2005   #8 (permalink)
Linux Engineer
 
Join Date: Aug 2004
Posts: 826
Quote:
Originally Posted by adrenaline
Quote:
Originally Posted by sether
Yes, ports are indeed cool. Read this entire section:
http://www5.us.freebsd.org/doc/en_US...ook/ports.html

It well tell you a lot.

But for KDE or Gnome, it'll take a few hours to get those compiled, so use the package system:
Code:
pkg_add -r kde
or
Code:
pkg_add -r gnome
as root.
Do I need to do the ports thing before I get kde or can I get my windows managers then do the ports thing or is ports even a necessity? can I buld packages as I would in Linux?

Sether I printed out your flow chart I will try that tonight.
Thanks
Read the link I posted and you'll be well informed.

Packages and Ports are two different systems for obtaining and installing software. You choose which one to use, but if you want to save time on large things like KDE, use a package for that.
sether is offline   Reply With Quote
Old 02-15-2005   #9 (permalink)
Linux Engineer
 
adrenaline's Avatar
 
Join Date: Aug 2004
Location: Seattle, Washington
Posts: 1,052
OK I will read that tonight and I will get back to you.
Thanks Sether
Mike
__________________
Some people have told me they don't think a fat penguin really embodies the grace of Linux, which just tells me they have never seen a angry penguin charging at them in excess of 100mph. They'd be a lot more careful about what they say if they had.
-- Linus Torvalds
adrenaline 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
Cisco News
Receive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business.
subscribe
Systems Management News, the newspaper for IT systems administration and data center managers!
Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field.
subscribe
The Enterprise Newsweekly
eWeek is the essential technology information source for builders of e-business.
subscribe
Oracle Magazine
Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company.
subscribe
Total Telecom
Total Telecom is "The Economist of the communications industry".
subscribe
More free magazines »



All times are GMT. The time now is 07:59 PM.




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

Content Relevant URLs by vBSEO 3.2.0