|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stay one step ahead of the competition. Evaluate and give feedback
on some of the hottest web development tools on the market today.
Make your opinion heard! Click
Here
|
|
#1
|
|||
|
|||
|
Just installed
I just installed FreeBSD using Virtual PC running on a Windows XP Pro system. It asks me for the full pathname of shell so I type /bin/sh and now I am sitting at a new line that has #
is this the command prompt or what? How can I get something off the internet? |
|
#2
|
|||
|
|||
|
details?
yeah that is a command prompt Version? connection? what did you Install? |
|
#3
|
||||
|
||||
|
Hi, why don't you just read a book? You can find plenty at http://www.freebsd.org/publish.html#books
Or at least this good doc -> http://andrsn.stanford.edu/FreeBSD/newuser.html and also http://www.freebsd.org/doc/en_US.IS....html#RUNNING-X if you want something graphic (and installed xserver).
__________________
My blog about OpenSource Databases PDF tutorials about OSS databases, DBMonster ... Please contribute to Open Source Development, fill bug reports!!! Developer Shed eSupport Commented my.ini/my.cnf (PLEASE ADD YOUR OWN CONFIG TRICK) Understanding SQL Joins An introduction to database normalization Natural or Surrogate key Custom ordering for your results Correlated and uncorrelated subqueries Last edited by pabloj : January 9th, 2002 at 02:46 AM. |
|
#4
|
|||
|
|||
|
Thanks,
The thing I am looking for is that I want a place to find the common commands. I need to find where I installed things, like Apache. Last edited by mizzory : January 9th, 2002 at 08:34 AM. |
|
#5
|
|||
|
|||
|
Well, the command apropos is good for finding commands. Say you want to know how much memory you have on your HD but don't know which command to use, then you type 'apropos memory' and you get a list with all the regula commands dealing with memory. It allso give you a short explination of what the command do, so when you find that the command df seem to be what you are looking for you just look in the manual ('man df') and find out you just type df -h to get the avalible and used space in human readable form.
This is a good place to start for anything. First search the command with apropos, then read about it using man. As for finding programs and directories you can either use the command locate: locate apache The locate command use a database which you need to update... all of this is in the manual, so just do man locate and it will tell you how to update the database. Or you could use find: find / -name apache -print The / tells find to search from / and all directories below that... in other words, the whole drive which might be unncessesary if you have an idea where the thing might be, you could just aswell typed find /etc -name apache -print to search the /etc directory. Allso, here you have a link where is a good place to start if you are new to BSD. It explains how you get the basic stuff up and working: daemonnews "new to BSD" area /Fjodor Last edited by Fjodor : January 9th, 2002 at 11:59 AM. |
![]() |
| Viewing: Dev Shed Forums > Operating Systems > BSD Help > Just installed |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|