# repository bekanntmachen wget -q -O - http://linux.dell.com/repo/community/bootstrap.cgi | bash wget -q -O - http://linux.dell.com/repo/firmware/bootstrap.cgi | bash wget -q -O - http://linux.dell.com/repo/hardware/latest/bootstrap.cgi | bash # bin nicht sicher, ob srvadmin-all für die firmware tools benötigt wird, # wenn kein dell openmanage gewünscht #yum install srvadmin-all yum -y install firmware-addon-dell yum install dell_ft_install yum install $(bootstrap_firmware) # vorhande Firmware auflisten inventory_firmware update_firmware update_firmware --yes reboot
Sysadmin Notes
A collection of linux logs/notes/receipes for later reference/reuse. Use at Your own risk
Dienstag, 13. September 2011
Dell Firmware Tools Centos 6
Montag, 12. September 2011
Dell OMSA auf Ubuntu 10.x installieren
Die Anleitung liegt unter
http://linux.dell.com/repo/community/deb/OMSA_6.5/
die Dell Firmware-Tools kann man unter Ubuntu so installieren:
Unter Ubuntu gibt es aber häufig Fehler, während es unter Centos 5 und Centos 6 gut funktioniert.
http://linux.dell.com/repo/community/deb/OMSA_6.5/
die Dell Firmware-Tools kann man unter Ubuntu so installieren:
# set up repos wget -q -O - http://linux.dell.com/repo/firmware/bootstrap.cgi | bash aptitude install firmware-addon-dell aptitude install $(bootstrap_firmware -a) update_firmware
Unter Ubuntu gibt es aber häufig Fehler, während es unter Centos 5 und Centos 6 gut funktioniert.
Mittwoch, 18. Mai 2011
Zebra TLP2844 Etiketten
Hi B.,
diese benutzen wir in L: Bestellnummer 28082 bei ESTO
Etikettenrollen Polyester weiss 38 x 13 mm Zebra 880243-012D Rolle mit je 4.650 Etiketten
weitere Labels für den Zebra TLP2844:
PP 30x15mm
PP 38x13mm
PP 38x23mm
PE 38x23mm
Wichtig: nach dem Einlegen der Etikettenrolle den TLP2844 Drucker neu kalibrieren:
Stromzufuhr ausschalten, dan mit gedrücktem
grünen Knopf wieder einschalten, gedrückt halten bis es rot blinkt
Drucker kalibriert jetzt Etikettenhöhe/Abstand
Nach der Kalibrierung einmal kurz den grünen Knopf drücken
siehe auch http://www.youtube.com/watch?v=mD7nrSsyp7s
diese benutzen wir in L: Bestellnummer 28082 bei ESTO
Etikettenrollen Polyester weiss 38 x 13 mm Zebra 880243-012D Rolle mit je 4.650 Etiketten
weitere Labels für den Zebra TLP2844:
PP 30x15mm
PP 38x13mm
PP 38x23mm
PE 38x23mm
Wichtig: nach dem Einlegen der Etikettenrolle den TLP2844 Drucker neu kalibrieren:
Stromzufuhr ausschalten, dan mit gedrücktem
grünen Knopf wieder einschalten, gedrückt halten bis es rot blinkt
Drucker kalibriert jetzt Etikettenhöhe/Abstand
Nach der Kalibrierung einmal kurz den grünen Knopf drücken
siehe auch http://www.youtube.com/watch?v=mD7nrSsyp7s
Donnerstag, 20. Januar 2011
Linux Cache-Speicher freigeben
#works for Kernels 2.6.16 and up
#flush file system buffers (sync to disc)
sync
#drop page-cache directory-entries and inode-cache
echo 3 > /proc/sys/vm/drop_caches
#more info at http://www.linuxinsight.com/proc_sys_vm_drop_caches.html
#flush file system buffers (sync to disc)
sync
#drop page-cache directory-entries and inode-cache
echo 3 > /proc/sys/vm/drop_caches
#more info at http://www.linuxinsight.com/proc_sys_vm_drop_caches.html
Mittwoch, 19. Januar 2011
Centos 5.5 Live auf USB Stick
Receipe adapted from http://www.pendrivelinux.com/usb-centos-5-live-install-via-windows/ :
Create a CentOS 5.5 64bit Live USB Flash Drive in Windows:
1. Download the Fedora liveusb-creator-x-x.zip and extract
https://fedorahosted.org/releases/l/i/liveusb-creator/liveusb-creator-3.7.zip
2. Download CentOS-5.5-x86_64-LiveCD.iso
http://ftp.halifax.rwth-aachen.de/centos/5.5/isos/x86_64/CentOS-5.5-x86_64-LiveCD.iso
3. Navigate to the liveusb-creator-x-x folder and click liveusb-creator.exe to launch the tool
4. A progress bar will indicate the progress of your USB CentOS creation. Once the process has finished, restart your PC and set your System BIOS or Boot Menu to boot from the USB flash drive
Create a CentOS 5.5 64bit Live USB Flash Drive in Windows:
1. Download the Fedora liveusb-creator-x-x.zip and extract
https://fedorahosted.org/releases/l/i/liveusb-creator/liveusb-creator-3.7.zip
2. Download CentOS-5.5-x86_64-LiveCD.iso
http://ftp.halifax.rwth-aachen.de/centos/5.5/isos/x86_64/CentOS-5.5-x86_64-LiveCD.iso
3. Navigate to the liveusb-creator-x-x folder and click liveusb-creator.exe to launch the tool
4. A progress bar will indicate the progress of your USB CentOS creation. Once the process has finished, restart your PC and set your System BIOS or Boot Menu to boot from the USB flash drive
Donnerstag, 6. Januar 2011
Resizing + creating LVM partitions
display logical volumes:
:~# vgdisplay -v vg00
#resize a partition and the filesystem on it:
:~# lvextend -L +20G /dev/vg00/var
:~# xfs_growfs /var
#create a new volume in volumegroup vg00
:~# lvcreate -L 75G -n data2 vg00
:~# mkfs.xfs /dev/vg00/data2
:~# mkdir /data2
:~# mount -t xfs /dev/vg00/data2 /data2
:~# nano /etc/fstab
:~# vgdisplay -v vg00
#resize a partition and the filesystem on it:
:~# lvextend -L +20G /dev/vg00/var
:~# xfs_growfs /var
#create a new volume in volumegroup vg00
:~# lvcreate -L 75G -n data2 vg00
:~# mkfs.xfs /dev/vg00/data2
:~# mkdir /data2
:~# mount -t xfs /dev/vg00/data2 /data2
:~# nano /etc/fstab
Mittwoch, 27. Oktober 2010
Forcing Dell Firmware Upgrade
If You know what You are doing, use the /forcetype flag with dos-based dell bios-update executables (tested with several poweredge series servers)
Abonnieren
Posts (Atom)