Unix Toolbox: CB - Vu/unixtoolbox - XHTML .PDF .Book - PDF C@CB - Vu
Unix Toolbox: CB - Vu/unixtoolbox - XHTML .PDF .Book - PDF C@CB - Vu
This document is a collection of Unix/Linux/BSD commands which are useful for IT work or for advanced users. The reader is supposed to know what s/he is doing.
1. System . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2 2. Processes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 3. File System . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 4. Network . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5. SSH SCP 7. RSYNC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6. VPN with SSH . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8. SUDO . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9. Encrypt Files 10. SSL Certificates . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11. CVS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12. SVN . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13. Useful Commands . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14. Install Software . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15. Convert Media . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16. Printing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17. Databases . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18. Disk Quota 20. Scripting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19. Shells . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21. Programming . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22. Online Help . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 19 21 23 25 26 26 28 30 32 37 38 39 39 41 42 44 46 48
Unix Toolbox revision 10.1 The latest version of this document can be found at cb.vu/unixtoolbox.xhtml. Replace .xhtml on the link with .pdf for the PDF version and with .book.pdf for the booklet version. On a duplex printer the booklet will create a small book ready to bind. Comments to [email protected] are welcome.
1 SYSTEM
Hardware (p2) | Statistics (p2) | Users (p3) | Limits (p3) | Runlevels (p4) | root password (p5) | Compile kernel (p6) Running kernel and system information
# uname -a # cat /etc/SuSE-release # cat /etc/debian_version # Get the kernel version (and BSD version) # Get SuSE version # Get Debian version
Use /etc/DISTR-release with DISTR= lsb (Ubuntu), redhat, gentoo, mandrake, sun (Solaris), and so on.
# # # # # uptime hostname hostname -i man hier last reboot # # # # # Show how long the system has been running + load system's host name Display the IP address of the host. Description of the file system hierarchy Show system reboot history
Linux
# # # # # # # # # # cat /proc/cpuinfo cat /proc/meminfo grep MemTotal /proc/meminfo watch -n1 'cat /proc/interrupts' free -m cat /proc/devices lspci -tv lsusb -tv lshal dmidecode # # # # # # # # # # CPU model Hardware memory Display the physical memory Watch changeable interrupts continuously Used and free memory (-m for MB) Configured devices Show PCI devices Show USB devices Show a list of all devices with their properties Show DMI/SMBIOS: hw info from the BIOS
FreeBSD
# # # # # # # # # sysctl hw.model sysctl hw sysctl vm dmesg | grep "real mem" sysctl -a | grep mem sysctl dev pciconf -l -cv usbdevs -v atacontrol list # # # # # # # # # CPU model Gives a lot of hardware information Memory usage Hardware memory Kernel memory settings and info Configured devices Show PCI devices Show USB devices Show ATA devices
# # # # # #
systat -tcp 1 systat -netstat 1 systat -ifstat 1 systat -iostat 1 tail -n 500 /var/log/messages tail /var/log/warn
# # # # # #
BSD tcp connections (try also -ip) BSD active network connections BSD network traffic through active interfaces BSD CPU and and disk throughput Last 500 kernel/syslog messages System warnings messages see syslog.conf
1.3 Users
# # # # # # # # # # # # id # last # who # groupadd admin # useradd -c "Colin Barschel" -g admin userdel colin # adduser joe # rmuser joe # pw groupadd admin # pw groupmod admin -m newmember # pw useradd colin -c "Colin Barschel" pw userdel colin; pw groupdel admin Show the active user id with login and group Show last logins on the system Show who is logged on the system Add group "admin" and user colin (Linux/Solaris) -m colin Delete user colin (Linux/Solaris) FreeBSD add user joe (interactive) FreeBSD delete user joe (interactive) Use pw on FreeBSD Add a new member to a group -g admin -m -s /bin/tcsh
Encrypted passwords are stored in /etc/shadow for Linux and Solaris and /etc/master.passwd on FreeBSD. If the master.passwd is modified manually (say to delete a password), run # pwd_mkdb -p master.passwd to rebuild the database. To temporarily prevent logins system wide (for all users but root) use nologin. The message in nologin will be displayed.
# echo "Sorry no login now" > /etc/nologin # echo "Sorry no login now" > /var/run/nologin # (Linux) # (FreeBSD)
1.4 Limits
Some application require higher limits on open files and sockets (like a proxy web server, database). The default limits are usually too low. Linux Per shell/script The shell limits are governed by ulimit. The status is checked with ulimit -a. For example to change the open files limit from 1024 to 10240 do:
# ulimit -n 10240 # This is only valid within the shell
The ulimit command can be used in a script to change the limits for the script only. Per user/process Login users and applications can be configured in /etc/security/limits.conf. For example:
# cat /etc/security/limits.conf * hard nproc 250 asterisk hard nofile 409600 # Limit user processes # Limit application open files
System wide Kernel limits are set with sysctl. Permanent limits are set in /etc/sysctl.conf.
# # # # sysctl -a sysctl fs.file-max sysctl fs.file-max=102400 cat /etc/sysctl.conf # View all system limits # View max open files limit # Change max open files limit
FreeBSD Per shell/script Use the command limits in csh or tcsh or as in Linux, use ulimit in an sh or bash shell. Per user/process The default limits on login are set in /etc/login.conf. An unlimited value is still limited by the system maximal value. System wide Kernel limits are also set with sysctl. Permanent limits are set in /etc/sysctl.conf or /boot/ loader.conf. The syntax is the same as Linux but the keys are different.
# sysctl -a # sysctl kern.maxfiles=XXXX kern.ipc.nmbclusters=32768 kern.maxfiles=65536 kern.maxfilesperproc=32768 kern.ipc.somaxconn=8192 # sysctl kern.openfiles # sysctl kern.ipc.numopensockets # # # # View all system limits maximum number of file descriptors Permanent entry in /etc/sysctl.conf Typical values for Squid
# TCP queue. Better for apache/sendmail # How many file descriptors are in use # How many open sockets are in use
See The FreeBSD handbook Chapter 111 for details. Solaris The following values in /etc/system will increase the maximum file descriptors per proc:
set rlim_fd_max = 4096 set rlim_fd_cur = 1024 # Hard limit on file descriptors for a single proc # Soft limit on file descriptors for a single proc
1.5 Runlevels
Linux Once booted, the kernel starts init which then starts rc which starts all scripts belonging to a runlevel. The scripts are stored in /etc/init.d and are linked into /etc/rc.d/rcN.d with N the runlevel number. The default runlevel is configured in /etc/inittab. It is usually 3 or 5:
# grep default: /etc/inittab id:3:initdefault:
The actual runlevel (the list is shown below) can be changed with init. For example to go from 3 to 5:
# init 5 # Enters runlevel 5
0 Shutdown and halt 1 Single-User mode (also S) 2 Multi-user without network 3 Multi-user with network 5 Multi-user with X 6 Reboot Use chkconfig to configure the programs that will be started at boot in a runlevel.
# chkconfig --list # chkconfig --list sshd # List all init scripts # Report the status of sshd
1.http://www.freebsd.org/handbook/configtuning-kernel-limits.html
# Configure sshd for levels 3 and 5 # Disable sshd for all runlevels
Debian and Debian based distributions like Ubuntu or Knoppix use the command update-rc.d to manage the runlevels scripts. Default is to start in 2,3,4 and 5 and shutdown in 0,1 and 6.
# # # # update-rc.d update-rc.d update-rc.d shutdown -h sshd defaults # Activate sshd with the default runlevels sshd start 20 2 3 4 5 . stop 20 0 1 6 . # With explicit arguments -f sshd remove # Disable sshd for all runlevels now (or # poweroff) # Shutdown and halt the system
FreeBSD The BSD boot approach is different from the SysV, there are no runlevels. The final boot state (single user, with or without X) is configured in /etc/ttys. All OS scripts are located in /etc/ rc.d/ and in /usr/local/etc/rc.d/ for third-party applications. The activation of the service is configured in /etc/rc.conf and /etc/rc.conf.local. The default behavior is configured in /etc/defaults/rc.conf. The scripts responds at least to start|stop|status.
# /etc/rc.d/sshd status sshd is running as pid 552. # shutdown now # exit # shutdown -p now # shutdown -r now
# # # #
Go into single-user mode Go back to multi-user mode Shutdown and halt the system Reboot
The process init can also be used to reach one of the following states level. For example # init 6 for reboot. 0 Halt and turn the power off (signal USR2) 1 Go to single-user mode (signal TERM) 6 Reboot the machine (signal INT) c Block further logins (signal TSTP) q Rescan the ttys(5) file (signal HUP)
The kernel will mount the root partition and init will start the bourne shell instead of rc and then a runlevel. Use the command passwd at the prompt to change the password and then reboot. Forget the single user mode as you need the password for that. If, after booting, the root partition is mounted read only, remount it rw:
# # # # mount -o remount,rw / passwd sync; mount -o remount,ro / reboot # or delete the root password (/etc/shadow) # sync before ro remount
FreeBSD and Linux method 2 FreeBSD won't let you go away with the simple init trick. The solution is to mount the root partition from an other OS (like a rescue CD) and change the password on the disk. Boot a live CD or installation CD into a rescue mode which will give you a shell. Find the root partition with fdisk e.g. fdisk /dev/sda Mount it and use chroot:
# mount -o rw /dev/ad4s3a /mnt # chroot /mnt # chroot into /mnt
# passwd # reboot
Alternatively on FreeBSD, boot in single user mode, remount / rw and use passwd.
# mount -u /; mount -a # passwd # reboot
FreeBSD
# kldstat # kldload crypto # List all modules loaded in the kernel # To load a module (here crypto)
FreeBSD To modify and rebuild the kernel, copy the generic configuration file to a new name and edit it as needed. It is however also possible to edit the file GENERIC directly.
# # # # # cd /usr/src/sys/i386/conf/ cp GENERIC MYKERNEL cd /usr/src make buildkernel KERNCONF=MYKERNEL make installkernel KERNCONF=MYKERNEL
For small changes in the source, sometimes the short version is enough:
# make kernel world # mergemaster # reboot # Compile and install both kernel and OS
2 PROCESSES
Listing (p7) | Priority (p7) | Background/Foreground (p7) | Top (p7) | Kill (p8)
2.2 Priority
Change the priority of a running process with renice. Negative numbers have a higher priority, the lowest is -20 and "nice" have a positive value.
# renice -5 586 # Stronger priority 586: old priority 0, new priority -5
Start the process with a defined priority with nice. Positive is "nice" or weak, negative is strong scheduling priority. Make sure you know if /usr/bin/nice or the shell built-in is used (check with # which nice).
# nice -n 5 top # nice +5 top # Weaker priority (/usr/bin/nice) # tcsh builtin nice (same as above)
2.3 Background/Foreground
When started from a shell, processes can be brought in the background and back to the foreground with [Ctrl]-[Z] (^Z), bg and fg. For example start two processes, bring them in the background, list the processes with jobs and bring one in the foreground.
# ping cb.vu > ping.log ^Z # bg # jobs -l [1] - 36232 Running [2] + 36233 Suspended (tty output) # fg %2 # ping is suspended (stopped) with [Ctrl]-[Z] # put in background and continues running # List processes in background ping cb.vu > ping.log top # Bring process 2 back in foreground
Use nohup to start a process which has to keep running when the shell is closed (immune to hangups).
# nohup ping -i 60 > ping.log &
2.4 Top
The program top displays running information of processes.
# top
While top is running press the key h for a help overview. Useful keys are:
u [user name] To display only the processes belonging to the user. Use + or blank to see all users k [pid] Kill the process with pid. 1 To display all processors statistics (Linux only) R Toggle normal/reverse sort.
2.5 Signals/Kill
Terminate or send a signal with kill or killall.
# ping -i 60 cb.vu > ping.log & [1] 4712 # kill -s TERM 4712 # killall -1 httpd # pkill -9 http # pkill -TERM -u www # fuser -k -TERM -m /home
# # # # #
as kill -15 4712 HUP processes by exact name TERM processes by (part of) name TERM processes owned by www every process accessing /home (to umount)
Important signals are: 1 HUP (hang up) 2 INT (interrupt) 3 QUIT (quit) 9 KILL (non-catchable, non-ignorable kill) 15 TERM (software termination signal)
3 FILE SYSTEM
Disk info (p8) | Boot (p9) | Disk usage (p9) | Opened files (p9) | Mount/remount (p10) | Mount SMB (p11) | Mount image (p11) | Burn ISO (p11) | Create image (p12) | Memory disk (p13) | Disk performance (p13)
3.1 Permissions
Change permission and ownership with chmod and chown. The default umask can be changed for all users in /etc/profile for Linux or /etc/login.conf for FreeBSD. The default umask is usually 022. The umsak is subtracted from 777, thus umask 022 results in a permission 0f 755.
1 --x execute 2 -w- write 4 r-- read ugo=a # # # # # # # # chmod [OPTION] MODE[,MODE] FILE chmod 640 /var/log/maillog chmod u=rw,g=r,o= /var/log/maillog chmod -R o-r /home/* chmod u+s /path/to/prog find / -perm -u+s -print chown user:group /path/to/file chgrp group /path/to/file # Mode 764 = exec/read/write | read/write | read # For: |-- Owner --| |- Group-| |Oth| u=user, g=group, o=others, a=everyone # # # # # # # # MODE is of the form [ugoa]*([-+=]([rwxXst])) Restrict the log -rw-r----Same as above Recursive remove other readable for all users Set SUID bit on executable (know what you do!) Find all programs with the SUID bit Change the user and group ownership of a file Change the group ownership of a file
3.3 Boot
FreeBSD To boot an old kernel if the new kernel doesn't boot, stop the boot at during the count down.
# unload # load kernel.old # boot
Disk usage
# # # # du du du ls -sh * -csh -ks * | sort -n -r -lSr # # # # Directory sizes as listing Total directory size of the current directory Sort everything by size in kilobytes Show files, biggest last
Find opened log file (or other opened files), say for Xorg:
# ps ax | grep Xorg | awk '{print $1}' 1252 # fstat -p 1252 USER CMD PID FD MOUNT root Xorg 1252 root / root Xorg 1252 text /usr root Xorg 1252 0 /var
About an application:
ps ax | grep Xorg | awk '{print $1}' 3324 # lsof -p 3324 COMMAND PID USER FD TYPE DEVICE Xorg 3324 root 0w REG 8,6
SIZE 56296
Entry in /etc/fstab:
# Device /dev/acd0 Mountpoint /cdrom FStype cd9660 Options ro,noauto Dump 0 Pass# 0
Linux
# mount -t auto /dev/cdrom /mnt/cdrom # mount /dev/hdc -t iso9660 -r /cdrom # mount /dev/sdc0 -t iso9660 -r /cdrom # typical cdrom mount command # typical IDE # typical SCSI
Entry in /etc/fstab:
/dev/cdrom /media/cdrom subfs noauto,fs=cdfss,ro,procuid,nosuid,nodev,exec 0 0
Mount a FreeBSD partition with Linux Find the partition number containing with fdisk, this is usually the root partition, but it could be an other BSD slice too. If the FreeBSD has many slices, they are the one not listed in the fdisk table, but visible in /dev/sda* or /dev/hda*.
# fdisk /dev/sda # Find the FreeBSD partition /dev/sda3 * 5357 7905 20474842+ a5 FreeBSD # mount -t ufs -o ufstype=ufs2,ro /dev/sda3 /mnt /dev/sda10 = /tmp; /dev/sda11 /usr # The other slices
Remount Remount a device without unmounting it. Necessary for fsck for example
# mount -o remount,ro / # mount -o ro / # Linux # FreeBSD
10
Additionally with the package mount.cifs it is possible to store the credentials in a file, for example /home/user/.smb:
username=winuser password=winpwd
FreeBSD Use -I to give the IP (or DNS name); smbserver is the Windows name.
# smbutil view -I 192.168.16.229 //winuser@smbserver # List the shares # mount_smbfs -I 192.168.16.229 //winuser@smbserver/myshare /mnt/smbshare
11
Use mkisofs to create a CD/DVD image from files in a directory. To overcome the file names restrictions: -r enables the Rock Ridge extensions common to UNIX systems, -J enables Joliet extensions used by Microsoft systems. -L allows ISO9660 filenames to begin with a period.
# mkisofs -J -L -r -V TITLE -o imagefile.iso /path/to/dir
On FreeBSD, mkisofs is found in the ports in sysutils/cdrtools. Burn a CD/DVD ISO image FreeBSD FreeBSD does not enable DMA on ATAPI drives by default. DMA is enabled with the sysctl command and the arguments below, or with /boot/loader.conf with the following entries:
hw.ata.ata_dma="1" hw.ata.atapi_dma="1"
Use burncd with an ATAPI device (burncd is part of the base system) and cdrecord (in sysutils/cdrtools) with a SCSI drive.
# burncd -f /dev/acd0 data imagefile.iso fixate # For ATAPI drive # cdrecord -scanbus # To find the burner device (like 1,0,0) # cdrecord dev=1,0,0 imagefile.iso
Linux Also use cdrecord with Linux as described above. Additionally it is possible to use the native ATAPI interface which is found with:
# cdrecord dev=ATAPI -scanbus
And burn the CD/DVD as above. Convert a Nero .nrg file to .iso Nero simply adds a 300Kb header to a normal iso image. This can be trimmed with dd.
# dd bs=1k if=imagefile.nrg of=imagefile.iso skip=300
Convert a bin/cue image to .iso The little bchunk program2 can do this. It is in the FreeBSD ports in sysutils/bchunk.
# bchunk imagefile.bin imagefile.cue imagefile.iso
Linux
# dd if=/dev/zero of=/usr/vdisk.img bs=1024k count=1024 # mkfs.ext3 /usr/vdisk.img
2.http://freshmeat.net/projects/bchunk/
12
# Cleanup
Linux
# mount -t tmpfs -osize=64m tmpfs /memdisk
4 NETWORK
Routing (p13) | Additional IP (p14) | Change MAC (p14) | Ports (p14) | Firewall (p14) | IP Forward (p15) | NAT (p15) | DNS (p16) | DHCP (p17) | Traffic (p17) | NIS (p18)
4.2 Routing
Print routing table
# route -n # netstat -rn # route print # Linux # Linux, BSD and UNIX # Windows
13
Linux
# # # # # # route add -net 192.168.20.0 netmask 255.255.255.0 gw 192.168.16.254 ip route add 192.168.20.0/24 via 192.168.16.254 # same as above with ip route route add -net 192.168.20.0 netmask 255.255.255.0 dev eth0 route add default gw 192.168.51.254 ip route add default via 192.168.51.254 # same as above with ip route route delete -net 192.168.20.0 netmask 255.255.255.0
Windows
# Route add 192.168.50.0 mask 255.255.255.0 192.168.51.253 # Route add 0.0.0.0 mask 0.0.0.0 192.168.51.254
FreeBSD
# ifconfig fxp0 inet 192.168.50.254/24 # First IP # ifconfig fxp0 alias 192.168.51.254 netmask 255.255.255.0 # Second IP
4.6 Firewall
Check if a firewall is running (typical configuration only):
14
Linux
# iptables -L -n -v Open the iptables firewall # iptables -Z # iptables -F # iptables -X # iptables -P INPUT ACCEPT # iptables -P FORWARD ACCEPT # iptables -P OUTPUT ACCEPT # For status # # # # Zero the packet and byte counters in all chains Flush all chains Delete all chains Open everything
FreeBSD
# # # # ipfw show # For status ipfw list 65535 # if answer is "65535 deny ip from any to any" the fw is disabled sysctl net.inet.ip.fw.enable=0 # Disable sysctl net.inet.ip.fw.enable=1 # Enable
15
# port range
4.9 DNS
On Unix the DNS entries are valid for all interfaces and are stored in /etc/resolv.conf. The domain to which the host belongs is also stored in this file. A minimal configuration is:
nameserver 78.31.70.238 search sleepyowl.net intern.lab domain sleepyowl.net
Windows On Windows the DNS are configured per interface. To display the configured DNS and to flush the DNS cache use:
# ipconfig /? # ipconfig /all # ipconfig /flushdns # Display help # See all information including DNS # Flush the DNS cache
Forward queries Dig is you friend to test the DNS settings. For example the public DNS server 213.133.105.2 ns.second-ns.de can be used for testing. See from which server the client receives the answer (simplified answer).
# dig sleepyowl.net sleepyowl.net. 600 IN A ;; SERVER: 192.168.51.254#53(192.168.51.254) 78.31.70.238
The router 192.168.51.254 answered and the response is the A entry. Any entry can be queried and the DNS server can be selected with @:
# # # # dig dig dig dig MX google.com @127.0.0.1 NS sun.com @204.97.212.10 NS MX heise.de AXFR @ns1.xname.org cb.vu # To test the local server # Query an external server # Get the full zone (zone transfer)
Reverse queries Find the name belonging to an IP address (in-addr.arpa.). This can be done with dig, host and nslookup:
# dig -x 78.31.70.238 # host 78.31.70.238 # nslookup 78.31.70.238
16
/etc/hosts Single hosts can be configured in the file /etc/hosts instead of running named locally to resolve the hostname queries. The format is simple, for example:
78.31.70.238 sleepyowl.net sleepyowl
The priority between hosts and a dns query, that is the name resolution order, can be configured in /etc/nsswitch.conf AND /etc/host.conf. The file also exists on Windows, it is usually in:
C:\WINDOWS\SYSTEM32\DRIVERS\ETC
4.10 DHCP
Linux Some distributions (SuSE) use dhcpcd as client. The default interface is eth0.
# dhcpcd -n eth0 # dhcpcd -k eth0 # Trigger a renew # release and shutdown
FreeBSD FreeBSD (and Debian) uses dhclient. To configure an interface (for example bge0) run:
# dhclient bge0
Use
/etc/dhclient.conf
3.http://people.suug.ch/~tgr/bmon/
17
Additional important options: -A Print each packets in clear text (without header) -X Print packets in hex and ASCII -l Make stdout line buffered -D Print all interfaces available On Windows use windump from www.winpcap.org. Use windump -D to list the interfaces. Scan with nmap Nmap4 is a port scanner with OS detection, it is usually installed on most distributions and is also available for Windows. If you don't scan your servers, hackers do it for you...
# nmap cb.vu # scans all reserved TCP ports on the host # nmap -sP 192.168.16.0/24 # Find out which IP are used and by which host on 0/24 # nmap -sS -sV -O cb.vu # Do a stealth SYN scan with version and OS detection PORT STATE SERVICE VERSION 22/tcp open ssh OpenSSH 3.8.1p1 FreeBSD-20060930 (protocol 2.0) 25/tcp open smtp Sendmail smtpd 8.13.6/8.13.6 80/tcp open http Apache httpd 2.0.59 ((FreeBSD) DAV/2 PHP/4. [...] Running: FreeBSD 5.X Uptime 33.120 days (since Fri Aug 31 11:41:04 2007)
Is ypbind running?
# ps auxww | grep ypbind /usr/sbin/ypbind -s -m -S servername1,servername2 # FreeBSD /usr/sbin/ypbind # Linux # yppoll passwd.byname Map passwd.byname has order number 1190635041. Mon Sep 24 13:57:21 2007 The master server is servername.domain.net.
Linux
# cat /etc/yp.conf ypserver servername domain domain.net broadcast
4.http://insecure.org/nmap/
18
5 SSH SCP
Public key (p19) | Fingerprint (p19) | SCP (p20) | Tunneling (p20)
Using the Windows client from ssh.com The non commercial version of the ssh.com client can be downloaded the main ftp site: ftp.ssh.com/pub/ssh/. Keys generated by the ssh.com client need to be converted for the OpenSSH server. This can be done with the ssh-keygen command. Create a key pair with the ssh.com client: Settings - User Authentication - Generate New.... I use Key type DSA; key length 2048. Copy the public key generated by the ssh.com client to the server into the ~/.ssh folder. The keys are in C:\Documents and Settings\%USERNAME%\Application Data\SSH\UserKeys. Use the ssh-keygen command on the server to convert the key:
# cd ~/.ssh # ssh-keygen -i -f keyfilename.pub >> authorized_keys2
Notice: We used a DSA key, RSA is also possible. The key is not protected by a password. Using putty for Windows Putty5 is a simple and free ssh client for Windows. Create a key pair with the puTTYgen program. Save the public and private keys (for example Settings\%USERNAME%\.ssh). Copy the public key to the server into the ~/.ssh folder:
# scp .ssh/puttykey.pub [email protected]:.ssh/
into
C:\Documents
and
Use the ssh-keygen command on the server to convert the key for OpenSSH:
# cd ~/.ssh # ssh-keygen -i -f puttykey.pub >> authorized_keys2
Point the private key location in the putty settings: Connection - SSH - Auth
19
# ssh-keygen -l -f /etc/ssh/ssh_host_rsa_key.pub # For RSA key 2048 61:33:be:9b:ae:6c:36:31:fd:83:98:b7:99:2d:9f:cd /etc/ssh/ssh_host_rsa_key.pub # ssh-keygen -l -f /etc/ssh/ssh_host_dsa_key.pub # For DSA key (default) 2048 14:4a:aa:d9:73:25:46:6d:0a:48:35:c7:f4:16:d4:ee /etc/ssh/ssh_host_dsa_key.pub
Now the client connecting to this server can verify that he is connecting to the right server:
# ssh linda The authenticity of host 'linda (192.168.16.54)' can't be established. DSA key fingerprint is 14:4a:aa:d9:73:25:46:6d:0a:48:35:c7:f4:16:d4:ee. Are you sure you want to continue connecting (yes/no)? yes
In Konqueror or Midnight Commander it is possible to access a remote file system with the address fish://user@gate. However the implementation is very slow. Furthermore it is possible to mount a remote folder with sshfs a file system client based on SCP. See fuse sshfs6.
5.4 Tunneling
SSH tunneling allows to forward or reverse forward a port over the SSH connection, thus securing the traffic and accessing ports which would otherwise be blocked. This only works with TCP. The general nomenclature for forward and reverse is:
# ssh -L localport:desthost:destport user@gate # desthost as seen from the gate # ssh -R remoteport:localhost:localport user@gate # ssh -X user@gate # To force X forwarding
This will connect to gate and forward the local port to the host desthost:destport. Note desthost is the destination host as seen by the gate, so if the connection is to the gate, then desthost is localhost. More than one port forward is possible. Direct forward on the gate Let say we want to access the CVS (port 2401) and http (port 80) which are running on the gate. This is the simplest example, desthost is thus localhost, and we use the port 8080 locally instead of 80 so we don't need to be root. Once the ssh session is open, both services are accessible on the local ports.
# ssh -L 2401:localhost:2401 -L 8080:localhost:80 user@gate
Netbios and remote desktop forward to a second server Let say a Windows smb server is behind the gate and is not running ssh. We need access to the smb share and also remote desktop to the server.
# ssh -L 139:smbserver:139 -L 3388:smbserver:3389 user@gate
The smb share can now be accessed with \\127.0.0.1\, but only if the local share is disabled, because the local share is listening on port 139. It is possible to keep the local share enabled, for this we need to create a new virtual device with a new IP address for the tunnel, the smb share will be connected over this address. Furthermore the local RDP is already listening on 3389, so we choose 3388. For this example let's use a virtual IP of 10.1.1.1.
6.http://fuse.sourceforge.net/sshfs.html
20
With putty use Source port=10.1.1.1:139. It is possible to create multiple loop devices and tunnel. On Windows 2000, only putty worked for me. With the ssh.com client, disable "Allow local connections only". Since ssh.com will bind to all addresses, only a single share can be connected. Now create the loopback interface with IP 10.1.1.1: # System->Control Panel->Add Hardware # Yes, Hardware is already connected # Add a new hardware device (at bottom). # Install the hardware that I manually select # Network adapters # Microsoft , Microsoft Loopback Adapter. Configure the IP address of the fake device to 10.1.1.1 mask 255.255.255.0, no gateway. advanced->WINS, Enable LMHosts Lookup; Disable NetBIOS over TCP/IP. # Enable Client for Microsoft Networks. # Disable File and Printer Sharing for Microsoft Networks. I HAD to reboot for this to work. Now connect to the smb share with \\10.1.1.1 and remote desktop to 10.1.1.1:3388. Debug If it is not working: Are the ports forwarded: netstat -an? Look at 0.0.0.0:139 or 10.1.1.1:139 Does telnet 10.1.1.1 139 connect? You need the checkbox "Local ports accept connections from other hosts". Is "File and Printer Sharing for Microsoft Networks" disabled on the loopback interface?
Connect two clients behind NAT Suppose two clients are behind a NAT gateway and client cliadmin has to connect to client cliuser (the destination), both can login to the gate with ssh and are running Linux with sshd. You don't need root access anywhere as long as the ports on gate are above 1024. We use 2022 on gate. Also since the gate is used locally, the option GatewayPorts is not necessary. On client cliuser (from destination to gate):
# ssh -R 2022:localhost:22 user@gate
Now the admin can connect directly to the client cliuser with:
# ssh -p 3022 admin@localhost
Connect to VNC behind NAT Suppose a Windows client with VNC listening on port 5900 has to be accessed from behind NAT. On client cliwin to gate:
# ssh -R 15900:localhost:5900 user@gate
Now the admin can connect directly to the client VNC with:
# vncconnect -display :0 localhost
21
which might result in poor performance on a slow link. Also the tunnel is relying on a single (fragile) TCP connection. This technique is very useful for a quick IP based VPN setup. There is no limitation as with the single TCP port forward, all layer 3/4 protocols like ICMP, TCP/ UDP, etc. are forwarded over the VPN. In any case, the following options are needed in the sshd_conf file:
PermitRootLogin yes PermitTunnel yes
Server is on FreeBSD
cli># ssh -w5:5 root@hserver srv># ifconfig tun5 10.0.1.1 10.0.1.2 # Executed on the server shell
The two hosts are now connected and can transparently communicate with any layer 3/4 protocol using the tunnel IP addresses.
22
gateB is on Linux
gateA># gateB># gateB># gateB># gateB># ssh -w5:5 root@gateB ifconfig tun5 10.0.1.1 netmask 255.255.255.252 # Executed on the gateB shell route add -net 192.168.51.0 netmask 255.255.255.0 dev tun5 echo 1 > /proc/sys/net/ipv4/ip_forward # Only needed if not default gw iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
gateB is on FreeBSD
gateA># gateB># gateB># gateB># gateB># gateA># ssh -w5:5 root@gateB ifconfig tun5 10.0.1.1 10.0.1.2 route add 192.168.51.0/24 10.0.1.2 sysctl net.inet.ip.forwarding=1 natd -s -m -u -dynamic -n fxp0 sysctl net.inet.ip.fw.enable=1 # Creates the tun5 devices # Executed on the gateB shell # Only needed if not default gw # see NAT (page 15)
gateA is on FreeBSD
gateA># gateA># gateA># gateA># gateA># ifconfig tun5 10.0.1.2 10.0.1.1 route add 192.168.16.0/24 10.0.1.2 sysctl net.inet.ip.forwarding=1 natd -s -m -u -dynamic -n fxp0 sysctl net.inet.ip.fw.enable=1
The two private networks are now transparently connected via the SSH VPN. The IP forward and NAT settings are only necessary if the gates are not the default gateways. In this case the clients would not know where to forward the response, and nat must be activated.
7 RSYNC
Rsync can almost completely replace cp and scp, furthermore interrupted transfers are efficiently restarted. A trailing slash (and the absence thereof) has different meanings, the man page is good... Here some examples: Copy the directories with full content:
# rsync -a /home/colin/ /backup/colin/ # rsync -a /var/ /var_bak/ # rsync -aR --delete-during /home/user/ /backup/
Same as before but over the network and with compression. Rsync uses SSH for the transport per default and will use the ssh key if they are set. Use ":" as with SCP. A typical remote copy:
# rsync -axSRzv /home/user/ user@server:/backup/user/
Exclude any directory tmp within /home/user/ and keep the relative folders hierarchy, that is the remote directory will have the structure /backup/home/user/. This is typically used for backups.
# rsync -azR --exclude /tmp/ /home/user/ user@server:/backup/
23
Using the rsync daemon (used with "::") is much faster, but not encrypted over ssh. The location of /backup is defined by the configuration in /etc/rsyncd.conf. The variable RSYNC_PASSWORD can be set to avoid the need to enter the password manually.
# rsync -axSRz /home/ ruser@hostname::rmodule/backup/ # rsync -axSRz ruser@hostname::rmodule/backup/ /home/ # To copy back
Some important options: -a, --archive archive mode; same as -rlptgoD (no -H) -r, --recursive recurse into directories -R, --relative use relative path names -H, --hard-links preserve hard links -S, --sparse handle sparse files efficiently -x, --one-file-system don't cross file system boundaries --exclude=PATTERN exclude files matching PATTERN --delete-during receiver deletes during xfer, not before --delete-after receiver deletes after transfer, not before
Automatic backup Use a batch file to automate the backup and add the file in the scheduled tasks (Programs -> Accessories -> System Tools -> Scheduled Tasks). For example create the file backup.bat and replace user@server.
@ECHO OFF REM rsync the directory My Documents SETLOCAL SET CWRSYNCHOME=C:\PROGRAM FILES\CWRSYNC SET CYGWIN=nontsec
7.http://sourceforge.net/projects/sereds
24
SET CWOLDPATH=%PATH% REM uncomment the next line when using cygwin SET PATH=%CWRSYNCHOME%\BIN;%PATH% echo Press Control-C to abort rsync -av "/cygdrive/c/Documents and Settings/%USERNAME%/My Documents/" \ 'user@server:My\ Documents/' pause
8 SUDO
Sudo is a standard way to give users some administrative rights without giving out the root password. Sudo is very useful in a multi user environment with a mix of server and workstations. Simply call the command with sudo:
# sudo /etc/init.d/dhcpd restart # sudo -u sysadmin whoami # Run the rc script as root # Run cmd as an other user
8.1 Configuration
Sudo is configured in /etc/sudoers and must only be edited with visudo. The basic syntax is (the lists are comma separated):
user hosts = (runas) commands # In /etc/sudoers
users one or more users or %group (like %wheel) to gain the rights hosts list of hosts (or ALL) runas list of users (or ALL) that the command rule can be run as. It is enclosed in ( )! commands list of commands (or ALL) that will be run as root or as (runas) Additionally those keywords can be defined as alias, they are called User_Alias, Host_Alias, Runas_Alias and Cmnd_Alias. This is useful for larger setups. Here a sudoers example:
# cat /etc/sudoers # Host aliases are subnets or hostnames. Host_Alias DMZ = 212.118.81.40/28 Host_Alias PRIVATE = 10.0.10.0/24, dusk, pbxde, nightowl Host_Alias DESKTOP = work1, work2 # User aliases are a User_Alias ADMINS User_Alias DEVEL Runas_Alias DBA list of users which can have the same rights = colin, luca, admin = joe, jack, julia = oracle,pgsql
# Command aliases define the full path of a list of commands Cmnd_Alias SYSTEM = /sbin/reboot,/usr/bin/kill,/sbin/halt,/sbin/shutdown,/etc/init.d/ Cmnd_Alias USERS = /usr/sbin/adduser [A-z]*,/usr/sbin/userdel -r [A-z]* Cmnd_Alias PW = /usr/bin/passwd [A-z]*, !/usr/bin/passwd root # Not root pwd! Cmnd_Alias NETWORK = /sbin/route,/sbin/ifconfig Cmnd_Alias DEBUG = /usr/sbin/tcpdump,/usr/bin/wireshark,/usr/bin/nmap # The actual root,ADMINS DEVEL DEVEL rules ALL = (ALL) NOPASSWD: ALL DESKTOP = (ALL) NOPASSWD: ALL DMZ = (ALL) NOPASSWD: DEBUG # ADMINS can do anything w/o a password. # Developers have full right on desktops # Developers can debug the DMZ servers.
# User sysadmin can mess around in the DMZ servers with some commands. sysadmin DMZ = (ALL) NOPASSWD: SYSTEM,NETWORK,PW,DEBUG sysadmin ALL,!DMZ = (ALL) NOPASSWD: ALL # Can do anything outside the DMZ. %dba ALL = (DBA) ALL # Group dba can run as database user. # anyone can mount/unmount a cd-rom on the desktop machines ALL DESKTOP = NOPASSWD: /sbin/mount /cdrom,/sbin/umount /cdrom
25
9 ENCRYPT FILES
9.1 A single file
Encrypt and decrypt:
# openssl des -salt -in file -out file.des # openssl des -d -salt -in file.des -out file
Use -k mysecretpassword after des to avoid the interactive password request. However note that this is highly insecure. Use des3 instead of des to get even stronger encryption (Triple-DES Cipher). This uses also more CPU.
10 SSL CERTIFICATES
So called SSL/TLS certificates are cryptographic public key certificates and are composed of a public and a private key. The certificates are used to authenticate the endpoints and encrypt the data. They are used for example on a web server (https) or mail server (imaps).
10.1 Procedure
We need a certificate authority to sign our certificate. This step is usually provided by a vendor like Thawte, Verisign, etc., however we can also create our own. Create a certificate signing request. This request is like an unsigned certificate (the public part) and already contains all necessary information. The certificate request is normally sent to the authority vendor for signing. This step also creates the private key on the local machine. Sign the certificate with the certificate authority. If necessary join the certificate and the key in a single file to be used by the application (web server, mail server etc.).
26
# # # # #
mkdir -p /usr/local/certs/CA cd /usr/local/certs/CA mkdir certs crl newcerts private echo "01" > serial touch index.txt
Now servernamekey.pem is the private key and servernamecert.pem is the server certificate.
What we have now in the directory /usr/local/certs/: CA/private/cakey.pem (CA server private key) CA/cacert.pem (CA server public key) certs/servernamekey.pem (server private key)
27
certs/servernamecert.pem (server signed certificate) certs/servername.pem (server certificate with private key) Keep the private key secure!
11 CVS
Server setup (p28) | CVS test (p29) | SSH tunneling (p29) | CVS usage (p30)
# Create a writers file (optionally also readers) # Use [Control][D] to quit the edit # Add the file writers into the repository
# Use [Control][D] to quit the edit # Commit all the configuration changes
Add a readers file if you want to differentiate read and write permissions Note: Do not (ever) edit files directly into the main cvs, but rather checkout the file, modify it and check it in. We did this with the file writers to define the write access. Network setup with inetd The CVS can be run locally only if a network access is not needed. For a remote access, the daemon inetd can be used with the following line in /etc/inetd.conf (/etc/xinetd.d/cvs on SuSE):
cvspserver stream tcp nowait --allow-root=/usr/local/cvs pserver cvs /usr/bin/cvs cvs \
It is a good idea to block the cvs port from the Internet with the firewall and use an ssh tunnel to access the repository remotely. Separate authentication It is possible to have cvs users which are not part of the OS (no local users). This is actually probably wanted too from the security point of view. Simply add a file named passwd (in the CVSROOT directory) containing the users login and password in the crypt format. This is can be done with the apache htpasswd tool.
28
Note: This passwd file is the only file which has to be edited directly in the CVSROOT directory. Also it won't be checked out. More info with htpasswd --help
# htpasswd -cb passwd user1 password1 # htpasswd -b passwd user2 password2 # -c creates the file
Now add :cvs at the end of each line to tell the cvs server to change the user to cvs (or whatever your cvs server is running under). It looks like this:
# cat passwd user1:xsFjhU22u8Fuo:cvs user2:vnefJOsnnvToM:cvs
11.2 Test it
Test the login as normal user (for example here me)
# cvs -d :pserver:[email protected]:/usr/local/cvs login Logging in to :pserver:[email protected]:2401/usr/local/cvs CVS password:
CVSROOT variable This is an environment variable used to specify the location of the repository we're doing operations on. For local use, it can be just set to the directory of the repository. For use over the network, it must be of the form:
# setenv CVSROOT :pserver:<username>@<host>:/cvsdirectory For example: # setenv CVSROOT /usr/local/cvs # Used locally only # setenv CVSROOT :pserver:[email protected]:/usr/local/cvs # Used over the network
When the login succeeded one can import a new project into the repository: cd into your project root directory
cvs import <module name> <vendor tag> <initial tag> cvs -d :pserver:[email protected]:/usr/local/cvs import MyProject MyCompany START
Where MyProject is the name of the new project in the repository (used later to checkout). Cvs will import the current directory content into the new project. To checkout:
# cvs -d :pserver:[email protected]:/usr/local/cvs checkout MyProject or # setenv CVSROOT :pserver:[email protected]:/usr/local/cvs # cvs checkout MyProject
on shell 2:
# setenv CVSROOT :pserver:colin@localhost:/usr/local/cvs # cvs login Logging in to :pserver:colin@localhost:2401/usr/local/cvs
29
After a while a new directory "/devel/tools/" was added and it has to be imported too.
# cd /devel/tools # cvs import myapp/tools Company R1_0
Create a patch It is best to create and apply a patch from the working development directory related to the project, or from within the source directory.
# cd /devel/project # diff -Naur olddir newdir > patchfile # Create a patch from a directory or a file # diff -Naur oldfile newfile > patchfile
Apply a patch Sometimes it is necessary to strip a directory level from the patch, depending how it was created. In case of difficulties, simply look at the first lines of the patch and try -p0, -p1 or -p2.
# # # # cd /devel/project patch --dry-run -p0 < patchfile patch -p0 < patchfile patch -p1 < patchfile # Test the path without applying it # strip off the 1st level from the path
12 SVN
Server setup (p31) | SVN+SSH (p31) | SVN over http (p31) | SVN usage (p32) Subversion (SVN)8 is a version control system designed to be the successor of CVS (Concurrent Versions System). The concept is similar to CVS, but many shortcomings where improved. See also the SVN book9.
8.http://subversion.tigris.org/ 9.http://svnbook.red-bean.com/en/1.4/
30
Now the access to the repository is made possible with: file:// Direct file system access with the svn client with. This requires local permissions on the file system. svn:// or svn+ssh:// Remote access with the svnserve server (also over SSH). This requires local permissions on the file system. http:// Remote access with webdav using apache. No local users are necessary for this method. Using the local file system, it is now possible to import and then check out an existing project. Unlike with CVS it is not necessary to cd into the project directory, simply give the full path:
# svn import /project1/ file:///home/svn/project1/trunk -m 'Initial import' # svn checkout file:///home/svn/project1
The new directory "trunk" is only a convention, this is not required. Remote access with ssh No special setup is required to access the repository via ssh, simply replace file:// with svn+ssh/hostname. For example:
# svn checkout svn+ssh://hostname/home/svn/project1
As with the local file access, every user needs an ssh access to the server (with a local account) and also read/write access. This method might be suitable for a small group. All users could belong to a subversion group which owns the repository, for example:
# # # # groupadd groupmod chown -R chmod -R subversion -A user1 subversion root:subversion /home/svn 770 /home/svn
Remote access with http (apache) Remote access over http (https) is the only good solution for a larger user group. This method uses the apache authentication, not the local accounts. This is a typical but small apache configuration:
LoadModule dav_module LoadModule dav_svn_module LoadModule authz_svn_module modules/mod_dav.so modules/mod_dav_svn.so modules/mod_authz_svn.so
<Location /svn> DAV svn # any "/svn/foo" URL will map to a repository /home/svn/foo SVNParentPath /home/svn AuthType Basic AuthName "Subversion repository" AuthzSVNAccessFile /etc/apache2/svn.acl AuthUserFile /etc/apache2/svn-passwd Require valid-user </Location>
31
13 USEFUL COMMANDS
less (p32) | vi (p33) | mail (p33) | tar (p34) | dd (p34) | screen (p35) | find (p36) | Miscellaneous (p36)
13.1 less
The less command displays a text document on the console. It is present on most installation.
# less unixtoolbox.xhtml
Some important commands are (^N stands for [control]-[N]): hH good help on display f ^F ^V SPACE Forward one window (or N lines). b ^B ESC-v Backward one window (or N lines). F Forward forever; like "tail -f". /pattern Search forward for (N-th) matching line.
10.http://www.cs.put.poznan.pl/csobaniec/Papers/svn-refcard.pdf 11.http://tortoisesvn.tigris.org
32
?pattern Search backward for (N-th) matching line. n Repeat previous search (for N-th occurrence). N Repeat previous search in reverse direction. q quit
13.2 vi
Vi is present on ANY Linux/Unix installation and it is therefore useful to know some basic commands. There are two modes: command mode and insertion mode. The commands mode is accessed with [ESC], the insertion mode with i. Quit :w newfilename save the file to newfilename :wq or :x save and quit :q! quit without saving Search and move /string Search forward for string ?string Search back for string n Search for next instance of string N Search for previous instance of string { Move a paragraph back } Move a paragraph forward 1G Move to the first line of the file G Move to the last line of the file :%s/OLD/NEW/g Search and replace every occurrence Delete text dd D dw x u U delete current line Delete to the end of the line Delete word Delete character Undo last Undo all changes to current line
13.3 mail
The mail command is a basic application to read and send email, it is usually installed. To send an email simply type "mail user@domain". The first line is the subject, then the mail content. Terminate and send the email with a single dot (.) in a new line. Example:
# mail [email protected] Subject: Your text is full of typos "For a moment, nothing happened. Then, after a second or so, nothing continued to happen." . EOT #
33
13.4 tar
The command tar (tape archive) creates and extracts archives of file and directories. The archive .tar is uncompressed, a compressed archive has the extension .tgz or .tar.gz (zip) or .tbz (bzip2). Do not use absolute path when creating an archive, you probably want to unpack it somewhere else. Some typical commands are: Create
# # # # cd / tar -cf home.tar home/ tar -czf home.tgz home/ tar -cjf home.tbz home/ # archive the whole /home directory (c for create) # same with zip compression # same with bzip2 compression
Only include one (or two) directories from a tree, but keep the relative structure. For example archive /usr/local/etc and /usr/local/www and the first directory in the archive should be local/.
# tar -C /usr -czf local.tgz local/etc local/www # tar -C /usr -xzf local.tgz # To untar the local dir into /usr # cd /usr; tar -xzf local.tgz # Is the same as above
Extract
# # # # # tar tar tar tar tar -tzf home.tgz # look inside the archive without extracting (list) -xf home.tar # extract the archive here (x for extract) -xzf home.tgz # same with zip compression -xjf home.tgz # same with bzip2 compression -xjf home.tgz home/colin/file.txt # Restore a single file
More advanced
# # # # # tar tar tar tar tar c dir/ | gzip cvf - `find . -cf - -C /etc -cf - -C /etc -czf home.tgz | ssh user@remote 'dd of=dir.tgz' # arch dir/ and store remotely. -print` > backup.tar # arch the current directory. . | tar xpf - -C /backup/etc # Copy directories . | ssh user@remote tar xpf - -C /backup/etc # Remote copy. --exclude '*.o' --exclude 'tmp/' home/
13.5 dd
The program dd (disk dump) is used to copy partitions and disks and for other copy tricks. Typical usage:
# dd if=<source> of=<target> bs=<byte size> conv=<conversion>
Important conv options: notrunc do not truncate the output file, all zeros will be written as zeros. noerror continue after read errors (e.g. bad blocks) sync pad every input block with Nulls to ibs-size The default byte size is 512 (one block). The MBR, where the partiton table is located, is on the first block, the first 63 blocks of a disk are empty. Larger byte sizes are faster to copy but require also more memory. Backup and restore
# # # # # dd if=/dev/hda of=/dev/hdc bs=16065b # Copy disk to disk (same size) dd if=/dev/sda7 of /home/root.img bs=4096 conv=notrunc,noerror # Backup / dd if /home/root.img of=/dev/sda7 bs=4096 conv=notrunc,noerror # Restore / dd bs=1M if=/dev/ad4s3e | gzip -c > ad4s3e.gz # Zip the backup gunzip -dc ad4s3e.gz | dd of=/dev/ad0s3e bs=1M # Restore the zip
34
# dd bs=1M if=/dev/ad4s3e | gzip | ssh eedcoba@fry 'dd of=ad4s3e.gz' # also remote # gunzip -dc ad4s3e.gz | ssh eedcoba@host 'dd of=/dev/ad0s3e bs=1M' # dd if=/dev/ad0 of=/dev/ad2 skip=1 seek=1 bs=4k conv=noerror # Skip MBR # This is necessary if the destination (ad2) is smaller.
Recover The command dd will read every single block of the partiton, even the blocks. In case of problems it is better to use the option conv=sync,noerror so dd will skip the bad block and write zeros at the destination. Accordingly it is important to set the block size equal or smaller than the disk block size. A 1k size seems safe, set it with bs=1k. If a disk has bad sectors and the data should be recovered from a partiton, create an image file with dd, mount the image and copy the content to a new disk. With the option noerror, dd will skip the bad sectors and write zeros instead, thus only the data contained in the bad sectors will be lost.
# dd if=/dev/hda of=/dev/null bs=1m # Check for bad blocks # dd bs=1k if=/dev/hda1 conv=sync,noerror,notrunc | gzip | ssh \ # Send to remote root@fry 'dd of=hda1.gz bs=1k' # dd bs=1k if=/dev/hda1 conv=sync,noerror,notrunc of=hda1.img # Store into an image # mount -o loop /hda1.img /mnt # Mount the image (page 12) # rsync -ax /mnt/ /newdisk/ # Copy on a new disk # dd if=/dev/hda of=/dev/hda # Refresh the magnetic state # The above is useful to refresh a disk. It is perfectly safe, but must be unmounted.
Delete
# # # # dd if=/dev/zero of=/dev/hdc count=1 dd if=/dev/zero of=/dev/hdc dd if=/dev/urandom of=/dev/hdc kill -USR1 PID # # # # Delete MBR and partiton table Delete full disk Delete full disk better View dd progress (Linux only!)
13.6 screen
Screen has two main functionalities: Run multiple terminal session within a single terminal. A started program is decoupled from the real terminal and can thus run in the background. The real terminal can be closed and reattached later. Short start example start screen with:
# screen
Within the screen session we can start a long lasting program (like top). Detach the terminal and reattach the same terminal from an other machine (over ssh for example).
# top
or better:
# screen -R -D
Attach here and now. In detail this means: If a session is running, then reattach. If necessary detach and logout remotely first. If it was not running create it and notify the user. Screen commands (within screen) All screen commands start with Ctrl-a. Ctrl-a ? help and summary of functions
35
Ctrl-a c create an new window (terminal) Ctrl-a Ctrl-n and Ctrl-a Ctrl-p to switch to the next or previous window in the list, by number. Ctrl-a Ctrl-N where N is a number from 0 to 9, to switch to the corresponding window. Ctrl-a " to get a navigable list of running windows Ctrl-a a to clear a missed Ctrl-a Ctrl-a Ctrl-d to disconnect and leave the session running in the background Ctrl-a x lock the screen terminal with a password The screen session is terminated when the program within the running terminal is closed and you logout from the terminal.
13.7 Find
Some important options: -x (on BSD) -xdev (on Linux) Stay on the same file system (dev in fstab). -exec cmd {} \; Execute the command and replace {} with the full path -iname Like -name but is case insensitive -ls Display information about the file (like ls -la) -size n n is +-n (k M G T P) -cmin n File's status was last changed n minutes ago.
# # # # # # # # # # # # # # find find find find find find find . -type f ! -perm -444 # Find files not readable by all . -type d ! -perm -111 # Find dirs not accessible by all /home/user/ -cmin 10 -print # Files created or modified in the last 10 min. . -name '*.[ch]' | xargs grep -E 'expr' # Search 'expr' in this dir and below. / -name "*.core" | xargs rm # Find core dumps and delete them / -name "*.core" -print -exec rm {} \; # Other syntax . \( -name "*.png" -o -name "*.jpg" \) -print # iname is not case sensitive find . \( -iname "*.png" -o -iname "*.jpg" \) -print -exec tar -rf images.tar {} \; find . -type f -name "*.txt" ! -name README.txt -print # Exclude README.txt files find /var/ -size +1M -exec ls -lh {} \; find /var/ -size +1M -ls # This is simpler find . -size +10M -size -50M -print find /usr/ports/ -name work -type d -print -exec rm -rf {} \; # Clean the ports Find files with SUID; those file have to be kept secure find / -type f -user root -perm -4000 -exec ls -l {} \;
13.8 Miscellaneous
# # # # # # # # # # # # # # # # # # which command # Show full path name of command time command # See how long a command takes to execute time cat # Use time as stopwatch. Ctrl-c to stop set | grep $USER # List the current environment cal -3 # Display a three month calendar date [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]] date 10022155 # Set date and time whatis grep # Display a short info on the command or word whereis java # Search path and standard directories for word setenv varname value # Set env. variable varname to value (csh/tcsh) export varname="value" # set env. variable varname to value (sh/ksh/bash) pwd # Print working directory mkdir -p /path/to/dir # no error if existing, make parent dirs as needed rmdir /path/to/dir # Remove directory rm -rf /path/to/dir # Remove directory and its content (force) cp -la /dir1 /dir2 # Archive and hard link files instead of copy cp -lpR /dir1 /dir2 # Same for FreeBSD mv /dir1 /dir2 # Rename a directory
36
14 INSTALL SOFTWARE
14.1 List installed packages
# # # # # rpm -qa dpkg -l pkg_info pkg_info -W smbd pkginfo # # # # # List installed packages (RH, SuSE, RPM based) Debian, Ubuntu FreeBSD list all installed packages FreeBSD show which package smbd belongs to Solaris
Debian
# apt-get update # apt-get install emacs # dpkg --remove emacs # First update the package lists # Install the package emacs # Remove the package emacs
FreeBSD
# pkg_add -r rsync # pkg_delete /var/db/pkg/rsync-xx # Fetch and install rsync. # Delete the rsync package
Set where the packages are fetched from with the PACKAGESITE variable. For example:
# export PACKAGESITE=ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages/Latest/ # or ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-6-stable/Latest/
FreeBSD ports The port tree /usr/ports/ is a collection of software ready to compile and install. The ports are updated with the program portsnap.
# # # # # portsnap fetch extract portsnap fetch update cd /usr/ports/net/rsync/ make install distclean make package # # # # # Create the tree when running the first time Update the port tree Select the package to install Install and cleanup (also see man ports) Make a binary package for the port
37
15 CONVERT MEDIA
Sometimes one simply need to convert a video, audio file or document to another format.
Without the -f option, iconv will use the local char-set, which is usually fine if the document displays well.
Convert Unix to DOS newlines within a Windows environment. Use sed from mingw or cygwin.
# sed -n p unixfile.txt > dosfile.txt
Ghostscript can also concatenate multiple pdf files into a single one.
# gs -q -sPAPERSIZE=a4 -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=all.pdf \ file1.pdf file2.pdf ... # On Windows use '#' instead of '='
12.http://xiph.org/paranoia/
38
16 PRINTING
16.1 Print with lpr
# # # # # # # # # # # lpr unixtoolbox.ps # Print on default printer export PRINTER=hp4600 # Change the default printer lpr -Php4500 #2 unixtoolbox.ps # Use printer hp4500 and print 2 copies lpr -o Duplex=DuplexNoTumble ... # Print duplex along the long side lpr -o PageSize=A4,Duplex=DuplexNoTumble ... lpq # Check the queue on default printer lpq -l -Php4500 # Queue on printer hp4500 with verbose lprm # Remove all users jobs on default printer lprm -Php4500 3186 # Remove job 3186. Find job nbr with lpq lpc status # List all available printers lpc status hp4500 # Check if printer is online and queue length
17 DATABASES
17.1 PostgreSQL
Change root or a username password
# psql -d template1 -U pgsql > alter user pgsql with password 'pgsql_password'; # Use username instead of "pgsql"
Create user and database The commands createuser, dropuser, createdb and dropdb are convenient shortcuts equivalent to the SQL commands. The new user is bob with database bobdb ; use as root with pgsql the database super user:
# # # # createuser -U pgsql -P bob createdb -U pgsql -O bob bobdb dropdb bobdb dropuser bob # # # # -P will ask for password new bobdb is owned by bob Delete database bobdb Delete user bob
The general database authentication mechanism is configured in pg_hba.conf Grant remote access The file $PGSQL_DATA_D/postgresql.conf specifies the address to bind to. Typically listen_addresses = '*' for Postgres 8.x. The file $PGSQL_DATA_D/pg_hba.conf defines the access control. Examples:
# TYPE host host DATABASE bobdb all USER bob all IP-ADDRESS 212.117.81.42 0.0.0.0/0 IP-MASK 255.255.255.255 METHOD password password
Backup and restore The backups and restore are done with the user pgsql or postgres. Backup and restore a single database:
# pg_dump --clean dbname > dbname_sql.dump # psql dbname < dbname_sql.dump
39
In this case the restore is started with the database postgres which is better when reloading an empty cluster.
17.2 MySQL
Change mysql root or username password Method 1
# /etc/init.d/mysql stop or # killall mysqld # mysqld --skip-grant-tables # mysqladmin -u root password 'newpasswd' # /etc/init.d/mysql start
Method 2
# mysql -u root mysql mysql> UPDATE USER SET PASSWORD=PASSWORD("newpassword") where user='root'; mysql> FLUSH PRIVILEGES; # Use username instead of "root" mysql> quit
Grant remote access Remote access is typically permitted for a database, and not all databases. The file /etc/ my.cnf contains the IP address to bind to. Typically comment the line bind-address = out.
# mysql -u root mysql mysql> GRANT ALL ON bobdb.* TO bob@'xxx.xxx.xxx.xxx' IDENTIFIED BY 'PASSWORD'; mysql> REVOKE GRANT OPTION ON foo.* FROM bar@'xxx.xxx.xxx.xxx'; mysql> FLUSH PRIVILEGES; # Use 'hostname' or also '%' for full access
Here is "secret" the mysql root password, there is no space after -p. When the -p option is used alone (w/o password), the password is asked at the command prompt.
40
18 DISK QUOTA
A disk quota allows to limit the amount of disk space and/or the number of files a user or (or member of group) can use. The quotas are allocated on a per-file system basis and are enforced by the kernel.
Activate the quota either with the provided script (e.g. /etc/init.d/quotad on SuSE) or with quotaon:
quotaon -vu /home
As with Linux, add the quota to the fstab options (userquota, not usrquota):
/dev/ad0s1d # mount /home /home ufs rw,noatime,userquota 2 2 # To remount the partition
41
Linux
Disk quotas for user colin (uid 1007): Filesystem blocks soft /dev/sda8 108 1000 hard 2000 inodes 1 soft 0 hard 0
FreeBSD
Quotas for user colin: /home: kbytes in use: 504184, limits (soft = 700000, hard = 800000) inodes in use: 1792, limits (soft = 0, hard = 0)
For many users The command edquota -p is used to duplicate a quota to other users. For example to duplicate a reference quota to all users:
# edquota -p refuser `awk -F: '$3 > 499 {print $1}' /etc/passwd` # edquota -p refuser user1 user2 # Duplicate to 2 users
Checks Users can check their quota by simply typing quota (the file quota.user must be readable). Root can check all quotas.
# quota -u colin # repquota /home # Check quota for a user # Full report for the partition for all users
19 SHELLS
Most Linux distributions use the bash shell while the BSDs use tcsh, the bourne shell is only used for scripts. Filters are very useful and can be piped: grep Pattern matching sed Search and Replace strings or characters cut Print specific columns from a marker sort Sort alphabetically or numerically uniq Remove duplicate lines from a file For example used all at once:
# ifconfig | sed 's/ / /g' | cut -d" " -f1 | uniq | grep -E "[a-z0-9]+" | sort -r # ifconfig | sed '/.*inet addr:/!d;s///;s/ .*//'|sort -t. -k1,1n -k2,2n -k3,3n -k4,4n
The first character in the sed pattern is a tab. To write a tab on the console, use ctrl-v ctrl-tab.
19.1 bash
Redirects and pipes for bash and sh:
# # # # # # # cmd 1> file cmd 2> file cmd 1>> file cmd &> file cmd >file 2>&1 cmd1 | cmd2 cmd1 2>&1 | cmd2 # # # # # # # Redirect stdout to file. Redirect stderr to file. Redirect and append stdout to file. Redirect both stdout and stderr to file. Redirects stderr to stdout and then to file. pipe stdout to cmd2 pipe stdout and stderr to cmd2
Modify your configuration in ~/.bashrc (it can also be ~/.bash_profile). The following entries are useful, reload with ". .bashrc".
42
# in .bashrc bind '"\e[A"':history-search-backward # Use up and down arrow to search bind '"\e[B"':history-search-forward # the history. Invaluable! set -o emacs # Set emacs mode in bash (see below) set bell-style visible # Do not beep, inverse colors # Set a nice prompt like [user@host]/path/todir> PS1="\[\033[1;30m\][\[\033[1;34m\]\u\[\033[1;30m\]" PS1="$PS1@\[\033[0;33m\]\h\[\033[1;30m\]]\[\033[0;37m\]" PS1="$PS1\w\[\033[1;30m\]>\[\033[0m\]" # To check the currently active aliases, simply type alias alias ls='ls -aF' # Append indicator (one of */=>@|) alias ll='ls -aFls' # Listing alias la='ls -all' alias ..='cd ..' alias ...='cd ../..' export HISTFILESIZE=5000 # Larger history export CLICOLOR=1 # Use colors (if possible) export LSCOLORS=ExGxFxdxCxDxDxBxBxExEx
19.2 tcsh
Redirects and pipes for tcsh and csh (simple > and >> are the same as sh):
# # # # cmd >& file cmd >>& file cmd1 | cmd2 cmd1 |& cmd2 # # # # Redirect both stdout and stderr to file. Append both stdout and stderr to file. pipe stdout to cmd2 pipe stdout and stderr to cmd2
The settings for csh/tcsh are set in ~/.cshrc, reload with "source .cshrc". Examples:
# in .cshrc alias ls 'ls -aF' alias ll 'ls -aFls' alias la 'ls -all' alias .. 'cd ..' alias ... 'cd ../..' set prompt = "%B%n%b@%B%m%b%/> " # like user@host/path/todir> set history = 5000 set savehist = ( 6000 merge ) set autolist # Report possible completions with tab set visiblebell # Do not beep, inverse colors # Bindkey and colors bindkey -e Select Emacs bindings # Use emacs keys to edit the command prompt bindkey -k up history-search-backward # Use up and down arrow to search bindkey -k down history-search-forward setenv CLICOLOR 1 # Use colors (if possible) setenv LSCOLORS ExGxFxdxCxDxDxBxBxExEx
The emacs mode enables to use the emacs keys shortcuts to modify the command prompt line. This is extremely useful (not only for emacs users). The most used commands are: C-a Move cursor to beginning of line C-e Move cursor to end of line M-b Move cursor back one word M-f Move cursor forward one word M-d Cut the next word C-w Cut the last word C-u Cut everything before the cursor C-k Cut everything after the cursor (rest of the line) C-y Paste the last thing to be cut (simply paste) C-_ Undo Note: C- = hold control, M- = hold meta (which is usually the alt or escape key).
43
20 SCRIPTING
Basics (p44) | Script example (p45) | sed/useful commands (p45) The Bourne shell (/bin/sh) is present on all Unix installations and scripts written in this language are (quite) portable; man 1 sh is a good reference.
20.1 Basics
Variables and arguments Assign with variable=value and get content with $variable
MESSAGE="Hello World" PI=3.1415 N=8 TWON=`expr $N * 2` TWON=$(($N * 2)) TWOPI=`echo "$PI * 2" | bc -l` ZERO=`echo "c($PI/4)-sqrt(2)/2" | bc -l` # Assign a string # Assign a decimal number # Arithmetic expression (only integers) # Other syntax # Use bc for floating point operations
Special Variables
$$ $? command if [ $? != 0 ]; then echo "command failed" fi mypath=`pwd` mypath=${mypath}/file.txt echo ${mypath##*/} echo ${mypath%%.*} var2=${var:=string} # The current process ID # exit status of last command
# # # #
Display the filename only Full path without extention Use var if set, otherwise use string assign string to var and then to var2.
Constructs
for file in `ls` do echo $file done count=0 while [ $count -lt 5 ]; do echo $count sleep 1 count=$(($count + 1)) done myfunction() { find . -type f -name "*.$1" -print } myfunction "txt" # $1 is first argument of the function
44
Generate a file
MYHOME=/home/colin cat > testhome.sh << _EOF # All of this goes into the file testhome.sh if [ -d "$MYHOME" ] ; then echo $MYHOME exists else echo $MYHOME does not exist fi _EOF sh testhome.sh
prince $file -o $fname.pdf # from www.princexml.com pdftops -paper A4 -noshrink $fname.pdf $fname.ps # create postscript booklet cat $fname.ps |psbook|psnup -Pa4 -2 |pstops -b "2:0,1U(21cm,29.7cm)" > $fname.book.ps ps2pdf13 -sPAPERSIZE=a4 -sAutoRotatePages=None $fname.book.ps $fname.book.pdf # use #a4 and #None on Windows! exit 0 # exit 0 means successful
45
testuser=$(cat /usr/local/etc/apache2/passwd | grep -v \ # Check user in passwd root | grep -v \*: | awk -F":" '{ printf("%s\n", $1) }' | grep ^user$)
21 PROGRAMMING
21.1 C basics
strcpy(newstr,str) expr1 ? expr2 : expr3 x = (y > z) ? y : z; int a[]={0,1,2}; int a[2][3]={{1,2,3},{4,5,6}}; /* /* /* /* /* copy str to newstr */ if (expr1) expr2 else expr3 */ if (y > z) x = y; else x = z; */ Initialized array (or a[3]={0,1,2}; */ Array of array of ints */
21.2 C example
A minimal c program simple.c:
#include <stdio.h> main() { int number=42; printf("The answer is %i\n", number); }
Compile with:
# gcc simple.c -o simple # ./simple The answer is 42
46
IPv4.cpp:
#include "IPv4.h" #include <string> #include <sstream> using namespace std; using namespace GenericUtils; IPv4::IPv4() {} IPv4::~IPv4() {} string IPv4::IPint_to_IPquad(unsigned long ip) { ostringstream ipstr; ipstr << ((ip &0xff000000) >> 24) << "." << ((ip &0x00ff0000) >> 16) << "." << ((ip &0x0000ff00) >> 8) << "." << ((ip &0x000000ff)); return ipstr.str(); }
// use the namespaces // default constructor/destructor // member implementation // use a stringstream // Bitwise right shift
Use ldd to check which libraries are used by the executable and where they are located. This command is also used to check if a shared library is missing or if the executable is static.
# ldd /sbin/ifconfig
47
22 ONLINE HELP
22.1 Documentation
Linux Documentation en.tldp.org Linux Man Pages www.linuxmanpages.com FreeBSD Handbook www.freebsd.org/handbook FreeBSD Man Pages www.freebsd.org/cgi/man.cgi Solaris Man Pages docs.sun.com/app/docs/coll/40.10
This document: "Unix Toolbox revision 10.1" is licensed under a Creative Commons Licence [Attribution - Share Alike]. Colin Barschel 2007-2008. Some rights reserved.
48