fuser -m /dev/mount <- kill them all umount -l /dev/mount
just be sure to clean up after yourself.
fuser -m /dev/mount <- kill them all umount -l /dev/mount
# init q
#!/bin/sh year=2010 month=1 x=1 while [ $x -le 20 ] do until [ $month -gt 12 ] do cal=`cal $month $year | grep ^31` if [ -z "$cal" ] then echo -n "" else echo cal $month $year fi month=`expr $month + 1` done month=1 year=`expr $year + 1` x=$(( $x + 1 )) done
Edit configuration files stored in /etc/sysconfig/network-scripts/ , /etc/sysconfig & /etc First, edit network interface card files: * /etc/sysconfig/network-scripts/ifcfg-eth0 * /etc/sysconfig/network-scripts/ifcfg-eth1 &c. ## Intel Corporation 82573E Gigabit Ethernet Controller (Copper) DEVICE=eth0 BOOTPROTO=static DHCPCLASS= HWADDR=00:30:48:56:A6:2E IPADDR=192.168.10.3 NETMASK=255.255.255.192 ONBOOT=yes Edit the file which contains gatway and hostname: * /etc/sysconfig/network ## network NETWORKING=yes HOSTNAME=super.silly.domain.com GATEWAY=192.168.10.1 Edit DNS server configuration file: * /etc/resolv.conf file: ## resolv.conf search domain.com silly.domain.com nameserver 192.168.10.1 nameserver 192.168.10.2 domain domain.com Restart networking: # /etc/init.d/network restart Do a couple tests: $ ping 192.168.10.1 Output: PING 192.168.10.1 (192.168.10.1) 56(84) bytes of data. 64 bytes from 192.168.10.1: icmp_seq=1 ttl=251 time=0.972 ms 64 bytes from 192.168.10.1: icmp_seq=2 ttl=251 time=1.11 ms You can also check for Internet connectivity with nslookup or host command: $ nslookup not.silly.domain.com Output: Server: 192.168.10.1 Address: 192.168.10.1#53 Non-authoritative answer: Name: not.silly.domain.com Address:192.168.10.4
Instead of the first five fields, one of eight special strings may appear: string meaning ------ ------- @reboot Run once, at startup. @yearly Run once a year, "0 0 1 1 *". @annually (same as @yearly) @monthly Run once a month, "0 0 1 * *". @weekly Run once a week, "0 0 * * 0". @daily Run once a day, "0 0 * * *". @midnight (same as @daily) @hourly Run once an hour, "0 * * * *".
To configure runtime linking environment in Sun Solaris: # crle [-64] [-a name] [-c conf] [-e env] [-E env] [-f flags] [-i name] [-I name] [-g name] [-G name] [-l dir] [-o dir] [-s dir] [-t [ ELF | AOUT] ] [-u] [-v] Example to update a new default search path for ELF objects: # crle -u -l /local/lib Example to create a new default search path and new trusted directory for ELF objects: # crle -l /local/lib -l /usr/lib -s /local/lib Example to display search path: # crle Example of creation of a directory cache for ELF objects: # crle -i /usr/dt/lib -i /usr/openwin/lib -i /usr/lib -c config Example for creation of an alternative object cache for an ELF executable: # crle -c /local/$HOST/.xterm/ld.config.xterm -f RTLD_REL_ALL -G /usr/openwin/bin/xterm # ln -s /local/$HOST/.xterm/xterm /local/$HOST/xterm # ldd /usr/local/$HOST/xterm Example for setting replaceable and permanent environment variables: # crle -e LD_LIBRARY_PATH=/local/lib -E LD_PRELOAD=preload.so.1
* Boot into Single User Maintenance Mode off of the install media. * cd into /var/ld * remove ld.config * Once the system is live, advise someone to update crle (crle -u -l) and not create a brand new link (crle -l)