Tags
- 235
- 80386
- AS/400
- atw
- bash
- brocade
- calendar
- dd
- device manager
- devices
- DOS
- esxi
- Explorer
- floppy
- GPS
- gpx
- ibm
- icloud
- Imoff
- iSeries
- linux
- lsx 3010
- M316
- macos
- modem
- MS SQL
- mtcp
- netapp
- netfinity
- Nordkap
- olivetti
- P30 error
- retro
- retroNET
- san
- smvi
- T4600C
- Test
- thunderbird
- toshiba
- vintage
- vmware
- win2012
- Windows
- zyxel
-
Recent Posts
Archives
- April 2021
- March 2021
- February 2021
- May 2020
- April 2019
- April 2017
- February 2017
- September 2016
- June 2016
- May 2016
- April 2016
- March 2016
- February 2016
- July 2015
- June 2015
- May 2015
- April 2015
- March 2015
- February 2015
- January 2015
- December 2014
- November 2014
- September 2014
- January 2014
- June 2013
- November 2012
- September 2012
- August 2012
- July 2012
- June 2012
Categories
Category Archives: Linux
CentOS/RedHat 6 iSCSI connections with multipathing
small Howto… Install multipathing RPMs: yum install device-mapper yum install device-mapper-multipath start multipath service service multipathd start configure autostart for multipath service chkconfig multipathd on optional: install Netapp host utilities when using a filer http://mysupport.netapp.com/NOW/download/software/sanhost_linux/6.2/download.shtml rpm -ivh netapp_linux_host_utilities-6-2.x86_64.rpm loading the … Continue reading
Bash Script zum Schwanzlänge messen…
#!/bin/sh echo `uptime|grep days|sed ‘s/.*up \([0-9]*\) day.*/\1\/10+/’; \ cat /proc/cpuinfo|grep MHz|awk ‘{print $4″/30 +”;}’; free|grep ‘^Mem’ \ | awk ‘{print $3″/1024/3+”}’; df -P -k -x nfs | grep -v 1k \ | awk ‘{if ($1 ~ “/dev/(scsi|sd)”){ s+= $2} … Continue reading
back script
vi /usr/bin/back #!/bin/bash if ! [ -f $1 ]; then echo “File ‘$1’ does not exist!” exit 1 fi if [ -f $1.$(date +%d%m%Y) ]; then counter=2 while [ -f $1.$(date +%d%m%Y)_$counter ]; do let counter=$counter+1 done cp $1 $1.$(date … Continue reading
Posted in Linux
Comments Off on back script