This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
mantis:zss:doc [2014/12/17 15:10] rk4n3 |
mantis:zss:doc [2016/12/19 14:24] (current) rk4n3 |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== Documentation: Zenteknix Salon Software ====== | ====== Documentation: Zenteknix Salon Software ====== | ||
+ | |||
+ | ==== Java SSL Keystore: import server's cert ==== | ||
+ | **NOTE:** the application has to use the JRE location, **not** the JDK location ...\\ | ||
+ | * ''JAVA_HOME'' should be ''/usr/java/jre'' | ||
+ | * JVM should be invoked as ''$JAVA_HOME/bin/java'' | ||
The directory where the keystore is ... \\ | The directory where the keystore is ... \\ | ||
Line 9: | Line 14: | ||
Assuming cert has been exported (via browser) to file mycert.x509 ... \\ | Assuming cert has been exported (via browser) to file mycert.x509 ... \\ | ||
To import that key into the keystore: \\ | To import that key into the keystore: \\ | ||
- | (default password of the keystore is: changeit) ... \\ | + | // Note: default password of the keystore is: // ''changeit'' \\ |
- | ''keytool -import -noprompt -trustcacerts -alias www.yoursite.com -file mycert.x509 -keystore cacerts'' | + | ''keytool -import -noprompt -trustcacerts -alias <nowiki>www.yoursite.com</nowiki> -file mycert.x509 -keystore cacerts'' |
+ | |||
+ | ==== eGalaxy TouchScreen ==== | ||
+ | Here is what is added to /usr/share/X11/xorg.conf.d/10-evdev.conf \\ | ||
+ | <code> | ||
+ | Section "InputClass" | ||
+ | Identifier "eGalaxy touchscreen" | ||
+ | MatchVendor "eGalax" | ||
+ | Option "SwapAxes" "on" | ||
+ | Option "InvertX" "on" | ||
+ | Option "InvertY" "off" | ||
+ | Option "Calibration" "175 1900 121 1881" | ||
+ | EndSection | ||
+ | </code> | ||
+ | |||
+ | ==== Star TSP 600 Thermal Receipt Printer ==== | ||
+ | Using a USB/Parallel adapter, which shows up in dmesg output as: | ||
+ | <code>Bus 004 Device 003: ID 1a86:7584 QinHeng Electronics CH340S</code> | ||
+ | The standard usblp module supports it, so: | ||
+ | <code>modprobe usblp</code> | ||
+ | The device usually shows up as ''/dev/usb/lp0'', and a link could be made: | ||
+ | <code>ln -s /dev/usb/lp0 /dev/ulpt0 ; ln -s /dev/usb/lp0 /dev/usblp0</code> | ||
+ | Also, remember that users should be in the ''lp'' group to have access to the printer. | ||
- | // Links: [[:mantis:zss:start|ZSS]] ... [[:mantis:start|Mantis Wiki Area]] // | + | // ... [[:mantis:zss:start|ZSS]] ... [[:mantis:start|Mantis Wiki Area]] // |