ping -b 192.168.0.255
but windows host does not reply broadcast ping
2. use network mapper, nmap
nmap -sP 192.168.0.0/24
-sP: ping scan
3. if a host be set to discard ping request, try to use arping with loop
ping -b 192.168.0.255
nmap -sP 192.168.0.0/24
[n97]
profile-desc="MPEG4/AAC"
vf=scale=640:-3,harddup
ovc=lavc=yes
oac=lavc=yes
lavcopts=aglobal=1:vglobal=1:acodec=libfaac:vcodec=mpeg4:abitrate=96:vbitrate=896
af=lavcresample=44100
ofps=25
of=lavf=yes
lavfopts=format=mp4
[profile2]
..
..
mencoder -profile n97 -o output.mp4 input_file
$ ls -l /sys/module/snd/holders
total 0
lrwxrwxrwx 1 root root 0 2009-08-13 09:21 saa7134_alsa -> ../../saa7134_alsa
lrwxrwxrwx 1 root root 0 2009-08-13 09:21 snd_hda_codec -> ../../snd_hda_codec
lrwxrwxrwx 1 root root 0 2009-08-13 09:21 snd_hda_codec_realtek -> ../../snd_hda_codec_realtek
lrwxrwxrwx 1 root root 0 2009-08-13 09:21 snd_hda_intel -> ../../snd_hda_intel
lrwxrwxrwx 1 root root 0 2009-08-13 09:21 snd_hwdep -> ../../snd_hwdep
lrwxrwxrwx 1 root root 0 2009-08-13 09:21 snd_mixer_oss -> ../../snd_mixer_oss
lrwxrwxrwx 1 root root 0 2009-08-13 09:21 snd_pcm -> ../../snd_pcm
lrwxrwxrwx 1 root root 0 2009-08-13 09:21 snd_pcm_oss -> ../../snd_pcm_oss
lrwxrwxrwx 1 root root 0 2009-08-13 09:21 snd_rawmidi -> ../../snd_rawmidi
lrwxrwxrwx 1 root root 0 2009-08-13 09:21 snd_seq -> ../../snd_seq
lrwxrwxrwx 1 root root 0 2009-08-13 09:21 snd_seq_device -> ../../snd_seq_device
lrwxrwxrwx 1 root root 0 2009-08-13 09:21 snd_seq_oss -> ../../snd_seq_oss
lrwxrwxrwx 1 root root 0 2009-08-13 09:21 snd_timer -> ../../snd_timer
lrwxrwxrwx 1 root root 0 2009-08-13 09:21 snd_usb_audio -> ../../snd_usb_audio
vi /etc/modprobe.d/modprobe.conf
--
options snd_hda_intel index=0
gpasswd -a username audio
lsmod | grep ^snd_
alsactl store
# restore
# alsactl restore
mount -t cifs -o iocharset=utf8,username="username",password="password" //ip/share /mountpoint
fbinst.exe -h
fbinst.exe -l
fbinst.exe (hd1) format --force --extended 4M
fbinst.exe (hd1) add grldr c:\grldr
fbinst.exe (hd1) add --syslinux ldlinux.bin c:\ldlinux.bin
fbinst.exe (hd1) add ntldr c:\ntldr
default 0
timeout 5
text "F1: GRUB"
menu F1 grldr grldr
text "F2: SYSLINUX"
menu F2 syslinux ldlinux.bin
text "F3: NTLDR"
menu F3 grldr ntldr
fbinst (hd1) add-menu fb.cfg c:\fb.txt
fbinst (hd1) info
vi /etc/ssh/sshd_config
--
..
PermitRootLogin no
..
vi config.inc.php
--
..
$cfg['Servers'][$i]['AllowRoot'] = FALSE;
..
mysqldump -u username -p db_name > backup.sql
mysqldump db_name table > backup.sql
mysqldump --databse db_name1 db_name2 .. > databases.sql
mysqldump --all-databases > all_databases.sql
mysql> create database db_name;
mysql -u username -p < backup.sql