Advanced Programming in the UNIX® Environment: Second Edition
Latest Updates: unix RSS
-
liduan
-
liduan
using rdesktop can remote control windows computer by using unix.example:
$rdesktop -f <ip address>
-f is mean full screen.
-
liduan
a shell script for quick uploading one file via ftp:
#!/bin/bash
ftp -v -n http://ftp.server.com <user yourUserName yourPassword
mput $1
bye
END
-
liduan
using command ‘badbloocks’ check bad block on the device.
$badblocks -c -v /dev/sda1-c blocks at once
-v verbose modein the freebsd system, smart montools can be used:
$cd /usr/ports/sysutils/smartmontools
$make config install clean
$smartctl -a /dev/ad0 // quick checking and check all
$smartctl -t long /dev/ad0 // check and test
-
liduan
online regular expressions test tools. it provides support for flags.
-
liduan
unix shell programming tutorial for command awk, and a chinese version is available.