Commands: Difference between revisions
Jump to navigation
Jump to search
(→vi) |
(→ssh) |
||
Line 77: | Line 77: | ||
-R port:host:hostport | -R port:host:hostport | ||
ssh -N -L 2222:www.halfface.se:22 www.halfface.se | ssh -N -L 2222:www.halfface.se:22 www.halfface.se | ||
ssh -nNTx -R 2222:www.halfface.se:22 www.halfface.se | ssh -nNTx -R 2222:www.halfface.se:22 www.halfface.se | ||
==forward traffic== | ==forward traffic== |
Revision as of 18:01, 5 February 2008
man
man correct caracters.
LANG=C man passwd
man clean for output to file.
man [manual] | col -b > file.txt
puppet
set up tunnel
putty -l bjorklun -pw password -L 19242:192.168.0.42:3389 blt.homeip.net
mbr
backup mbr.
# dd if=/dev/sdX of=/temp/sdx-mbr bs=512 count=1
restore mbr
# dd if=/temp/sdx-mbr of=/dev/sdX bs=446 count=1
numbers
series of numbers
bash: Get a list from 01 to 99. for ((a=100;a <= 199 ;a++)); do echo "$a"; done | cut -b2-3
rpm
install src.rpm
rpmbuild --rebuild alien-6.51-1.src.rpm rpm -i /usr/src/redhat/RPMS/x86_64/alien-6.51-1.rpm
List contents of rpm.
rpm -qlp myfile.rpm
Extract contents of rpm.
rpm2cpio *.rpm | cpio -i --make-directories
clean
Clean file from comments and blank lines.
sed '/ *#/d; /^ *$/d'
Update release area Windows.
servicepack.exe -s:z:\w2k3
rsync
Syncronize folders.
rsync --delete -az -e ssh acrobatreader acdse office2003 java nortonantivirus bjorklun@semco.homeip.net:/install/program/windows/
crontab
crontab.
* * * * * command to be executed - - - - - | | | | | | | | | +----- day of week (0 - 6) (Sunday=0) | | | +------- month (1 - 12) | | +--------- day of month (1 - 31) | +----------- hour (0 - 23) +------------- min (0 - 59) 0 Sunday 1 Monday 2 Tuesday 3 Wednesday 4 Thursday 5 Friday 6 Saturday
ssh
Automated login on a user basis via ssh.
ssh-keygen -t dsa Generate personal ssh keys. cat id_dsa.pub >> authorized_keys2 Copy your personal ssh key to all machines. chmod 644 ~/.ssh/authorized_keys2 Verify correct access on files.
Tunnel ssh -nNTx -R 8728:localhost:8805 brscs20.brs.infineon.com > /dev/null 2>&1 -n Dont take console. Good for background. -N Do not execute a remote command -T Disable pseudo-tty allocation. -x Disables X11 forwarding. -R port:host:hostport
ssh -N -L 2222:www.halfface.se:22 www.halfface.se ssh -nNTx -R 2222:www.halfface.se:22 www.halfface.se
forward traffic
service x11 { disable = no socket_type = stream protocol = tcp wait = no user = root server = /usr/bin/nc server_args = 172.28.37.152 6000 }
reboot
Hard reboot mean that shutdown scripts will not run and machine reboot immediately without syncing hard disk drives, shutdown applications etc. echo 1 > /proc/sys/kernel/sysrq echo b > /proc/sysrq-trigger This commands enable sysrq and after this call fast reboot. If you want to force shutdown machine try this.
Force shutdown
echo 1 > /proc/sys/kernel/sysrq echo o > /proc/sysrq-trigger
ffmpeg
ffmpeg -y -deinterlace -aspect 16:9 -author "Andreas Bjorklund" -title "Tanzania" -year 2007 -i Tanzania.m2t -acodec mp3 -vcodec mpeg4 -b 3000k -s 720x540 test.avi
logging
bash create log.
#!/bin/bash exec > /logfile
alternative
exec 2>/tmp/log
rename
rename series.
for i in *; do mv "$i" "`basename $i .mpg`bajs.mpg"; done
ntfs-3g
mount ntfs filesystem. read and write.
yum install fuse fuse-libs ntfs-3g mount /dev/sda1 /media/c_drive -t ntfs-3g -r -o umask=0222,locale=en_US mount /dev/sda1 /media/c_drive -t ntfs-3g -rw -o umask=0000,locale=en_US fstab read and write. /dev/sda3 /media/e_drive ntfs-3g ro,defaults,umask=0222 0 0 /dev/sda1 /media/c_drive ntfs-3g rw,defaults,umask=0000 0 0
mplayer
mplayer in ascii mode.
mplayer -monitoraspect 4:3 -vo aa LinaFreestyler.avi
vi
:set ignorecase :set list show all keys. :set nolist show their representative.
codepage
Change codepage of file.
convmv -f cp850 -t iso-8859-1 --notest * convmv -f utf8 -t iso8859-1 -r --notest *
keyboard
keymaps dumpkeys loadkeys sv-latin1 setxkbmap en
date
date '+%Y-%m-%d %H:%M' date +%Y-%m-%d-%H%M