new to FreeBSD

I just download FreeBSD last night, I have it running in a virtual machine running on my laptop. I most use windows vista, and FreeBSD is very new to me. I was wondering if there is a web site for people who are new to FreeBSD, or site that I could learn how to use it?
 
What are/were your expectations of FreeBSD? What were you hoping to see when booting it? If your reply contains a word like 'graphical', I'll plug PC-BSD right now to save time.
 
'How to use the system' is totally dependent on what you want to use it for. Do you want to run it as a server for handling mail, web, ftp (terminal/console) or as a desktop for surfing the web and reading your email (graphical user interface)? If it's the latter, starting with PC-BSD will save you an enormous learning curve. If it's the former, you'll have to learn using the command-line. Any Unix-type command primer plus the FreeBSD Handbook will help you on your way. For an absolute beginner at command-line server administration, it will be quite a daunting journey. Most people don't arrive there from scratch.
 
Thank You.
Something like that was what I was hoping for, or anything other simple commands to get me started. I do a lot of C++ programming, and thought learning how to freeBSD would be a good choice.
 
aragon said:
I think a 4th should be added:

vi

oh yeah!

Some man pages to read:

man()
hier()

The c lib is also in man pages:
examples
malloc()
printf()

Take the time to get used to the vi bindings. You can install vim for syntax highlighting for your code. After you install vim you can run the command vimtutor and it will run you through interactively.

Your compilers can be invoked with cc and CC respectively.

cc() is an alias for gcc
CC() is an alias for g++

Take a trip to the library and pick up The UNIX Programming Environment (Kernighan, Pike)

Finally though a long read:
sh()

look for something called pipelines. pipes and redirection are a very important concept to take the time to understand with the shell.

You may also want a more modern interactive shell for your user. I recommend zsh. Though others will recommend bash or pdksh, I suggest trying them out for yourself and decided which one is the best fit.

Happy Hacking!
 
I suggest ee over vi, I have used unix for many years and still hate vi, ee will be much easier to get used to.
 
chrcol said:
I suggest ee over vi, I have used unix for many years and still hate vi, ee will be much easier to get used to.

Yes, but vi is almost always available whereas ee is not, especially on other unici like HP-UX, Solaris, AIX, Linux and a whole bunch more. It therefor pays off to learn vi.
 
SirDice said:
Yes, but vi is almost always available whereas ee is not, especially on other unici like HP-UX, Solaris, AIX, Linux and a whole bunch more. It therefor pays off to learn vi.

thats only on base setups, generally I dont use either ee or vi, as soon as possible Iinstall nano and use that, all those OS's can install nano. vi is just aweful as an editor.

but the question was specifically about FreeBSD which does have ee.
 
chrcol said:
thats only on base setups, generally I dont use either ee or vi, as soon as possible Iinstall nano and use that, all those OS's can install nano. vi is just aweful as an editor.

but the question was specifically about FreeBSD which does have ee.

ok. No need for a holy war. nano/pico, joe, and emacs are other preferred editors.

I used ee as well when I was new. I am happy I took the time to learn vi. I beg to differ as I find it to be an elegant editor. It is optional unless your gonna pursue a career as an admin. If you are a touch typist it is also nice.

The main point people new to FreeBSD and other open source softwares is that it is all about choice. Your preference may become negated in the argument but it is nice to know we both have the freedom to choose which tools make us more productive.
 
ED is the STANDARD FNORDING text editor, you simian turd-flingers

SirDice said:
Yes, but vi is almost always available whereas ee is not, especially on other unici like HP-UX, Solaris, AIX, Linux and a whole bunch more. It therefor pays off to learn vi.

Do I really need to do it?

Edited to say:

I was once very new to the unix/linux/BSD world, & while looking for things to do, I discovered the notion of reading web-pages made of text with www/lynx, sending e-mail to fellow meat popsicles with . . . well mail(1) (or one of a million others like mail/elm), playing in MUDs with something like net/tintin++, while waiting for stuff to compile (and hooray for the 486-DX4-100 with 64M of RAM).
 
UNIXgod said:
ok. No need for a holy war. nano/pico, joe, and emacs are other preferred editors.

I used ee as well when I was new. I am happy I took the time to learn vi. I beg to differ as I find it to be an elegant editor. It is optional unless your gonna pursue a career as an admin. If you are a touch typist it is also nice.

The main point people new to FreeBSD and other open source softwares is that it is all about choice. Your preference may become negated in the argument but it is nice to know we both have the freedom to choose which tools make us more productive.

I agree on what you saying about choice. My reasoning for ee is it behaves much more like a windows editor than vi does, you open vi and cannot even start editing straight away so is more likely to cause frustration and confusion the first time its used and as such has a steeper learning curve.
 
Why you are not starting with something easier? If you are a simple Windows user start with a linux distro like Debian or Fedora or something like that?
They have gui, gui setup but they need to write also commands on terminal. Just to start understanding the commands and the Unix Philosophy with simple steps. Hudge steps make you create a mess on your mind.
 
chrcol said:
I agree on what you saying about choice. My reasoning for ee is it behaves much more like a windows editor than vi does, you open vi and cannot even start editing straight away so is more likely to cause frustration and confusion the first time its used and as such has a steeper learning curve.

I agree. I was just being diplomatic. ee is a great tool at the beginning. Especially when your just beginning the journey.

sk8harddiefast said:
Why you are not starting with something easier? If you are a simple Windows user start with a linux distro like Debian or Fedora or something like that?
They have gui, gui setup but they need to write also commands on terminal. Just to start understanding the commands and the Unix Philosophy with simple steps. Hudge steps make you create a mess on your mind.

The OP doesn't have brain damage. No shilling penguins here! Is it really that hard to install xorg? I hear PC-BSD is a nice project.
 
Back
Top