How to get X11, Xorg, and Gnome on after install from 8.0-RELEASE-i386-disc1.iso?

I did the install and I was wondering how exactly I would install those three from just the shell? I had an error during install because I don't have a floppy drive and it told me that it was going to restart because of "Signal 11" or something like that. I tried doing what the "Installing X11" page said but it even said that the /usr/ports/ etc... etc... directory didn't even exist. SO now, I always just boot into a shell.


Please help! Noob to BSD in general here! :P :\ :)
 
Gogeden said:
I did the install and I was wondering how exactly I would install those three from just the shell? I had an error during install because I don't have a floppy drive and it told me that it was going to restart because of "Signal 11" or something like that. I tried doing what the "Installing X11" page said but it even said that the /usr/ports/ etc... etc... directory didn't even exist. SO now, I always just boot into a shell.


Please help! Noob to BSD in general here! :P :\ :)

If you decided to use portsnap then:
portsnap fetch
portsnap extract
cd /usr/ports/x11/xorg
make install clean
or use portmaster, portupgrade...
 
Gogeden said:
it told me that it was going to restart because of "Signal 11" or something like that.
Signal 11 means something crashed horribly. Signal 11 is SIGSEGV or Segmentation Violation.
 
I'm a newbie too. :) FreeBSD rocks! Installing a GUI (eg fluxbox) is actually pretty quick:

Long version(not that long):
Short version (my notes):
Code:
# pkg_add -r xorg
#ee /etc/rc.conf
  (add the following lines)
 hald_enable="YES"
 dbus_enable="YES"
# Xorg -configure
# cp xorg.conf.new /etc/X11/xorg.conf
# pkg_add -r fluxbox
# shutdown -r now
# startx
You might need a couple of extra steps, such as changing the defaults in xorg.conf or adding a module for your video chip, but that's what the "long version" talks about.
 
So am I getting these packages from the internet, disc, or my hardrive? Where are is the source of these?
 
Gogeden said:
So am I getting these packages from the internet, disc, or my hardrive? Where are is the source of these?

pkg_add -r will retrieve the package from the Internet. If you want to install the packages on the cd, simply mount the cd and navigate to the packages directory. A pkg_add (without the -r) will install the package from that location.
 
Alright, and how would I connect to the internet from the command prompt? I am using a wireless signal. Would that pose as a problem?
 
Last time I checked, The Handbook was still free, and correct when it comes to installing ports and packages. Free knowledge!
 
Gogeden said:
Alright, and how would I connect to the internet from the command prompt? I am using a wireless signal. Would that pose as a problem?
Apart from browsing, I do most of my internet stuff from the command line. A working system is usually already connected to the internet. Wireless is a little more complicated, but it should be the same. It's like a telephone where you don't actually know if there is somebody on the other end until you ask. :) Type "ping google.com" to see if you're on. Type "ifconfig" to see what interface has what address. Lots of internet functions such as FTP, telnet, and ping work right out of the box from the CLI.

PS: DutchDaemon is right, The Handbook is free (and online!). :) It's not like a lot of man pages which are often either incomplete or overly detailed - it's really easy to read and follow for a beginner.
 
Back
Top