7 Aralık 2012 Cuma

KStar (Australia) 1500 VA UPS on Debian Wheezy with NUT

To contact us Click HERE
NOTE: long day and not quite familiar with this yet, so haven't proof-read this post. Your mileage may vary.

Being fed up with the recent frequency of power-outages in our department building I headed off to MSY and picked up a UPS, the KStar BM3150 1500 VA (link). Oddly enough this seems to be an Antipodean-only UPS, as the main Kstar website doesn't list it.

The UPS comes with a USB port, and if you connect it to a computer you'll find that the UPS is recognised as a Lakeview Research product:

lsusb
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching HubBus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching HubBus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hubBus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hubBus 001 Device 003: ID 0925:1234 Lakeview Research Bus 002 Device 003: ID 0b95:7720 ASIX Electronics Corp. AX88772Bus 002 Device 004: ID 05e3:0606 Genesys Logic, Inc. USB 2.0 Hub / D-Link DUB-H4 USB 2.0 HubBus 002 Device 005: ID 04d9:1603 Holtek Semiconductor, Inc. KeyboardBus 002 Device 006: ID 0461:4d81 Primax Electronics, Ltd
dmesg
[ 424.292130] usb 1-1.3: new low-speed USB device number 3 using ehci_hcd[ 424.389739] usb 1-1.3: New USB device found, idVendor=0925, idProduct=1234[ 424.390648] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0[ 424.391553] usb 1-1.3: Product: UPS USB MON V1.4[ 424.392449] usb 1-1.3: Manufacturer: \xffffffd0\xffffff89\xffffff89[ 424.397491] hid-generic 0003:0925:1234.0004: hiddev0,hidraw3: USB HID v1.00 Device [\xffffffd0\xffffff89\xffffff89 UPS USB MON V1.4] on usb-0000:00:1a.0-1.3/input0
The UPS comes with a CD which contains a full-fledged Windows collection of software, and a pre-compiled shell-only 32 bit binary (need ia32-libs) which is installed via a shell script which needs modification to run properly on Debian. In other words -- it seems to have linux 'support' as a selling point, but not much more. It's so bad that it's not realistically useful.

Googling 0925:124 leads to this post: http://ifireball.wordpress.com/2011/10/13/configuring-aviem-pro2100-ups-on-debian-6-0-stablesqueeze/

The solution below is not particularly elegant -- I compile nut from source to get the udev rules and the richcomm driver, then install the debian nut packages.

cd ~/tmpwget http://www.networkupstools.org/source/2.6/nut-2.6.4.tar.gztar xvf nut-2.6.4.tar.gzcd nut-2.6.4/./configure --with-usb --with-dev
Configuration summary:======================build serial drivers: yes build USB drivers: yes build SNMP drivers: no build neon based XML driver: no enable Avahi support: no build Powerman PDU client driver: no build IPMI driver: no enable SSL development code: yes enable libwrap (tcp-wrappers) support: no enable libltdl (Libtool dlopen abstraction) support: yes build CGI programs: no enable HAL support: no build and install documentation: no build and install the development files: yes
makesudo make install

