Freebsd Tutorial: Index
Freebsd Tutorial: Index
Index
Introduction Why FreeBSD Accounts Information Creating a User Account for Yourself Some Basic FreeBSD Commands Command Line Editing Using vi as an Editor Post-installation Configuration Short Example Using FreeBSD Commands SSH and SCP instead of Telnet and FTP Getting FreeBSD 4.2 Files and Others pkg_add: Adding Packages or Ports by Hand Network Information ifconfig rc.conf Stopping and Starting the Network Stopping and Starting Services Installation Notes Slices and Partitions Distribution Sets Quick Installation Guide (Using CD-ROM) The FreeBSD Directory Structure A Few Differences from Linux
Introduction
Many of the topics covered in this short session will be discussed in more detail in the Monday evening FreeBSD session.
Accounts Information
ACCOUNT: PASSWORD: root Given in class
PLEASE!Do not change the root password.This will cause numerous problems throughout the workshop. The machine in front of you is yours for the duration of the workshop.
IF YOU CHANGE THIS PASSWORD YOUR MACHINE MAY BE REINSTALLED FROM SCRATCH!
The first command created the account exim with no home directory and a UID of 90. The second command created your personal userid that you will use during the rest of this workshop, automatically setup a home directory for the userid ("-m" option), placed the user in the wheel and exim groups, and set the default shell to be bash. By placing your user in the wheel group this allows you to become the superuser root by using the su command. For more information on the pw command type man pw at the prompt.
2 of 9
05/05/02 17:38
grep
If you change the default shell for root it is possible to create a situation where you cannot get a a shell if your machines environment becomes damaged.
Using vi as an Editor
If you are unfamiliar with the vi text editor, here is the absolute minimum set of commands you need to know. Beware: when you start vi it is in command mode, so anything you type is interpreted as a command, not text to be entered! We have included additional commands and a longer vi tutorial as a handout for the workshop.
vi <filename> ....
[ESC]
[ESC]
.... [ESC]
dd hjkl
-- edit a file -- insert text before cursor position -- append text to end of current line -- delete character under cursor -- delete whole line -- save and exit -- exit without saving -- save and exit -- insert a line after cursor position -- delete the current line -- left|down|up|right (preferred)
Post-installation Configuration
There is a menu-based system you can use for configuring the system - setting IP address, configuring hostname, adding further distribution sets and packages, adding users etc: # /stand/sysinstall However, you may find that some of this is quicker to do from the command line, some of which is explained below.
3 of 9
05/05/02 17:38
Take a look at whats in /usr/local/src (which is nothing): ls ls -la (long listing and all files - note "." files)
scp -r * user@host:/path/.
-- Connect to host using an encrypted session -- Copy filename to path at host using username for authentication -- Copy all files and all subdirectories to host under path specified. This is much more difficult using ftp. -- Copy file from host authenticating with user and put it in path with filename. -- Copy filename from hostX authenticating as userX to hostY authenticating as userY. This is something that you cannot do with ftp.
4 of 9
05/05/02 17:38
Note that the configuration files for third-party software are in /usr/local/etc, and scripts to start daemons are installed under /usr/local/etc/rc.d You can also compile packages directly from the source code, if you have the "ports" distribution installed (not installed in this workshop). The ports system automatically fetches the source file via FTP or anonCVS, applies any FreeBSD-specific patches, and compiles and installs the code. A "package" is really just a "port" which has been compiled.
# cd /usr/ports/shells/bash # make # make install # make clean
Sometimes you will find that a "port" exists, but no corresponding binary "package". This is usually because of licensing or export restrictions. The "port" is always able to be distributed because it does not include any software, only instructions on how to fetch and compile the software from somewhere else. You can query installed packages, or package .tgz files, using pkg_info.
pkg_info -aI pkg_info joe-2.8_3 pkg_info -L joe-2.8_3 man pkg_info
-- list all installed packages (one line per package) -- description of package -- list all files in package -- read this for more details Back to Top
Network Information
ifconfig
This is the command you use to interactively start and stop network interfaces and to define how they run. You need root access to use this command.
rc.conf
The main system configuration file is /etc/rc.conf. This file is edited by /stand/sysinstall, but its perfectly OK to edit this by hand. It is in this file that you configure the hostname, IP address for each interface, and so on. Changes you make in here wont take effect until you reboot.
defaultrouter="80.248.72.126" hostname="host1.t1.ws.afnog.org" ifconfig_ed0="inet 80.248.72.1 netmask 255.255.255.248" # On hosts where you dont want sendmail to accept incoming port 25 # (but you still want daemons to be able to send outgoing mail): sendmail_flags="-q30m"
The sendmail flag is not set in this workshop. The full list of options, and their default values, can be found in /etc/defaults/rc.conf - but dont edit this file, edit /etc/rc.conf instead. This makes it easier to upgrade your system to a later version of FreeBSD.
5 of 9
05/05/02 17:38
ifconfig This displays your network interface status. Notice that "ed0" (Fast Ethernet) has an IP address assigned (via DHCP). Not that lo0 as an address as well. This is your loopback device. To bring ed0 down type: ifconfig ed0 down Now to bring it back up just type: ifconfig ed0 up There is quite a bit more to ifconfig and well discuss this during the Monday evening FreeBSD session as well, or you can type "man ifconfig" for more information. Review the "rc.conf" section above as well.
Installation Notes
Slices and Partitions
What MS-DOS calls partitions are called "slices" by FreeBSD. FreeBSD almost always sits in a single slice. The FreeBSD slice is then divided into "partitions". Example:
/dev/ad0 -- first ATA/ATAPI (IDE) hard drive /dev/ad0s1 -- first slice (MSDOS "partition") on first IDE hard drive /dev/ad0s1a -- first partition in this FreeBSD slice /dev/ad0s1b -- second partition in this FreeBSD slice /dev/ad0s1e -- third (usable) partition
For historical reasons, partitions c and d are not used. We strongly recommend you configure your partitions as:
a: root filesystem (/) b: swap space e,f...: other filesystems
All "large" parts of the filesystem should be separate from the root, so that the root itself remains small (less likely to get corrupted). This means at least /usr and /var, and possibly also /home if you have user accounts. The convention we have used is to create a resonable sized /var partition (for variable data like
6 of 9 05/05/02 17:38
logs), then we have put all remaining disk space in a partition called /usr, and put home directories under that (/usr/home/username)
Distribution sets
FreeBSD comes in several parts: "distribution sets" are the parts of the base system. The "bin" distribution is the minimum you can install. However there are additional distributions such as "manpages" and "XF86336". "ports" and "packages" are third-party software, not really part of FreeBSD itself, but supplied alongside it. "ports" build from source code, whilst "packages" are ports which have already been compiled and are ready to install.
Most of the file systems in /etc/fstab are mounted automatically at boot time from the script rc(8) unless they contain the noauto option. Consult the fstab(5) manual page for more information on the format of the /etc/fstab file and the options it contains. A complete description of the filesystem hierarchy is available in hier(7). For now, a brief overview of the most common directories will suffice. Directory Description / Root directory of the filesystem. /bin/ User utilities fundamental to both single-user and multi-user environments. /boot/ Programs and configuration files used during operating system bootstrap. /boot/defaults/ Default bootstrapping configuration files; see loader.conf(5). /dev/ Device nodes; see intro(4). /etc/ System configuration files and scripts. /etc/defaults/ Default system configuration files; see rc(8). /etc/mail/ Configuration files for mail transport agents such as sendmail(8). /etc/namedb/ named configuration files; see named(8). /etc/periodic/ Scripts that are run daily, weekly, and monthly, via cron(8); see periodic(8). /etc/ppp/ ppp configuration files; see ppp(8). /mnt/ Empty directory commonly used by system administrators as a temporary mount point. /proc/ Process file system; see procfs(5), mount_procfs(8). /root/ Home directory for the root account. /sbin/ System programs and administration utilities fundamental to both single-user and multi-user environments. /stand/ Programs used in a standalone environment. /tmp/ Temporary files, usually a mfs(8) memory-based filesystem (the contents of /tmp are usually NOT preserved across a system reboot). /usr/ The majority of user utilities and applications. /usr/bin/ Common utilities, programming tools, and applications. /usr/include/ Standard C include files. /usr/lib/ Archive libraries. /usr/libdata/ Miscellaneous utility data files. /usr/libexec/ System daemons & system utilities (executed by other programs). /usr/local/ Local executables, libraries, etc. Also used as the default destination for the FreeBSD ports framework. Within /usr/local , the general layout sketched out by hier(7) for /usr should be used. Exceptions are the man directory is directly under /usr/local rather than under /usr/local/share. Ports documentation is in share/doc/port. /usr/obj/ Architecture-specific target tree produced by building the /usr/src tree. /usr/ports The FreeBSD ports collection (optional). /usr/sbin/ System daemons & system utilities (executed by users). /usr/share/ Architecture-independent files. /usr/src/ BSD and/or local source files. /usr/X11R6/ X11R6 distribution executables, libraries, etc (optional). /var/ Multi-purpose log, temporary, transient, and spool files. /var/log/ Miscellaneous system log files. /var/mail/ User mailbox files. /var/spool/ Miscellaneous printer and mail system spooling directories. /var/tmp/ Temporary files that are kept between system reboots. /var/yp NIS maps.
Other key differences between Linux and FreeBSD center around the naming of devices and some of the configuration files:
Linux: eth0 = first ethernet device (of any type) FreeBSD: ed0 = first NE2000 device, ep0 = first 3Com 3c509, etc. Linux: COM1 serial port = /dev/ttyS0 FreeBSD: COM1 serial port = /dev/cuaa0 (call out) or /dev/ttyd0 (call in) Linux: /etc/inittab configures incoming serial connections FreeBSD: /etc/ttys configures incoming serial connections Back to Top
Hervey Allen Joel Jaeggli Liberal borrowing from Brian Candler May 5, 2002
9 of 9
05/05/02 17:38