1This fortune brought to you by:
2$FreeBSD$
3%
4Any user that is a member of the wheel group can use "su -" to simulate
5a root login. You can add a user to the wheel group by editing /etc/group.
6		-- Konstantinos Konstantinidis <kkonstan@duth.gr>
7%
8By pressing "Scroll Lock" you can use the arrow keys to scroll backward
9through the console output.  Press "Scroll Lock" again to turn it off.
10Don't have a "Scroll Lock" key? The "Pause / Break" key acts alike.
11%
12Can't remember if you've installed a certain port or not? Try "pkg info
13-x port_name".
14%
15Ever wonder what those numbers after command names were, as in cat(1)?  It's
16the section of the manual the man page is in.  "man man" will tell you more.
17		-- David Scheidt <dscheidt@tumbolia.com>
18%
19Forget how to spell a word or a variation of a word? Use
20
21	look portion_of_word_you_know
22		-- Dru <genesis@istar.ca>
23%
24Forget what directory you are in? Type "pwd".
25		-- Dru <genesis@istar.ca>
26%
27Forget when Easter is? Try "ncal -e". If you need the date for Orthodox
28Easter, use "ncal -o" instead.
29		-- Dru <genesis@istar.ca>
30%
31FreeBSD is started up by the program 'init'.  The first thing init does when
32starting multiuser mode (ie, starting the computer up for normal use) is to
33run the shell script /etc/rc.  By reading /etc/rc and the /etc/rc.d/ scripts,
34you can learn a lot about how the system is put together, which again will
35make you more confident about what happens when you do something with it.
36%
37Handy bash(1) prompt:  PS1="\u@\h \w \!$ "
38		-- David Scheidt <dscheidt@tumbolia.com>
39%
40Having trouble using fetch through a firewall? Try setting the environment
41variable FTP_PASSIVE_MODE to yes, and see fetch(3) for more details.
42%
43If other operating systems have damaged your Master Boot Record, you can
44reinstall it with gpart(8). See
45"man gpart" for details.
46%
47If you accidentally end up inside vi, you can quit it by pressing Escape, colon
48(:), q (q), bang (!) and pressing return.
49%
50If you do not want to get beeps in X11 (X Windows), you can turn them off with
51
52	xset b off
53%
54If you have a CD-ROM drive in your machine, you can make the CD-ROM that is
55presently inserted available by typing 'mount /cdrom' as root.  The CD-ROM
56will be available under /cdrom/.  Remember to do 'umount /cdrom' before
57removing the CD-ROM (it will usually not be possible to remove the CD-ROM
58without doing this.)
59
60Note: This tip may not work in all configurations.
61%
62If you need a reminder to leave your terminal, type "leave +hhmm" where
63"hhmm" represents in how many hours and minutes you need to leave.
64		-- Dru <genesis@istar.ca>
65%
66If you need to ask a question on the FreeBSD-questions mailing list then
67
68	https://www.FreeBSD.org/doc/en_US.ISO8859-1/articles/\
69		freebsd-questions/index.html
70
71contains lots of useful advice to help you get the best results.
72%
73If you write part of a filename in tcsh,
74pressing TAB will show you the available choices when there
75is more than one, or complete the filename if there's only one match.
76%
77If you `set watch = (0 any any)' in tcsh, you will be notified when
78someone logs in or out of your system.
79%
80If you use the C shell, add the following line to the .cshrc file in your
81home directory to prevent core files from being written to disk:
82
83	limit coredumpsize 0
84		-- Dru <genesis@istar.ca>
85%
86If you want df(1) and other commands to display disk sizes in
87kilobytes instead of 512-byte blocks, set BLOCKSIZE in your
88environment to 'K'.  You can also use 'M' for Megabytes or 'G' for
89Gigabytes.  If you want df(1) to automatically select the best size
90then use 'df -h'.
91%
92If you want to play CDs with FreeBSD, a utility for this is already included.
93Type 'cdcontrol' then 'help' to learn more.  (You may need to set the CDROM
94environment variable in order to make cdcontrol want to start.)
95%
96If you'd like to keep track of applications in the FreeBSD ports tree, take a
97look at FreshPorts;
98
99	https://www.freshports.org/
100%
101In order to make fetch (the FreeBSD downloading tool) ask for
102username/password when it encounters a password-protected web page, you can set
103the environment variable HTTP_AUTH to 'basic:*'.
104%
105In order to search for a string in some files, use 'grep' like this:
106
107	 grep "string" filename1 [filename2 filename3 ...]
108
109This will print out the lines in the files that contain the string.  grep can
110also do a lot more advanced searches - type 'man grep' for details.
111%
112In order to support national characters for European languages in tools like
113less without creating other nationalisation aspects, set the environment
114variable LC_ALL to 'en_US.UTF-8'.
115%
116"man firewall" will give advice for building a FreeBSD firewall using ipfw(8).
117		-- David Scheidt <dscheidt@tumbolia.com>
118%
119"man hier" will explain the way FreeBSD filesystems are normally laid out.
120		-- David Scheidt <dscheidt@tumbolia.com>
121%
122Man pages are divided into section depending on topic.  There are 9 different
123sections numbered from 1 (General Commands) to 9 (Kernel Developer's Manual).
124You can get an introduction to each topic by typing
125
126	man <number> intro
127
128In other words, to get the intro to general commands, type
129
130	man 1 intro
131%
132"man ports" gives many useful hints about installing FreeBSD ports.
133%
134"man security" gives very good advice on how to tune the security of your
135FreeBSD system.
136%
137"man tuning" gives some tips how to tune performance of your FreeBSD system.
138		-- David Scheidt <dscheidt@tumbolia.com>
139%
140Need to do a search in a manpage or in a file you've sent to a pager? Use
141"/search_word". To repeat the same search, type "n" for next or "p" for
142previous.
143		-- Dru <genesis@istar.ca>
144%
145Need to find the location of a program? Use "locate program_name".
146		-- Dru <genesis@istar.ca>
147%
148Need to leave your terminal for a few minutes and don't want to logout?
149Use "lock -p". When you return, use your password as the key to unlock the
150terminal.
151		-- Dru <genesis@istar.ca>
152%
153Need to quickly empty a file? Use ": > filename".
154		-- Dru <genesis@istar.ca>
155%
156Need to quickly return to your home directory? Type "cd".
157		-- Dru <genesis@istar.ca>
158%
159Need to remove all those ^M characters from a DOS file? Try
160
161	tr -d \\r < dosfile > newfile
162		-- Originally by Dru <genesis@istar.ca>
163%
164Need to see the calendar for this month? Simply type "cal".  To see the
165whole year, type "cal -y".
166		-- Dru <genesis@istar.ca>
167%
168Need to see which daemons are listening for connection requests? Use
169"sockstat -4l" for IPv4, and "sockstat -l" for IPv4 and IPv6.
170		-- Dru <genesis@istar.ca>
171%
172Need to see your routing table? Type "netstat -rn". The entry with the G
173flag is your gateway.
174		-- Dru <genesis@istar.ca>
175%
176Nice bash prompt: PS1='(\[$(tput md)\]\t <\w>\[$(tput me)\]) $(echo $?) \$ '
177		-- Mathieu <mathieu@hal.interactionvirtuelle.com>
178%
179Over quota?  "du -sh * | sort -h " will give you a sorted list of your
180directory sizes.
181		-- David Scheidt <dscheidt@tumbolia.com>
182%
183nc(1) (or netcat) is useful not only for redirecting input/output to
184TCP or UDP connections, but also for proxying them with inetd(8).
185%
186sh (the default Bourne shell in FreeBSD) supports command-line editing.  Just
187``set -o emacs'' or ``set -o vi'' to enable it. Use "<TAB>" key to complete
188paths.
189%
190Simple tcsh prompt: set prompt = '%# '
191%
192The default editor in FreeBSD is vi, which is efficient to use when you have
193learned it, but somewhat user-unfriendly.  To use ee (an easier but less
194powerful editor) instead, set the environment variable EDITOR to /usr/bin/ee
195%
196Time to change your password? Type "passwd" and follow the prompts.
197		-- Dru <genesis@istar.ca>
198%
199To change an environment variable in /bin/sh use:
200
201	$ VARIABLE="value"
202	$ export VARIABLE
203%
204To change an environment variable in tcsh you use: setenv NAME "value"
205where NAME is the name of the variable and "value" its new value.
206%
207To clear the screen, use "clear". To re-display your screen buffer, press
208the scroll lock key and use your page up button. When you're finished,
209press the scroll lock key again to get your prompt back.
210		-- Dru <genesis@istar.ca>
211%
212You can press Ctrl-L while in the shell to clear the screen.
213%
214To determine whether a file is a text file, executable, or some other type
215of file, use
216
217	file filename
218		-- Dru <genesis@istar.ca>
219%
220To do a fast search for a file, try
221
222	 locate filename
223
224locate uses a database that is updated every Saturday (assuming your computer
225is running FreeBSD at the time) to quickly find files based on name only.
226%
227To erase a line you've written at the command prompt, use "Ctrl-U".
228		-- Dru <genesis@istar.ca>
229%
230To find out the hostname associated with an IP address, use
231
232	drill -x IP_address
233		-- Dru <genesis@istar.ca>
234%
235To obtain a neat PostScript rendering of a manual page, use ``-t'' switch
236of the man(1) utility: ``man -t <topic>''.  For example:
237
238	man -t grep > grep.ps	# Save the PostScript version to a file
239or
240	man -t printf | lp	# Send the PostScript directly to printer
241%
242To quickly create an empty file, use "touch filename".
243		-- Dru <genesis@istar.ca>
244%
245To read a compressed file without having to first uncompress it, use
246"zcat" or "zless" to view it. There is also "bzcat", "bzless", "xzcat"
247and "xzless".
248		-- Dru <genesis@istar.ca>
249%
250To save disk space in your home directory, compress files you rarely
251use with "gzip filename".
252		-- Dru <genesis@istar.ca>
253%
254To search for files that match a particular name, use find(1); for example
255
256	find / -name "*GENERIC*" -ls
257
258will search '/', and all subdirectories, for files with 'GENERIC' in the name.
259      	--  Stephen Hilton <nospam@hiltonbsd.com>
260%
261To see all of the directories on your FreeBSD system, type
262
263	find / -type d | less
264
265All the files?
266
267	find / -type f | less
268%
269To see how long it takes a command to run, type the word "time" before the
270command name.
271		-- Dru <genesis@istar.ca>
272%
273To see how much disk space is left on your partitions, use
274
275	df -h
276		-- Dru <genesis@istar.ca>
277%
278To see the 10 largest files on a directory or partition, use
279
280	du -h /partition_or_directory_name | sort -rh | head
281		-- Dru <genesis@istar.ca>
282%
283To see the IP addresses currently set on your active interfaces, type
284"ifconfig -u".
285		-- Dru <genesis@istar.ca>
286%
287To see the last 10 lines of a long file, use "tail filename". To see the
288first 10 lines, use "head filename". To see new lines as they're appended
289to a file, use "tail -f filename".
290		-- Dru <genesis@istar.ca>
291%
292To see the last time that you logged in, use lastlogin(8).
293		-- Dru <genesis@istar.ca>
294%
295To see the MAC addresses of the NICs on your system, type
296
297	ifconfig -a
298		-- Dru <genesis@istar.ca>
299%
300To see the output from when your computer started, run dmesg(8).  If it has
301been replaced with other messages, look at /var/run/dmesg.boot.
302		-- Francisco Reyes <lists@natserv.com>
303%
304Want colour in your directory listings?  Use "ls -G".  "ls -F" is also useful,
305and they can be combined as "ls -FG".
306%
307Want to find a specific port, just type the following under /usr/ports
308or one its subdirectories:
309
310	make search name=<port-name>
311    or
312	make search key=<keyword>
313%
314Want to know how many words, lines, or bytes are contained in a file? Type
315"wc filename".
316		-- Dru <genesis@istar.ca>
317%
318Want to see how much virtual memory you're using? Just type "swapinfo" to
319be shown information about the usage of your swap partitions.
320%
321Want to strip UTF-8 BOM(Byte Order Mark) from given files?
322
323	sed -e '1s/^\xef\xbb\xbf//' < bomfile > newfile
324%
325Want to use sed(1) to edit a file in place?  Well, to replace every 'e' with
326an 'o', in a file named 'foo', you can do:
327
328	sed -i.bak s/e/o/g foo
329
330And you'll get a backup of the original in a file named 'foo.bak', but if you
331want no backup:
332
333	sed -i '' s/e/o/g foo
334%
335When you've made modifications to a file in vi(1) and then find that
336you can't write it, type ``<ESC>!rm -f %'' then ``:w!'' to force the
337write
338
339This won't work if you don't have write permissions to the directory
340and probably won't be suitable if you're editing through a symbolic link.
341
342If you have sudo(8) installed and permissions to use it, type
343``<ESC>w ! sudo tee %'' to force a write.
344%
345You can adjust the volume of various parts of the sound system in your
346computer by typing 'mixer <type> <volume>'.  To get a list of what you can
347adjust, just type 'mixer'.
348%
349You can automatically download and install binary packages by doing
350
351	pkg install <package>
352
353This will also automatically install the packages that are dependencies
354for the package you install (ie, the packages it needs in order to work.)
355%
356You can change the video mode on all consoles by adding something like
357the following to /etc/rc.conf:
358
359	allscreens="80x30"
360
361You can use "vidcontrol -i mode | grep T" for a list of supported text
362modes.
363		-- Konstantinos Konstantinidis <kkonstan@duth.gr>
364%
365You can disable tcsh's terminal beep if you `set nobeep'.
366%
367You can install extra packages for FreeBSD by using the ports system.
368If you have installed it, you can download, compile, and install software by
369just typing
370
371	# cd /usr/ports/<category>/<portname>
372	# make install && make clean
373
374as root.  The ports infrastructure will download the software, change it so
375it works on FreeBSD, compile it, install it, register the installation so it
376will be possible to automatically uninstall it, and clean out the temporary
377working space it used.  You can remove an installed port you decide you do not
378want after all by typing
379
380	# cd /usr/ports/<category>/<portname>
381	# make deinstall
382
383as root.
384%
385You can look through a file in a nice text-based interface by typing
386
387	less filename
388%
389You can make a log of your terminal session with script(1).
390%
391You can often get answers to your questions about FreeBSD by searching in the
392FreeBSD mailing list archives at
393
394	http://freebsd.markmail.org
395%
396You can open up a new split-screen window in (n)vi with :N or :E and then
397use ^w to switch between the two.
398%
399You can permanently set environment variables for your shell by putting them
400in a startup file for the shell.  The name of the startup file varies
401depending on the shell - csh and tcsh uses .login, bash, sh, ksh and zsh use
402.profile.  When using bash, sh, ksh or zsh, don't forget to export the
403variable.
404%
405You can press Ctrl-D to quickly exit from a shell, or logout from a
406login shell.
407		-- Konstantinos Konstantinidis <kkonstan@duth.gr>
408%
409You can press up-arrow or down-arrow to walk through a list of
410previous commands in tcsh.
411%
412You can search for documentation on a keyword by typing
413
414	apropos keyword
415%
416You can `set autologout = 30' to have tcsh log you off automatically
417if you leave the shell idle for more than 30 minutes.
418%
419You can use aliases to decrease the amount of typing you need to do to get
420commands you commonly use.  Examples of fairly popular aliases include (in
421Bourne shell style, as in /bin/sh, bash, ksh, and zsh):
422
423	alias lf="ls -FA"
424	alias ll="ls -lA"
425	alias su="su -m"
426
427In csh or tcsh, these would be
428
429	alias lf ls -FA
430	alias ll ls -lA
431	alias su su -m
432
433To remove an alias, you can usually use 'unalias aliasname'.  To list all
434aliases, you can usually type just 'alias'.
435%
436You can use /etc/make.conf to control the options used to compile software
437on this system.  Example entries are in
438/usr/share/examples/etc/make.conf and in make.conf(5).
439For options that are set for building FreeBSD's kernel and its world, see
440src.conf(5).
441%
442You can use "pkg info" to see a list of packages you have installed.
443%
444You can use the 'fetch' command to retrieve files over ftp, http or https.
445
446	 fetch https://www.FreeBSD.org/index.html
447
448will download the front page of the FreeBSD web site.
449%
450You can use "whereis" to search standard binary, manual page and source
451directories for the specified programs. This can be particularly handy
452when you are trying to find where in the ports tree an application is.
453
454Try "whereis firefox" and "whereis whereis".
455		-- Konstantinos Konstantinidis <kkonstan@duth.gr>
456%
457Want to run the same command again?
458In many shells (e.g., tcsh, zsh, bash) you can type "!!".
459%
460Want to go the directory you were just in?
461Type "cd -"
462%
463Can't delete /usr/obj? Enter "chflags -R noschg /usr/obj" to remove the
464system immutable flag for all files in /usr/obj.
465
466		-- Lars Engels <lme@FreeBSD.org>
467%
468Want to list all files of an installed package? Enter
469"pkg info -l packagename".
470
471		-- Lars Engels <lme@FreeBSD.org>
472%
473Are you looking for a package? Search for it with
474"pkg search part_of_package_name"
475
476		-- Lars Engels <lme@FreeBSD.org>
477%
478If you want to recursively copy a directory preserving file and directory
479attributes use
480"cp -a source target"
481
482		-- Lars Engels <lme@FreeBSD.org>
483%
484Do you wonder what a terminal program is doing at the moment? dd(1) does not
485show any throughput? Hit "^T" (Control + t) to send SIGINFO to the process
486and see what it is doing.
487
488		-- Lars Engels <lme@FreeBSD.org>
489%
490Do you want to know which version of FreeBSD you are running? Enter
491"freebsd-version -ku" to display kernel and userland version.
492
493		-- Lars Engels <lme@FreeBSD.org>
494%
495If you want to end one or more processes at a time using a regular expression
496enter "pkill regex".
497
498		-- Lars Engels <lme@FreeBSD.org>
499%
500Do you want to run a program directly after some other process has ended? Use
501"pwait pid && new_program"
502
503		-- Lars Engels <lme@FreeBSD.org>
504%
505When you want your users to be able to reboot or shutdown FreeBSD, add them
506to the group "operator" and they are allowed to use shutdown(8) and poweroff(8).
507
508		-- Lars Engels <lme@FreeBSD.org>
509%
510If you need to create a FAT32 formatted USB thumb drive, find out its devicename
511running dmesg(8) after inserting it. Then create an MBR schema, a single slice and
512format it:
513
514# gpart create -s MBR ${devicename}
515# gpart add -t fat32 ${devicename}
516# newfs_msdos -F 32 -L thumbdrive ${devicename}s1
517
518		-- Lars Engels <lme@FreeBSD.org>
519%
520If you want to get a sorted list of all services that are started when FreeBSD boots,
521enter "service -e".
522
523		-- Lars Engels <lme@FreeBSD.org>
524%
525To easily configure your installed FreeBSD use bsdconfig(8).
526
527		-- Lars Engels <lme@FreeBSD.org>
528%
529After you compiled and installed a new version of FreeBSD, use etcupdate(8) to merge
530configuration updates.
531Run "etcupdate extract" once when your sources match your running system, then run
532"etcupdate" after every upgrade and "etcupdate resolve" to resolve any conflicts.
533
534		-- Lars Engels <lme@FreeBSD.org>
535%
536Do you want to do a binary upgrade of your running FreeBSD installation? Use freebsd-update(8).
537
538To install updates and patches for the running branch use
539# freebsd-update fetch install
540
541To upgrade to a newer release use
542# freebsd-update upgrade -r ${name_of_release}
543
544		-- Lars Engels <lme@FreeBSD.org>
545%
546To run rc scripts in /etc/rc.d and /usr/local/etc/rc.d use service(8).
547Run "service ${name_of_rc_script} start" to start a daemon and
548"service ${name_of_rc_script} stop" to stop it.
549
550		-- Lars Engels <lme@FreeBSD.org>
551%
552If you don't want to edit /etc/rc.conf directly, use sysrc(8) to add and remove entries.
553Use "sysrc name=value" to add an entry and "sysrc -x name" to delete an entry.
554
555		-- Lars Engels <lme@FreeBSD.org>
556%
557