similar to: [HCL] GRAFENTHAL PR-3000-HS supported by snmp-ups

Displaying 20 results from an estimated 700 matches similar to: "[HCL] GRAFENTHAL PR-3000-HS supported by snmp-ups"

2012 Dec 17
0
Fwd: Nut-upsdev post from jackobs@macle.de requires approval
I'm forwarding Marco's msg to the list, since it's really too big, and embeds upsc/upsrw/upscmd binaries! cheers, Arnaud -- Engineering Linux/Unix Expert - Opensource Solutions Lead - Eaton - http://opensource.eaton.com NUT (Network UPS Tools) Project Leader - http://www.networkupstools.org Debian Developer - http://www.debian.org Free Software Developer - http://arnaud.quette.fr
2006 Feb 09
1
converting lat-long coordinates to Albers Conical Equal Area coordinates
#################################################################################### We have used maptools to construct state, county, township, census-tract, and zipcode level R maps with an Albers Conical Equal Area projection. We would like to be able to plot the location of weather stations or other point locations on the maps. The data the point locations are in latitude-longitude units
2008 May 28
1
Search&replace string?
Hi there, I would like to know if it is possible to modify a text file with a R function. In fact I would like to know if a function "Search & Replace" exists. My problem is to create config files from a Base file in which I have to modify values of parameters. My Base File: #... #... Param1= V1_1 #... Param2 = V2_1 Param3 = V3_1 #... What I would like for each created file
2008 Aug 15
1
map("state" ...) Is the USA cracking up?
Running R version 2.6.1 under Linux, I'm trying to use the maps and mapdata packages and the state database to produce a thematic map of the USA. My problem is that cracks (white spaces) appear between some states--e.g. between Colorado and Utah and between Michigan and Indiana. The resulting visual impression is that the country is breaking up. This occurs in all the projections I have
2008 May 21
2
Search a string and modify it in a .txt file
Hi there, I use R and I would like to be able to modify a file .txt "init_file" like this one : # ---------------------------------------------------------------------------- # # Parameters A # ---------------------------------------------------------------------------- # # Parameter 1 PA1 = 15 # Parameter 2 PA2 = 3 # Parameter 3 PA3 = 2 #
2016 Sep 12
0
How to get started (Windows)
On Sun, 11 Sep 2016, Jeff Bowman wrote: > But first I have to get it working :-) Have you seen https://grafenthal.de/wiki/index.php/Installation_Network_UPS_Tools_%28NUT%29_unter_Windows_Server_2012_USB which shows a working NUT configuration under Windows Server 2012. It's in german, but the configuration files are readable. Roger
2020 Apr 17
2
Re: Attaching DVD-writer
I’ve tried that post .. but either I get a new scsi passthrough controller in device manager, but no dvd or the boot in windows hangs Either that method won’t work anymore or my config is bad .. im not really sure what to put in controller, target, bus and unit .. Skickat från min iPad > 17 apr. 2020 kl. 08:38 skrev Tony Brian Albers <tba@kb.dk>: > > Hi Andreas, > >
2017 Nov 28
0
Re: kvm/libvirt on CentOS7 w/Windows 10 Pro guest
On 11/28/2017 12:53 PM, Sam Varshavchik wrote: > Tony Brian Albers writes: > >> On 11/27/2017 05:28 PM, Benjammin2068 wrote: > >> > Thanks for the reply. >> > >> > IIRC, I've even rebooted the system (host as well) with no >> success... but maybe not. I'll try your suggestions again if I have an >> issue. >> > >> >
2020 Apr 17
0
Re: Attaching DVD-writer
[please don't top post] On Fri, Apr 17, 2020 at 10:54:24 +0200, Andreas Thörn wrote: > I’ve tried that post .. but either I get a new scsi passthrough controller in device manager, but no dvd or the boot in windows hangs Note that you don't have to add a scsi <controller> if you already have one. You can add the drive to the existing one. > > Either that method won’t
2008 Aug 04
2
thematic map of USA
My goal is to prepare a thematic map of the US, with states shaded according to their values for a variable of interest. I would like to include an inset for Alaska in the upper left and an inset for Hawaii in the lower left. If possible, I'd like to use Albers conic projection, or something similar. Thus far I have tried using the maps package with its state database (which omits
2020 Apr 17
1
Re: Attaching DVD-writer
2020-04-17 11:37 skrev Peter Krempa: > [please don't top post] > > On Fri, Apr 17, 2020 at 10:54:24 +0200, Andreas Thörn wrote: >> I’ve tried that post .. but either I get a new scsi passthrough >> controller in device manager, but no dvd or the boot in windows hangs > > Note that you don't have to add a scsi <controller> if you already have > one.
2008 May 30
1
Modify string-regular expression
Hi there everybody, I would like to be able to modify a string like 'Param_i = Val_i-1' in 'Param_i = Val_i-2' in a text file Indeed I have two arrays : -One for the name of my parameters -One for the new values for each parameter I would like to write a loop like this one : ... SCAN <- scan("File.txt",sep="\n", what="raw",blank.lines.skip=F)
2019 Mar 25
0
R 3.5.3 having trouble spawning a new process on my Windows 10 machine
Hi Sam, Is your PATH set on your user environment variables or on the system? Did you try to remove the entry for R-3.5.2 ? I have tested with a standard install, and I can't reproduce your error. I have the exact same path in my system PATH environment variable for 3.5.3, and nothing for other versions. Sorry I can't be of any more help. Cheers Joris On Mon, Mar 25, 2019 at 4:54 PM
2006 Mar 28
2
R crashes during 'eigen'
Hi all, Hi, When I want to compute the eigenvalues & eigenvectors of a specific matrix, R crashes (i.e. it stops responding to any input). I've tried it with different versions of R (2.1.1, 2.2.0, 2.2.1) - all with crashing as result. What I did before the crash was: M <- as.matrix(read.table("thematrix",header=T)) eigen(M) If, instead of eigen(M), I use eigen(M,
2017 Mar 14
2
guestfsd: error while loading shared libraries in SUSE12
Hi guys, I've struggled in this error for 1 week and your help is really appreciated. As one EMC software engineer, I need to setup the libguestfs tool in SUSE12 ( SUSE11SP4 is also OK, while SUSE12 is preferred ) to mount some qcow2 image from openstack environment. Then we can read its file system architecture and restore some files. 1. The first thing is we build one SUSE
2010 Nov 17
2
Drop non-integers
Hello all, I have a fairly simple data manipulation question. Say I have a dataframe like this: dat <- as.data.frame(runif(7, 3, 5)) dat$cat <- factor(c("1","4","13","1","4","13","13A")) dat runif(7, 3, 5) cat 1 3.880020 1 2 4.062800 4 3 4.828950 13 4 4.761850 1 5 4.716962 4 6
2008 Jan 18
1
unexpected.tdb already open
Is there any way to suppress the message: tdb(unnamed): tdb_open_ex: /var/samba/locks/unexpected.tdb (110,101) is already open in this process They are filling my nmbd.log and I have read that they should be ignored (Jerry,Carter post, Sun Aug 7 16:43:26 GMT 2005) We are running Samba 3.0.28 on FreeBSD 6.2. From util_tdb.c, it looks like this message could be suppressed with a
2010 Jun 22
1
k-sample Kolmogorov-Smirnov test?
Hello, I am curious if anyone has had any success with finding a R version of a k-sample Kolmogorov-Smirnov test. Most of the references that I have able to find on this are fairly old and I am wondering if this type of analysis has fallen out of favour. If so, how do people tend to compare distributions when they have more than two? Is it reasonable to pursue an adjusted p-value method. That is,
2010 Jul 22
3
Hydrology plots in R
Hello, I am trying to create a plot often seen in hydrodynamic work than includes a contour plot representing the water speed with arrows pointing in the direction of flow. Does anyone have any idea how I might add arrows based on wf$angle (in the example below) to the plot below? Thanks in advance! Sam library(lattice) speed <- runif(100, 0, 20) wf <- data.frame(speed) wf$width <-
2009 Nov 10
3
Dates plotting backwards
Hello, I am having a little trouble formatting my dates correctly. When I plot something using the following commands, R plots the most recent date on the left of the figure and then earlier date on the right of the figure. Given that English is read from left to right I would like to have the dates on my figure arranged in the same way. I am sure that this is something fairly simple but I was