Displaying 20 results from an estimated 31 matches for "whiteout".
2013 Dec 09
2
AtlantisLand don't want to wake up after the whiteout
2013/12/6 Fabio Cecamore <ceca_89 at hotmail.com>:
> Hi all,
Hi
> I've problem with the management of my AtlantisLand UPS, the UPS don't want
> to wake up after the whiteout and I don't have any idea why..
Some (very old) units are known to have problems with small values for
ondelay (hence the default 3 minutes value):
https://github.com/networkupstools/nut/blob/master/drivers/blazer.c#L443
Have you tried increasing the standard ondelay?
2013 Dec 09
0
AtlantisLand don't want to wake up after the whiteout
Thanks for your reply Hyouko,
these are the actual not working parameters:
driver.parameter.offdelay: 60
driver.parameter.ondelay: 5
ups.delay.shutdown: 60
ups.delay.start: 300
and the UPS don't wake up after the whiteout..
My UPS is not so old :(
Il 09/12/2013 16.04, hyouko at gmail.com ha scritto:
> 2013/12/6 Fabio Cecamore <ceca_89 at hotmail.com>:
>> Hi all,
> Hi
>
>> I've problem with the management of my AtlantisLand UPS, the UPS don't want
>> to wake up after the wh...
2013 Dec 06
0
AtlantisLand don't want to wake up after the whiteout
Hi all,
I've problem with the management of my AtlantisLand UPS, the UPS don't
want to wake up after the whiteout and I don't have any idea why..
This is the ups.conf:
[ups]
driver = blazer_usb
subdriver = cypress
vendorid = 0665
productid = 5161
port = auto
desc = "AtlantisLand Host Power 851+"
pollinterval = 10
offdelay = 60
this is the upsc result:
battery.charge: 100
battery.voltage: 13.5...
2013 Dec 09
1
AtlantisLand don't want to wake up after the whiteout
2013/12/9 Fabio Cecamore <ceca_89 at hotmail.com>:
> and the UPS don't wake up after the whiteout..
2013/12/6 Fabio Cecamore <ceca_89 at hotmail.com>:
> desc = "AtlantisLand Host Power 851+"
Is your UPS an 'Atlantis Land Host Power 851' or an 'Atlantis Land One
Power 841+'?
The first one should be using a slighty modified version of the 'QS'
('m...
2013 Nov 25
4
blazer_usb and USBDEVFS_CONTROL failed
Hi all,
after a change of UPS (to Atlantis Host Power 851) I began to use the
new driver blazer_usb and compared to old one (blazer used with serial
connection) I noted more CPU use and errors in dmesg:
[...]
[256712.584370] usb 4-5: usbfs: USBDEVFS_CONTROL failed cmd blazer_usb
rqt 33 rq 9 len 8 ret -110
[256789.640795] usb 4-5: usbfs: USBDEVFS_CONTROL failed cmd blazer_usb
rqt 33 rq 9 len 8
2016 Apr 04
2
Re: [PATCH v2 4/5] appliance: Added filesystem_walk command
...gt; +FIFO (named pipe)
> +
> +=item 'l'
> +
> +Symbolic link
> +
> +=item 'r'
> +
> +Regular file
> +
> +=item 's'
> +
> +Socket
> +
> +=item 'h'
> +
> +Shadow inode (Solaris)
> +
> +=item 'w'
> +
> +Whiteout inode (BSD)
> +
> +=item 'u'
> +
> +Unknown file type
> +
> +=back" };
> +
> ]
>
> (* daemon_functions are any functions which cause some action
> diff --git a/src/Makefile.am b/src/Makefile.am
> index 3b4cd10..9f8af4c 100644
> --- a/src/Makefi...
2003 Nov 30
0
FreeBSD mknod refuses to create pipes and fifos
...or = 0;
+ break;
default:
error = suser_xxx(0, p, PRISON_ROOT);
break;
@@ -1217,6 +1221,12 @@
break;
case S_IFBLK:
vattr.va_type = VBLK;
+ break;
+ case S_IFSOCK:
+ vattr.va_type = VSOCK;
+ break;
+ case S_IFIFO:
+ vattr.va_type = VFIFO;
break;
case S_IFWHT:
whiteout = 1;
1) I'm not sure if FIFO and/or SOCK creation with mknod should be allowed to
non-root users. This patch allows non-root to create them, but it's easy to
change that.
2) Should we allow IFREG creation with mknod? I did not find a reason to
disallow that, but since this does not bot...
2014 Feb 21
1
Partial file creation tripping up on aufs volume - tries to use a reserved name
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I'm backing up a file named 'wh.txt' with the destination an aufs
volume - rsync creates a partial filename like '.wh.txt.M8ucDx', which
results in an Operation not permitted (1) error - aufs reserves
'.wh.*' names for whiteout records I think.
Other than ignoring the problem and using --inplace, it doesnt look
like I can influence how rsync names its temporary files - is this
worth a feature request?
Its just this one file causing a problem so far, so its not a big deal
- - just wondered if there was a better way.
Tha...
2011 Jul 13
1
PXE booting centos6
Hello I am trying to PXE boot centos6 but i get an error,
Seetings are: PXE server is a cobbler centos5 machine trying to
boot a centos6 client
Traceback (most recent call first):
File "<string>", line 64, in __iter__
File "/usr/lib/yum-plugins/whiteout.py", line 46, in
postreposetup_hook
for event, elem in iterparse(infile):
File "/usr/lib/python2.6/site-packages/yum/plugins.py",
line 179, in run
func(conduitcls(self, self.base, conf, **kwargs))
File "/usr/lib/python2.6/site-packages/yum/repos.py&am...
2016 Apr 05
1
Re: [PATCH v3 4/5] appliance: Added filesystem_walk command
...gt; +FIFO (named pipe)
> +
> +=item 'l'
> +
> +Symbolic link
> +
> +=item 'r'
> +
> +Regular file
> +
> +=item 's'
> +
> +Socket
> +
> +=item 'h'
> +
> +Shadow inode (Solaris)
> +
> +=item 'w'
> +
> +Whiteout inode (BSD)
> +
> +=item 'u'
> +
> +Unknown file type
> +
> +=back" };
> +
> ]
>
> (* daemon_functions are any functions which cause some action
> diff --git a/src/Makefile.am b/src/Makefile.am
> index 3b4cd10..9f8af4c 100644
> --- a/src/Makefi...
2009 Mar 29
2
ssh & rsync equivalence?
Hello Folks
Can anyone help with why I can use ssh like so:
[root@morgansoldmachine ~]# ssh -t rsync@192.168.1.40 sudo ssh -i
/home/rsync/.ssh/id_dsa root@192.168.1.100
Last login: Tue Mar 24
21:32:51 2009 from morgansmachine.lan
[root@morgansoldmachine ~]# logout
Connection to 192.168.1.100 closed.
Connection to 192.168.1.40 closed.
[root@morgansoldmachine ~]#
But, when I use the same
2016 Apr 05
0
[PATCH v3 4/5] appliance: Added filesystem_walk command
...k special
+
+=item 'c'
+
+Char special
+
+=item 'd'
+
+Directory
+
+=item 'f'
+
+FIFO (named pipe)
+
+=item 'l'
+
+Symbolic link
+
+=item 'r'
+
+Regular file
+
+=item 's'
+
+Socket
+
+=item 'h'
+
+Shadow inode (Solaris)
+
+=item 'w'
+
+Whiteout inode (BSD)
+
+=item 'u'
+
+Unknown file type
+
+=back" };
+
]
(* daemon_functions are any functions which cause some action
diff --git a/src/Makefile.am b/src/Makefile.am
index 3b4cd10..9f8af4c 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -130,6 +130,7 @@ libguestfs_la_SOU...
2016 Apr 04
0
Re: [PATCH v2 4/5] appliance: Added filesystem_walk command
...> > +
> > +=item 'r'
> > +
> > +Regular file
> > +
> > +=item 's'
> > +
> > +Socket
> > +
> > +=item 'h'
> > +
> > +Shadow inode (Solaris)
> > +
> > +=item 'w'
> > +
> > +Whiteout inode (BSD)
> > +
> > +=item 'u'
> > +
> > +Unknown file type
> > +
> > +=back" };
> > +
> > ]
> >
> > (* daemon_functions are any functions which cause some action
> > diff --git a/src/Makefile.am b/src/Makefile.am
&g...
2016 Apr 03
0
[PATCH v2 4/5] appliance: Added filesystem_walk command
...k special
+
+=item 'c'
+
+Char special
+
+=item 'd'
+
+Directory
+
+=item 'f'
+
+FIFO (named pipe)
+
+=item 'l'
+
+Symbolic link
+
+=item 'r'
+
+Regular file
+
+=item 's'
+
+Socket
+
+=item 'h'
+
+Shadow inode (Solaris)
+
+=item 'w'
+
+Whiteout inode (BSD)
+
+=item 'u'
+
+Unknown file type
+
+=back" };
+
]
(* daemon_functions are any functions which cause some action
diff --git a/src/Makefile.am b/src/Makefile.am
index 3b4cd10..9f8af4c 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -130,6 +130,7 @@ libguestfs_la_SOU...
2016 Jun 13
0
[PATCH v8 2/3] New API: filesystem_walk
...k special
+
+=item 'c'
+
+Char special
+
+=item 'd'
+
+Directory
+
+=item 'f'
+
+FIFO (named pipe)
+
+=item 'l'
+
+Symbolic link
+
+=item 'r'
+
+Regular file
+
+=item 's'
+
+Socket
+
+=item 'h'
+
+Shadow inode (Solaris)
+
+=item 'w'
+
+Whiteout inode (BSD)
+
+=item 'u'
+
+Unknown file type
+
+=back" };
+
]
(* daemon_functions are any functions which cause some action
diff --git a/src/Makefile.am b/src/Makefile.am
index d659f8d..29586f4 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -131,6 +131,7 @@ libguestfs_la_SOU...
2005 Jul 31
7
[Bug 2933] regression with hardlinked devices
https://bugzilla.samba.org/show_bug.cgi?id=2933
wayned@samba.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |ASSIGNED
------- Additional Comments From wayned@samba.org 2005-07-31 15:50 -------
This is rather interesting. In the old days, rsync
2016 Apr 03
7
[PATCH v2 0/5] Added filesystem_walk command
v2:
- Increased the amount of collected information from the FS content.
- Moved filesystem_walk0 as internal command.
- Code improvement based on comments.
- Adhere to project's coding style.
- Better command documentation.
- More robust tests.
Patch ready for review, code available at:
https://github.com/noxdafox/libguestfs/tree/filesystem_walk
Matteo Cafasso (5):
generator:
2016 Apr 05
10
[PATCH v3 0/5] Added filesystem_walk command
v3:
- File size will be reported as - 1 if it cannot be retrieved.
- Code improvements based on comments.
Matteo Cafasso (5):
generator: Added tsk_dirent struct
configure: Added libtsk compile-time check
daemon: Added internal_filesystem_walk command
appliance: Added filesystem_walk command
appliance: Added filesystem_walk command tests
daemon/Makefile.am | 4 +-
2007 Dec 06
3
using "eval(parse(text)) " , gsub(pattern, replacement, x) , to process "code" within a loop/custom function
R-help users,
Thanks in advance for any assistance ... I truly appreciate your expertise. I searched help and could not figure this out, and think you can probably offer some helpful tips. I apologize if I missed something, which I'm sure I probably did.
I have data for many "samples". (e.g. 1950, 1951, 1952, etc.)
For each "sample", I have many data-frames.
2016 Apr 15
0
Wine release 1.9.8
...YPELESS format support for stencil operations (Battlefield Bad Company 2, Warhammer 40k: Kill Team)
24421 MJ's Help Diagnostics crashes on startup (app provided MonitorEnumProc callback relies on ECX = lprcMonitor)
31662 Office 2010 font embedding when exporting to PDF
32007 AMD Demo - Whiteout crashes with null-ish pointer read after dxgi_output_GetDisplayModeList
34070 Simutronics 'StormFront.exe' runs out of wndproc slots (ActiveSkin control)
34851 Multiple applications need kernel32 GetFinalPathNameByHandleA/W (64-bit Autodesk Fusion 360, Microsoft OneDrive)
35054 Dra...