Commands: Difference between revisions

From Halfface
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
<pre>
set up tunnel
putty -l bjorklun -pw password -L 19242:192.168.0.42:3389 blt.homeip.net
putty -l bjorklun -pw password -L 19242:192.168.0.42:3389 blt.homeip.net


dd if=/dev/hda of=/dev/fd0 bs=512 count=1
copy mbr
dd if=/dev/hda of=/dev/fd0 bs=512 count=1


bash:
series of numbers
Get a list from 01 to 99.
bash:
for ((a=100;a <= 199 ;a++)); do echo "$a"; done | cut -b2-3
Get a list from 01 to 99.
for ((a=100;a <= 199 ;a++)); do echo "$a"; done | cut -b2-3


install src.rpm
install src.rpm
rpmbuild --rebuild alien-6.51-1.src.rpm
rpmbuild --rebuild alien-6.51-1.src.rpm
rpm -i /usr/src/redhat/RPMS/x86_64/alien-6.51-1.rpm
rpm -i /usr/src/redhat/RPMS/x86_64/alien-6.51-1.rpm


List contents of rpm.
List contents of rpm.
rpm -qlp myfile.rpm
rpm -qlp myfile.rpm


Extract contents of rpm.
Extract contents of rpm.
rpm2cpio *.rpm | cpio -i --make-directories
rpm2cpio *.rpm | cpio -i --make-directories


Clean file from comments and blank lines.
Clean file from comments and blank lines.
sed '/ *#/d; /^ *$/d'
sed '/ *#/d; /^ *$/d'


Update release area Windows.
Update release area Windows.
servicepack.exe -s:z:\w2k3
servicepack.exe -s:z:\w2k3


Syncronize folders.
Syncronize folders.
rsync --delete -az -e ssh acrobatreader acdse office2003 java nortonantivirus bjorklun@semco.homeip.net:/install/program/windows/
rsync --delete -az -e ssh acrobatreader acdse office2003 java nortonantivirus bjorklun@semco.homeip.net:/install/program/windows/


crontab.
crontab.
* * * * *  command to be executed
* * * * *  command to be executed
- - - - -
- - - - -
| | | | |
| | | | |
| | | | +----- day of week (0 - 6) (Sunday=0)
| | | | +----- day of week (0 - 6) (Sunday=0)
| | | +------- month (1 - 12)
| | | +------- month (1 - 12)
| | +--------- day of month (1 - 31)
| | +--------- day of month (1 - 31)
| +----------- hour (0 - 23)
| +----------- hour (0 - 23)
+------------- min (0 - 59)
+------------- min (0 - 59)
0 Sunday
0 Sunday
1 Monday
1 Monday
2 Tuesday
2 Tuesday
3 Wednesday
3 Wednesday
4 Thursday
4 Thursday
5 Friday
5 Friday
6 Saturday
6 Saturday  


Automated login on a user basis.
Automated login on a user basis via ssh.
ssh-keygen -t dsa                    Generate personal ssh keys.
ssh-keygen -t dsa                    Generate personal ssh keys.
cat id_dsa.pub >> authorized_keys2  Copy your personal ssh key to all machines.
cat id_dsa.pub >> authorized_keys2  Copy your personal ssh key to all machines.
chmod 644 ~/.ssh/authorized_keys2    Verify correct access on files.
chmod 644 ~/.ssh/authorized_keys2    Verify correct access on files.


-forward traffic.
-forward traffic.
service x11
service x11
{
{
        disable = no
        disable = no
        socket_type = stream
        socket_type = stream
        protocol = tcp
        protocol = tcp
        wait = no
        wait = no
        user = root
        user = root
        server = /usr/bin/nc
        server = /usr/bin/nc
        server_args = 172.28.37.152 6000
        server_args = 172.28.37.152 6000
}
}
</pre>


reboot
reboot
  Hard reboot mean that shutdown scripts will not run and machine reboot immediately without syncing hard disk drives, shutdown applications etc.
  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 1 > /proc/sys/kernel/sysrq
Line 69: Line 69:
  This commands enable sysrq and after this call fast reboot. If you want to force shutdown machine try this.
  This commands enable sysrq and after this call fast reboot. If you want to force shutdown machine try this.


Force shutdown
Force shutdown
  echo 1 > /proc/sys/kernel/sysrq  
  echo 1 > /proc/sys/kernel/sysrq  
  echo o > /proc/sysrq-trigger
  echo o > /proc/sysrq-trigger


ffmpeg
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
  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

Revision as of 09:42, 20 April 2007

set up tunnel

putty -l bjorklun -pw password -L 19242:192.168.0.42:3389 blt.homeip.net

copy mbr

dd if=/dev/hda of=/dev/fd0 bs=512 count=1

series of numbers

bash:
Get a list from 01 to 99.
for ((a=100;a <= 199 ;a++)); do echo "$a"; done | cut -b2-3

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 file from comments and blank lines.

sed '/ *#/d; /^ *$/d'

Update release area Windows.

servicepack.exe -s:z:\w2k3

Syncronize folders.

rsync --delete -az -e ssh acrobatreader acdse office2003 java nortonantivirus bjorklun@semco.homeip.net:/install/program/windows/

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 

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.

-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