Things are installed, but in an non-standard place.
/usr/local/ups/bin/nut-scanner
Scanning USB bus.No start IP, skipping NUT bus (old connect method)[nutdev1] driver = "richcomm_usb" port = "auto" vendorid = "0925" productid = "1234" bus = "001"
sudo ln -s /lib/udev/rules.d/52-nut-usbups.rules /etc/udev/rules.d/52-nut-usbups.rulessudo service udev restartsudo apt-get install nut nut-cgi
Edit /ect/nut/ups.conf
[kstar]driver=richcomm_usbport=autodesc='kstar'
Edit /etc/nut/nut.conf
MODE=standalone
Edit /etc/nut/upsmon.conf
MONITOR kstar@localhost 1 upsmon myups master
Edit /etc/nut/upsd.conf
[upsmon]password=myupsupsmon master
Then restart the nut server
sudo service nut-server restartps aux|grep nut
nut 3594 0.0 0.0 16764 592 ? Ss 18:00 0:00 /lib/nut/richcomm_usb -a kstarnut 7179 0.0 0.0 16764 592 ? Ss 18:29 0:00 /lib/nut/richcomm_usb -a kstarnut 7182 0.0 0.0 16900 568 ? Ss 18:29 0:00 /sbin/upsd
upsc kstar
device.mfr: Richcomm dry-contact to USB solutiondevice.model: UPS USB MON V1.4device.serial: unknowndevice.type: upsdriver.name: richcomm_usbdriver.parameter.pollinterval: 2driver.parameter.port: autodriver.version: 2.6.4driver.version.internal: 0.04ups.mfr: Richcomm dry-contact to USB solutionups.model: UPS USB MON V1.4ups.productid: 1234ups.serial: unknownups.status: OLups.vendorid: 0925

Errors:
I'm leaving the various errors here more or less as link-bait. I tried using the NUT in the debian repos, and it gave me nothing than pain.

It's not nicely formatted or anything. Basically, if you see any of the crap below, compile your own version.
./configure --with-drivers=richcomm_usb --with-statepath=/var/run/nut --with-pidpath=/var/run/nut --with-user=nut --with-group=nut
Configuration summary:======================build serial drivers: yes build USB drivers: yes build SNMP drivers: no build neon based XML driver: no enable Avahi support: no build Powerman PDU client driver: no build IPMI driver: no build Mac OS X meta-driver: no enable SSL development code: yes enable libwrap (tcp-wrappers) support: no enable libltdl (Libtool dlopen abstraction) support: yes build nut-scanner: yesbuild CGI programs: no enable HAL support: no build and install documentation: no build and install the development files: no only build specific drivers: richcomm_usb
makesudo make install

Now try to load the driver:
sudo upsdrvctl -u root -D start
Network UPS Tools - UPS driver controller 2.6.4 0.000000 Starting UPS: kstarNetwork UPS Tools - Richcomm dry-contact to USB driver 0.04 (2.6.4)Warning: This is an experimental driver.Some features may not function correctly.
and it didn't really work. Checking dmesg
[282263.171108] usb 1-1.3: usbfs: interface 0 claimed by usbhid while 'richcomm_usb' sets config #1

and looking at
ls /sys/bus/usb/drivers/usb/1-1.3/ -lah
lrwxrwxrwx 1 root root 0 Dec 1 10:09 driver -> ../../../../../../bus/usb/drivers/usb
means that the device already has a driver loaded, so
sudo suecho -n "1-1.3" > /sys/bus/usb/drivers/usb/unbindexitls /sys/bus/usb/drivers/usb/1-1.3/ -lah
ls: cannot access /sys/bus/usb/drivers/usb/1-1.3/: No such file or directory
sudo upsdrvctl -u root -D start
Network UPS Tools - UPS driver controller 2.6.4 0.000000 Starting UPS: kstarNetwork UPS Tools - Richcomm dry-contact to USB driver 0.04 (2.6.4)Warning: This is an experimental driver.Some features may not function correctly.Communications with UPS lost: Query to UPS failed
dmesg
[284116.758107] usb 1-1.3: usbfs: interface 0 claimed by usbfs while 'richcomm_usb' sets config #1[..][284155.661271] usb 1-1.3: usbfs: interface 0 claimed by usbfs while 'richcomm_usb' sets config #1[284155.790409] usb 1-1.3: usbfs: process 17105 (richcomm_usb) did not claim interface 0 before use
sigh...
ls /sys/bus/usb/drivers/usbfs/ -lah
lrwxrwxrwx 1 root root 0 Dec 4 17:07 1-1.3:1.0 -> ../../../../devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0
sudo suecho -n "1-1.3:1.0" > /sys/bus/usb/drivers/usbfs/unbindexit
Then try again
  sudo upsdrvctl -u root -D start
