search for: nobreak

Displaying 20 results from an estimated 24 matches for "nobreak".

2014 Feb 18
2
nut driver for SMS (brazil) UPS
Hi, Recently I got three units of this nobreak [0]: The intention is connect it with some file server and/or web server. I found the NUT via FreeNAS [1] , and the contribuition [2] of Ulisses and Rodrigo about this vendor SMS, in Brazil. But, initially, i'm trying to apply the Ulisses patch (for smsbrasil driver) in a Debian Server, wit...
2012 Apr 11
1
NOBREAK
Hello, Currently I have an uninterruptible power supply manufacturer's model which is a sine NHS, it works with the protocol SEC. The SEC is a protocol of compatible systems listed in the NUT .. I would like to Know how to monitor this nobreak Software NUT .. They could send me a tutorial with the exact setup .. (I use Ubuntu Linux 32-bit) No longer required .. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.alioth.debian.org/pipermail/nut-upsuser/attachments/20120411/56959f73/attachm...
2014 Jun 18
1
Nobreak LACERDA NEW ORION 800VA
Hi, It's just to confirme that I've tested and NUTUPS is working fine with hardware below: Manufacturer: LACERDA Hardware: NEW ORION 800VA Driver: blazer_usb Thanks for that. Regards, Alex. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.alioth.debian.org/pipermail/nut-upsdev/attachments/20140618/3a98edf3/attachment.html>
2014 Feb 19
0
nut driver for SMS (brazil) UPS
On Feb 18, 2014, at 5:55 PM, Thiago Tiedtke dos Reis wrote: > Hi, > > Recently I got three units of this nobreak [0]: ... > [0] http://www.sms.com.br/produtos/Nobreak-SMS/Manager-III-Senoidal According to the HCL, for the Manager III, you might want to try the blazer_ser (or in 2.7.1, nutdrv_qx): http://www.networkupstools.org/stable-hcl.html -- Charles Lepple clepple at gmail
2014 Jun 04
0
Unable to set up a "serial-over-USB" UPS (APC BZ2200BI-BR)
...tes using the serial > protocol. > > The relevant output of 'lsusb' is: > > Bus 002 Device 004: ID 051d:c812 American Power Conversion Douglas, It sounds like you have an UPS which was originally manufactured by Microsol. http://forums.freenas.org/index.php?threads/nobreak-bz1200-br-back-ups-rs-1200va-600w-bivolt-115-nt.20247/ http://article.gmane.org/gmane.comp.monitoring.nut.devel/6685 Bruno, Does your UPS show up as a USB ACM device in FreeBSD? Do you think that you and Douglas have the same basic UPS with different battery capacities? http://article.gma...
2014 Jan 29
1
NUT and UPS TS Shara
...rent version of NUT, we have an improved driver for Megatec Qx protocols called nutdrv_qx. Your modifications should work in the new driver, but we need to know what version of blazer_usb.c you started with. > I am developing the possibility for the company I work called TS Shara, that produces nobreaks (UPS) in S?o Paulo, Brazil, to use your software (NUT) in order for our nobreaks (UPS) start working with a Linux platform/ environment. The objective is to achieve a control/monitoring system for our nobreaks (UPS), especially when they exchange information with a Linux platform. > > We...
2019 Jun 20
2
solis driver
On Jun 19, 2019, at 11:56 AM, Silvino Benevides Magalhaes wrote: > > Unfortunately I do not use the latest versions of NUT, the driver I created, solis, was changed, not by me, and now does not work on my nobreak, which I used to create the driver. > > greetings > > Silvino B. Magalhaes Silvino, We have had several changes to solis over the years to add new models (especially after the APC acquisition), and we tried to make sure that the changes did not break support for other models. Howeve...
2019 Jun 21
1
solis driver
I use Centos 7.6.1810 in my server with nut-2.7.2-4.el7.x86_64 which contains Solis version 0.60 08/18/2005, my last version. My hardware related by upsc is Microsol Solis 1.5, the same used to develop the driver. It's an ancient nobreak, but i still works, by the way, an excellent hardware, using the third set of batteries. If you need more information, please let me know. Greeting, Silvino. Em qui, 20 de jun de 2019 às 08:11, Roberto Panerai Velloso < rvelloso at gmail.com> escreveu: > Hello everyone, > > Maybe...
2017 Jan 16
1
accelerating matrix multiply
...r. Based on my experiments it seems that the "break" in the loop actually can have positive impact on performance even in the common case when we don't have NaNs. With gcc on linux (corei7), where isnan is inlined, the "break" version uses a conditional jump while the "nobreak" version uses a conditional move. The conditional jump is faster because it takes advantage of the branch prediction. Neither of the two versions is vectorized (only scalar SSE instructions used). How do you run R on Xeon Phi? Do you offload the NaN checks to the Phi coprocessor? So far I tri...
2014 Mar 20
2
Unable to set up a "serial-over-USB" UPS (APC BZ2200BI-BR)
Dear NUT users/developers, I'm having trouble while trying to configure the UPS APC BZ2200BI-BR[1] in NUT, which despite having a USB cable it apparently communicates using the serial protocol. The relevant output of 'lsusb' is: Bus 002 Device 004: ID 051d:c812 American Power Conversion The device is registered as /dev/ttyACM0 and uses the kernel module 'cdc_acm' (USB
2014 Jan 31
2
NUT and UPS TS Shara
...of NUT, we have an improved driver for Megatec Qx protocols called nutdrv_qx. Your modifications should work in the new driver, but we need to know what version of blazer_usb.c you started with. > ok > > I am developing the possibility for the company I work called TS Shara, that produces nobreaks (UPS) in S?o Paulo, Brazil, to use your software (NUT) in order for our nobreaks (UPS) start working with a Linux platform/ environment. The objective is to achieve a control/monitoring system for our nobreaks (UPS), especially when they exchange information with a Linux platform. > > >...
2017 Jan 11
2
accelerating matrix multiply
> Do you have R code (including set.seed(.) if relevant) to show on how to generate > the large square matrices you've mentioned in the beginning? So we get to some > reproducible benchmarks? Hi Martin, Here is the program I used. I only generate 2 random numbers and reuse them to make the benchmark run faster. Let me know if there is something I can do to help--alternate
2017 Jan 16
0
accelerating matrix multiply
...Based on my experiments it seems that the "break" in the loop actually can have positive impact on performance even in the common case when we don't have NaNs. With gcc on linux (corei7), where isnan is inlined, the "break" version uses a conditional jump while the "nobreak" version uses a conditional move. The conditional jump is faster because it takes advantage of the branch prediction. Neither of the two versions is vectorized (only scalar SSE instructions used). How do you run R on Xeon Phi? Do you offload the NaN checks to the Phi coprocessor? So far I...
2014 Jun 04
2
Unable to set up a "serial-over-USB" UPS (APC BZ2200BI-BR)
...have a USB port in it, but in fact it is a serial<->usb cable, usually uses the port "/dev/cuaU0". In mine, the serial<->usb chip is from FTDI, and its recognized by FreeNAS with any additional drivers. And for sure, you can never use the genuine APC driver with those Microsol nobreaks. What Douglas can do is to patch the solis executable in /usr/local/libexec/nut/solis inside freenas, with the patches that I have posted in the forum: This will work for FreeNAS last version 9.2.1.5. http://forums.freenas.org/index.php?threads/nobreak-bz1200-br-back-ups-rs-1200va-600w-bivolt-11...
2014 May 05
1
driver development
Hello Everybody, I have a nobreak very similar to Solis.c driver. So I want to change it to make it work with my Nobreak. I have some experience in reverse engineering and programming, so I sniffed the protocol and decompiled the proprietary program from the manufacturer and got the protocol. Now I'm entering on a not known z...
2014 Jun 04
1
FreeNAS configuration command
Anybody knows what configure command settings FreeNAS use to compile NUT? More info on my journey: http://forums.freenas.org/index.php?threads/nobreak-bz1200-br-back-ups-rs-1200va-600w-bivolt-115-nt.20247/ Thanks Bruno -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.alioth.debian.org/pipermail/nut-upsdev/attachments/20140603/f6c42819/attachment.html>
2012 May 09
0
NUT
...an.org/cgi-bin/mailman/listinfo/nut-upsuser next, most (if not all) people you mailed to are either retired from the project, or not active anymore. 2012/5/8 Marcio - NHS <marcio at nhs.com.br>: > Dear friends of the team NUT UPS > > I'm trying to use the NUT to monitor the NHS nobreaks Brazil. > > I wonder if there is any driver that has been tested and works for the NHS > nobreaks ... > > No more ... we have had no report for this brand, nor we know which protocol it use. if you have any idea, or if you get in touch with the manufacturer, ask it for protocol inf...
2014 Feb 19
2
nut driver for SMS (brazil) UPS
On Feb 18, 2014, at 10:15 PM, Charles Lepple wrote: > On Feb 18, 2014, at 5:55 PM, Thiago Tiedtke dos Reis wrote: > >> Hi, >> >> Recently I got three units of this nobreak [0]: > ... >> [0] http://www.sms.com.br/produtos/Nobreak-SMS/Manager-III-Senoidal > > According to the HCL, for the Manager III, you might want to try the blazer_ser (or in 2.7.1, nutdrv_qx): > > http://www.networkupstools.org/stable-hcl.html For reference, can you post the...
2019 Jun 19
2
[EXTERNAL] Re: Fixing Drops With SMART1500LCDXL & USB-HID Driver
On 6/19/19 5:59 AM, Charles Lepple wrote: >> >> “The 62-nut-usbups.rules file looks pretty standard. Do you know if the changes to 42-usb-hd-pm.rules are needed? It seems like none of the USB devices would have the right permissions if 62-nut-usbups.rules isn't sufficient (though this happened in Debian once).” >> >> My means of testing wasn’t the most rigorous,
2019 Jun 19
0
[EXTERNAL] Re: Fixing Drops With SMART1500LCDXL & USB-HID Driver
Unfortunately I do not use the latest versions of NUT, the driver I created, solis, was changed, not by me, and now does not work on my nobreak, which I used to create the driver. greetings Silvino B. Magalhaes Em qua, 19 de jun de 2019 às 03:39, Manuel Wolfshant < wolfy at nobugconsulting.ro> escreveu: > On 6/19/19 5:59 AM, Charles Lepple wrote: > > > “The 62-nut-usbups.rules file looks pretty standard. Do you know...