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
A collection of linux logs/notes/receipes for later reference/reuse. Use at Your own risk
Mittwoch, 18. Mai 2011
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)
Donnerstag, 14. Oktober 2010
Dell Openmanage in Esxi 4 installieren
Wenn noch nicht geschehen, zunächst vSphere CLI installieren,
######################################################################################
Openmanage Dienstprogramme in Esxi Hostsystem installieren
Passende OMSA ESXi Datei bei Dell herunterladen, derzeit
OM-SrvAdmin-Dell-Web-6.3.0-2075.VIB-ESX40i_A00.9.zip
C:\Program Files\VMware\VMware vSphere CLI\bin>vihostupdate.pl --server 192.xxx.xxx.xxx -i -b OM-SrvAdmin-Dell-Web-6.3.0-2075.VIB-ESX40i_A00.9.zip
Enter username:
Enter password:
Please wait patch installation is in progress ...
The update completed successfully, but the system needs to be rebooted for the c
hanges to be effective.
#######################################################################################
######################################################################################
Openmanage Dienstprogramme in Esxi Hostsystem installieren
Passende OMSA ESXi Datei bei Dell herunterladen, derzeit
OM-SrvAdmin-Dell-Web-6.3.0-2075.VIB-ESX40i_A00.9.zip
C:\Program Files\VMware\VMware vSphere CLI\bin>vihostupdate.pl --server 192.xxx.xxx.xxx -i -b OM-SrvAdmin-Dell-Web-6.3.0-2075.VIB-ESX40i_A00.9.zip
Enter username:
Enter password:
Please wait patch installation is in progress ...
The update completed successfully, but the system needs to be rebooted for the c
hanges to be effective.
#######################################################################################
Dienstag, 24. August 2010
Providing single remote Applications from Windows XP under ESXi using RemoteApp RDP
Instead of opening the entire remote desktop on a Windows XP Machine, it is often desirable to provide only a single application (running on Windows XP in a Vware ESXi Server) via RDP to local clients.
The advantage of RemoteApp is seamless integration of the remote application windows with the clients local desktop and usually a better performance/user experience than, for example VNC single window mode.
Think of it as an "impoverished scientist's citrix metaframe" kind of thing.
Please note that since XP SP2 concurrent RDP sessions are disabled - enabling it involves patching termsrv.dll and some registry settings - which seems to work but will not be covered here.
There are several howto's for enabling Remoteapp on the web, but i want to document/summarize the steps needed to make this work with Windows XP pro as host and client.
Server: Windows XP pro SP3 fresh install running inside VMware ESXi 4.x
Client: Notebook with Windows XP pro SP3
The advantage of RemoteApp is seamless integration of the remote application windows with the clients local desktop and usually a better performance/user experience than, for example VNC single window mode.
Think of it as an "impoverished scientist's citrix metaframe" kind of thing.
Please note that since XP SP2 concurrent RDP sessions are disabled - enabling it involves patching termsrv.dll and some registry settings - which seems to work but will not be covered here.
There are several howto's for enabling Remoteapp on the web, but i want to document/summarize the steps needed to make this work with Windows XP pro as host and client.
My Setup
:Server: Windows XP pro SP3 fresh install running inside VMware ESXi 4.x
Client: Notebook with Windows XP pro SP3
Configuring the Server
- Make sure that XP pro Service Pack 3 is installed
- Download and install
http://www.microsoft.com/downloads/details.aspx?familyid=2F376F53-83CF-4E5B-9515-2CB70662A81B&displaylang=en
(make sure the selected language matches the language of your XP server)
Download and install
http://www.microsoft.com/downloads/details.aspx?FamilyId=72158b4e-b527-45e4-af24-d02938a95683&displaylang=en
(make sure the selected language matches the language of your XP server)
- run
regediton the XP host and find the key TsAppAllowList
(HKLM\Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\TsAppAllowList)
- Add a new key "Applications"
- in
HKLM\Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\TsAppAllowList\Applications, add a new subkey for each program you you want to ake available through RDP Remoteapp.
We will take SYSTATs free MySTAT statistics package as an elaborate
Example:
- Create a sub-key named "mystat"
- In
HKLM\Software\Microsoft\Windows NT\CurrentVersion\Terminal Server\TsAppAllowList\Applications\mystat, add a string value named "Path" containing the full path to the Program, e.g. "C:\Programme\MYSTAT12\App\MYSTAT.exe""
Configuring the Client
- Download and install http://www.microsoft.com/downloads/details.aspx?FamilyId=72158b4e-b527-45e4-af24-d02938a95683&displaylang=en (make sure the selected language matches the language of your XP client)
configure a normal Rdesktop connection to your host and click "save_as" to save the rdp_file to Your desktop using a descriptive filename such as "mystat12_test.rdp"
Use a text editor (like notepad or PSpad) to edit "mystat12_test.rdp"
Add (or change) the following lines:
remoteapplicationmode:i:1
remoteapplicationprogram:s:||mystat
disableremoteappcapscheck:i:1
alternate shell:s:rdpinit.exe
If you want specific local drives mapped on the server, add:
drivestoredirect:s:Lokaler Datenträger (C:);DynamicDrives
(syntax wants actual name of your drives)
Or if You want to map all local Drives:
drivestoredirect:s:*
If you want to log on as a predefined user (with the option to save your password for later logins), add a line specifying the user name:
username:s:your_username_on_the_host_here
- A listing of my working example file follows:
screen mode id:i:2
desktopwidth:i:1024
desktopheight:i:768
session bpp:i:24
winposstr:s:0,1,0,0,986,740
full address:s:192.168.1.214
compression:i:1
keyboardhook:i:2
audiomode:i:0
username:s:myuser1
redirectdrives:i:0
redirectprinters:i:1
redirectcomports:i:0
redirectsmartcards:i:1
displayconnectionbar:i:1
autoreconnection enabled:i:1
shell working directory:s:
disable wallpaper:i:1
disable full window drag:i:0
disable menu anims:i:0
disable themes:i:0
disable cursor setting:i:0
bitmapcachepersistenable:i:1
allow desktop composition:i:1
allow font smoothing:i:1
redirectclipboard:i:1
redirectposdevices:i:0
drivestoredirect:s:Lokaler Datenträger (C:);DynamicDrives
authentication level:i:0
prompt for credentials:i:0
negotiate security layer:i:1
remoteapplicationmode:i:1
remoteapplicationprogram:s:||mystat
disableremoteappcapscheck:i:1
alternate shell:s:rdpinit.exe
gatewayhostname:s:
gatewayusagemethod:i:4
gatewaycredentialssource:i:4
gatewayprofileusagemethod:i:0
promptcredentialonce:i:1
audiocapturemode:i:0
videoplaybackmode:i:1
connection type:i:2
redirectdirectx:i:1
use redirection server name:i:0
Labels:
ESXi,
Remote Desktop,
RemoteApp,
XP
Abonnieren
Posts (Atom)