Network UPS Tools - UPS driver controller 2.6.4 0.000000 Starting UPS: kstarNetwork UPS Tools - Richcomm dry-contact to USB driver 0.04 (2.6.4)Warning: This is an experimental driver.Some features may not function correctly.Duplicate driver instance detected! Terminating other driver!Communications with UPS lost: Query to UPS failed
So I then did
sudo vim /etc/udev/rules.d/70-ignore-ups.rules
ATTRS{idVendor}=="0925", ATTRS{idProduct}=="1234", OPTIONS=="ignore_device"
sudo service udev restart
Stopping the hotplug events dispatcher: udevd.Starting the hotplug events dispatcher: udevd.
If you get this:
 sudo upsdrvctl -D start
Network UPS Tools - UPS driver controller 2.6.4 0.000000 Starting UPS: kstarNetwork UPS Tools - Richcomm dry-contact to USB driver 0.04 (2.6.4)Warning: This is an experimental driver.Some features may not function correctly.USB device [0925:1234] matches, but driver callback failed: could not detach kernel driver from interface 0: Operation not permitted 0.004077 Driver failed to start (exit status=1)
then you need to make sure to add -u root to upsdrvctl. Also, make sure that the driver versions match.

Ektron eWebEditPro5: Run time Error '0'

To contact us Click HERE
Hi Friends,

If you recently moved to any Siebel Maintenance fix packs 8.0.0.6 and above then you might face an annoying issue with Siebel HTML Editor a.k.a Ektron eWebEditPro Editor!

After you apply the fix pack for Siebel Web Server Extension (SWSE), it upgrades the existing eWebEditPro editor from v4 to v5.

After this upgrade a necessary configuration change is not mentioned in the Maintenance Configuration Section, due to which you will notice that any template tried to be opened in the new HTML Editor results into a blank load & if you right click in the editor it results into a error popup window titled eWebEditProLibCtl5 saying, "Run time error '0'"


 In order to resolve this, you will need to edit the webeditorctrl.htm file under /$SIEBEL_SWSE_ROOT/public/enu/webeditor/

Find out the below code:



and replace it with below code:



After you do this, make sure you do a CLEAR CACHE in your browser else it will still show Javascript errors like:


This happens as the old webeditorctrl.htm file is used from browser cache for loading eWebEditPro Editor.
So ensure you do a clear cache without fail!

Hope this helps resolve patching issue.

Keywords:
siebel crm,siebel customer relationship management,siebel solutions,siebel support,siebel supportweb,siebel systems, SWSE, eWebEditPro, Ektron, HTML Editor, Marketing, WYSIWYG HTML Editor, WYSIWYG, etc.Related Posts : Javascript,SBAv8.0Troubleshooting

Talking Caller ID APK 2.19

To contact us Click HERE

Talking Caller ID APK v2.19 hd (2.19) Download Android Full Free Mediafire cracked
Talking Caller ID APK v2.19 hd (2.19) Download Android Full Free Mediafire cracked

Requirements: Android 1.6 and up
Overview: Talking Caller ID APK 2.19 voices the name or number of incoming calls, get it now!

Talking Caller ID apk speaks the caller id of incoming calls based on your phone's stored contacts. Talking Caller ID uses the built-in Android text-to-speech engine to voice the caller id when your phone rings.

The full (paid) version of Talking Caller ID apps is very configurable allowing you to customize it to voice the caller id only when you want it to. While the free version is feature limited, the core functionality is present. The paid version also removes the ads.

Talking Caller ID for android is great for any hands-free environment. Whether you receive calls while driving or you just don't feel like looking at your phone Talking Caller ID will tell you who's calling so you don't have to mess with your phone.

KEY FEATURES download now
- Voices the caller id over your existing ringtone
- Silent ringtone included if you only want to hear the speaking
- Use for all calls, only calls from contacts, only calls from selected contacts, or only calls from non-contacts
- Customizable start message let's you make it say whatever you like before the caller id
- Customize the number of times it repeats
- Customize voice pitch and speed

tags:apk,free,download,android,full,pro,cracked,mediafire,qvga,tablet,armv6,apps,themes,games,application,no,ads,version,unlocked,dlc Talking Caller ID APK v2.19 hd (2.19) Download Android Full Free Mediafire cracked Talking Caller ID APK 2.19 Mediafire links

Direct Download

http://turbobit.net/ma7l2cdrshvw.html

 

Flat screen monitors Click link

http://tinyurl.com/9k7l5ya

Download link

Instructions for mediafire Free Links before these

Demo video on how to install
Advertisement
Close to play

Thumb Keyboard Phone-Tablet APK 4.5.3.00.142

To contact us Click HERE

Thumb Keyboard Phone-Tablet APK v4.5.3.00.142 hd (4.5.3.00.142) Download Android Full Free Mediafire cracked
Thumb Keyboard Phone-Tablet APK v4.5.3.00.142 hd (4.5.3.00.142) Download Android Full Free Mediafire cracked

Requirements: Android 2.2 and up
Overview: Thumb Keyboard Phone-Tablet APK 4.5.3.00.142 is a flexible keyboard that introduces a revolutionary and innovative "split" layout for Tablets and Phones. A layout that makes thumb-typing easier, more natural and more comfortable. Besides that it is also a standard keyboard with many features one will not find on a regular keyboard.

What's in this version: application
4.5.3
* free New: backup/restore settings and text shortcuts to/from sdcard
* full New: change space between keys
* cracked Fixed reinstall issue
* Maintenance (bug fixes)

tags:apk,free,download,android,full,pro,cracked,mediafire,qvga,tablet,armv6,apps,themes,games,application,no,ads,version,unlocked,dlc Thumb Keyboard Phone-Tablet APK v4.5.3.00.142 hd (4.5.3.00.142) Download Android Full Free Mediafire cracked Thumb Keyboard Phone-Tablet APK 4.5.3.00.142 Mediafire links

Direct Download

http://tinyurl.com/cf4r9pd

 

Flat screen monitors Click link

http://ul.to/euk79gon

Download link

Instructions for mediafire Free Links before these

Demo video on how to install
Advertisement
Close to play

AudioGuru | Audio Manager PRO APK 1.29

To contact us Click HERE

AudioGuru | Audio Manager PRO APK v1.29 hd (1.29) Download Android Full Free Mediafire cracked
AudioGuru | Audio Manager PRO APK v1.29 hd (1.29) Download Android Full Free Mediafire cracked

Requirements: Android 2.2 and up
Overview: AudioGuru | Audio Manager PRO APK 1.29 with profiles, automatic scheduling and widgets.

★ free No Network access, no ads!
★ full Manage media, ringer, alert, system and alarm volume levels.
★ cracked 4 Custom volume profiles (presets).
★ Rename and edit Profiles.
★ Configure your default ringtones for ringer, alerts and alarm.
★ Automatically set profiles depending on time of day.
★ Solid and translucent widget for android skins.
★ 4 home screen widget sizes available.
★ Scheduler to automatically apply your presets whenever you want.
★ Available in over 5 different languages

TO RENAME A PROFILE: long press the profile button on the auto scheduling screen.
PRO KEY allows different schedules for work and non-work days.
TIP: Disconnect your ringer and alert volumes levels in your phone sound settings.
NOTE: Android 4+ (ICS) DOES NOT let the ringer and alerts volumes be separated.
Pre Android 4 phones can still separate them in the phone sound settings.
As a work around solution on ICS you can enable the adjustment of the ringtones and set your alert ringtone to silent for a particular profile e.g. sleep.

What's in this version: download now
v1.29b crash fix for android 1.5 + 1.6
tags:apk,free,download,android,full,pro,cracked,mediafire,qvga,tablet,armv6,apps,themes,games,application,no,ads,version,unlocked,dlc AudioGuru | Audio Manager PRO APK v1.29 hd (1.29) Download Android Full Free Mediafire cracked AudioGuru | Audio Manager PRO APK 1.29 Mediafire links

Direct Download

http://turbobit.net/lob76f4djztd.html

 

Flat screen monitors Click link

http://tinyurl.com/8fhvpgp

Download link

Instructions for mediafire Free Links before these

Demo video on how to install
Advertisement
Close to play

30 Kasım 2012 Cuma

Ektron eWebEditPro5: Run time Error '0'

To contact us Click HERE
Hi Friends,

If you recently moved to any Siebel Maintenance fix packs 8.0.0.6 and above then you might face an annoying issue with Siebel HTML Editor a.k.a Ektron eWebEditPro Editor!

After you apply the fix pack for Siebel Web Server Extension (SWSE), it upgrades the existing eWebEditPro editor from v4 to v5.

After this upgrade a necessary configuration change is not mentioned in the Maintenance Configuration Section, due to which you will notice that any template tried to be opened in the new HTML Editor results into a blank load & if you right click in the editor it results into a error popup window titled eWebEditProLibCtl5 saying, "Run time error '0'"


 In order to resolve this, you will need to edit the webeditorctrl.htm file under /$SIEBEL_SWSE_ROOT/public/enu/webeditor/

Find out the below code:



and replace it with below code:



After you do this, make sure you do a CLEAR CACHE in your browser else it will still show Javascript errors like:


This happens as the old webeditorctrl.htm file is used from browser cache for loading eWebEditPro Editor.
So ensure you do a clear cache without fail!

Hope this helps resolve patching issue.

Keywords:
siebel crm,siebel customer relationship management,siebel solutions,siebel support,siebel supportweb,siebel systems, SWSE, eWebEditPro, Ektron, HTML Editor, Marketing, WYSIWYG HTML Editor, WYSIWYG, etc.Related Posts : Javascript,SBAv8.0Troubleshooting

External Keyboard Helper Pro APK 4.4

To contact us Click HERE

External Keyboard Helper Pro APK 4.4
External Keyboard Helper Pro APK v4.4 hd (4.4) Download Android Full Free Mediafire cracked

Requirements: Android 1.6 and up
Overview: External Keyboard Helper Pro APK 4.4 Take full control over your external Bluetooth or USB keyboard.

This app does NOT require a rooted device and there is a DEMO version for android available if you want to try it out before buying.

Features Download now
* free International keyboard layouts.
* full Up to 16 application shortcuts can be added (for example start Google Maps with Alt+M etc.)
* Up to 16 text strings can be add (for example insert your email address with Alt+E etc.)
* cracked Remaps the Escape key to BACK (can be turned off)
* Allows you to control which characters should be treated as combining characters.
* A "null" Soft Keyboard to use with hardware keyboards (Bluetooth & USB).
* Automatically brings up Input Method selection dialog when Bluetooth keyboard connects or disconnects (Android 2.3+).
* Automatic detection can also work with USB keyboards on some platforms (experimental) (Android 2.3+)
* App that brings up Input Method selection (for easy access)
* Switch between up to three layouts of your choice using a key or key combination.
* Can choose keymap automatically based on language setting in your device.
* Blocks long-press-popups on Android 2.x.
* Change the key repeat delay and rate.
* Layouts can be modified and two user defined custom layouts can be configured.
tags:apk,free,download,android,full,pro,cracked,mediafire,qvga,tablet,armv6,apps,themes,games,application,no,ads,version,unlocked,dlc External Keyboard Helper Pro APK v4.4 hd (4.4) Download Android Full Free Mediafire cracked External Keyboard Helper Pro APK 4.4 Mediafire links

Direct Download

http://turbobit.net/f5tfu5t38il7.html

 

Flat screen monitors Click link

http://tinyurl.com/8twsooo

Download link

Instructions for mediafire Free Links before these

Demo video on how to install
Advertisement
Close to play