Displaying 20 results from an estimated 41 matches for "timeleft".
2009 May 20
5
ZFS userquota groupquota test
I have been playing around with osol-nv-b114 version, and the ZFS user
and group quotas.
First of all, it is fantastic. Thank you all! (Sun, Ahrens and anyone
else involved).
I''m currently copying over one of the smaller user areas, and setting up
their quotas, so I have yet to start large scale testing. But the
initial work is very promising. (Just 90G data, 341694 accounts)
Using
2009 Nov 26
5
rquota didnot show userquota (Solaris 10)
...# cp <some stuff> /export/home2/wib
# chown -Rh wib:sysadmin /export/home2/wib
# zfs userspace zpool1/home
TYPE NAME USED QUOTA
POSIX User root 3K none
POSIX User wib 154K 1M
# quota -v wib
Disk quotas for wib (uid 90):
Filesystem usage quota limit timeleft files quota limit timeleft
/export/home2
154 1024 1024 - - - - -
and the client:
# mount <server>:/export/home2/wib /mnt
% cd /mnt
% du -sk .
154 .
% quota -v wib
Disk quotas for wib (uid 90):
Filesystem usage quota l...
2005 Aug 15
3
[-mm PATCH 2/32] fs: fix-up schedule_timeout() usage
...ode);
xfs_syncd_queue_work(vfs, inode, xfs_flush_device_work);
- delay(HZ/2);
+ delay(msecs_to_jiffies(500));
xfs_log_force(ip->i_mount, (xfs_lsn_t)0, XFS_LOG_FORCE|XFS_LOG_SYNC);
}
@@ -478,10 +478,9 @@ xfssyncd(
wake_up(&vfsp->vfs_wait_sync_task);
INIT_LIST_HEAD(&tmp);
- timeleft = (xfs_syncd_centisecs * HZ) / 100;
+ timeleft = xfs_syncd_centisecs * msecs_to_jiffies(10);
for (;;) {
- set_current_state(TASK_INTERRUPTIBLE);
- timeleft = schedule_timeout(timeleft);
+ timeleft = schedule_timeout_interruptible(timeleft);
/* swsusp */
try_to_freeze();
if (vfsp->v...
2006 May 11
1
Re: [PATCH] smbfs: Fix slab corruption in samba error path
...nd also is -ERESTARTSYS. Error code
> 27499 corresponds to 0x6b6b, so the rq_errno field seems to be the only
> one being set after freeing the slab.
>
> In smb_add_request (which is the only place in smbfs where I found
> ERESTARTSYS), I found the following:
>
> if (!timeleft || signal_pending(current)) {
> /*
> * On timeout or on interrupt we want to try and remove the
> * request from the recvq/xmitq.
> */
> smb_lock_server(server);
> if (!(req->rq_f...
2010 Mar 12
2
how quotas works with postfix and dovecot
...listen = *:110
mail_plugins = quota
}
plugin {
quota = fs:INBOX:mount=/
quota_warning = storage=95%% /usr/local/bin/quota-warning.sh 95
}
however when a test my quota:
quota -v user1
Disk quotas for user1 (uid 107):
Filesystem *usage* *quota* limit timeleft files quota limit
timeleft
/var/mail 16911 10240 20480 NOT STARTED 49 1000 1500
dovecot or postfix (i don't know who really should sendme the
messsage) never sendme an quota warning
someone knows what happen ?
--
---------------------------------------------------...
2018 Jul 17
0
4.4.8 - There is not enough space on ...
...justing, *min receivefile size = *
*0, *however I do not have this set and the default is 0.
I don't see anything in the log files to point me at anything, if have
checked to make sure quotas are turned off
# quota -v user
Disk quotas for user (uid 1001):
Filesystem usage quota limit timeleft files quota limit
timeleft
Solaris 11
# pkg info samba
Name: service/network/samba
Summary: samba - A Windows SMB/CIFS fileserver for UNIX
Category: System/File System
State: Installed
Publisher: solaris
Version: 4.4...
2007 Jan 25
1
FS quota problem on Solaris10
Hi,
it seems, that I have a quota problem:
kric0999 at servername:~ $ quota -v
Disk quotas for kric0999 (uid 1234):
Filesystem usage quota limit timeleft files quota limit timeleft
/home 1188850 0 1500000 0 0 0
You see: I have a quota: 1,2GB from 1,5GB
The sent-mail, trash, drafts mboxes are in /home/kric0999/mail/
Why does Thunderbird say:
"There are no storage quotas on this folder"
f.ex when looking at the p...
2008 Sep 22
2
One fs with quota, one without: incorrect data shown
Hello all,
I'm using Dovecot 1.0.15 on a Solaris 10.
There are two different FS in place for IMAP:
/var/mail for inbox
/export/home for the mail folders
The first doesn't have quota, the second does.
However, I've noticed that Thunderbird does display quota information on
the inbox (that doesn't make any sense, the values are incorrect).
The same incorrect values are shown for
2008 May 07
2
prototype PeriodicalExecuter pause/restart patch
...ion() {
this.timer = setInterval(this.onTimerEvent.bind(this),
this.frequency * 1000);
},
execute: function() {
this.callback(this);
},
pause: function(){
if (this.paused) return;
this.stop();
this.paused = true;
this.pausedAt = this.now();
return true;
},
timeLeft: function(){
if(this.paused){
return this.frequency - (this.pausedAt - this.accumTimePaused -
this.lastExec);
}else if(this.timer==null){
return null;
}else{
return this.frequency - (this.now() - this.accumTimePaused -
this.lastExec);
}
},
restart: function(){...
2008 Oct 31
2
Separate quotas not displayed correctly
...she stands on her /var/mail use.
This is Dovecot 1.1.5. As per the wiki, the dovecot.conf file contains this:
quota = fs:INBOX:mount=/var/mail
quota2 = fs:Others:mount=/export/home
A sample user:
# quota -v testimap
Disk quotas for testimap (uid 1143):
Filesystem usage quota limit timeleft files quota limit
timeleft
/export/home 6490 10000 15000 0 0 0
/var/mail 0 20000 25000 0 0 0
When Icheck the Quota tab in the Properties of the Inbox, the field
contains "Others", and the value are 6490 out of 1000...
2007 Jul 18
1
smbfs patch for 2.6 [PATCH]
...l4 Inc.
# Created by Craig Matsuura and Tom Wheeler
# cmatsuura@control4.com and twheeler@control4.com
#
#
--- linux-2.6.21.4/fs/smbfs/request.c 2007-06-07 15:27:31.000000000 -0600
+++ linux-2.6.21.4.new/smbfs/request.c 2007-07-18 00:01:24.000000000 -0600
@@ -333,7 +333,7 @@
smbiod_wake_up();
timeleft = wait_event_interruptible_timeout(req->rq_wait,
- req->rq_flags & SMB_REQ_RECEIVED, 30*HZ);
+ req->rq_flags & SMB_REQ_RECEIVED, 10*HZ);
if (!timeleft || signal_pending(current)) {
/*
* On timeout or on interrupt we want to try and remove the
--- linux-2.6.21...
2008 Mar 17
6
Handling 3 different call ending causes
Hello List,
I'm using a dialstring like the one below. I want to have three different
things happening depending on exit cause.
Dial(SIP/${phonenumber},20,gL(20000[:5000][:5000]))
These 3 things could happen:
1, Caller hangs up
2, Callee hangs up
3, The 20 seconds is up and call is terminated from Asterisk.
Is there a way to separate these 3?
Thanks,
Best regards,
Tobias
--------------
2004 May 20
0
Time Limit Warning File
...rough Asterisk:
-- Executing Dial("SIP/8992-9712", "SIP/8988|20|L(10000:2000)") in new
stack
-- Limit Data:
-- timelimit=10000
-- play_warning=2000
-- play_to_caller=yes
-- play_to_callee=no
-- warning_freq=0
-- start_sound=UNDEF
-- warning_sound=timeleft
-- end_sound=UNDEF
-- Called 8988
-- SIP/8988-6922 is ringing
-- SIP/8988-6922 answered SIP/8992-9712
== Spawn extension (local, 8988, 1) exited non-zero on 'SIP/8992-9712'
If I change the LIMIT_WARNING_FILE to something like 'beep' to use the
usual beep.gsm file...
2007 Jun 20
1
Asterisk RealTime
...IAL) Options:
(SIP/2486543210|60|HL(3600000:61000:30000))
-- Limit Data for this call:
-- - timelimit = 3600000
-- - play_warning = 61000
-- - play_to_caller= yes
-- - play_to_callee= no
-- - warning_freq = 30000
-- - start_sound = UNDEF
-- - warning_sound = timeleft
-- - end_sound = UNDEF
Jun 20 09:49:58 NOTICE[24952]: app_dial.c:1069 dial_exec_full: Unable to
create channel of type 'SIP' (cause 3 - No route to destination)
== Everyone is busy/congested at this time (1:0/0/1)
a2billing.php|1|did: file:Class.A2Billing.php - line:634 - [CARD...
2009 Jun 10
0
Dial option limit call duration
...t;
play_to_callee = yes
[Jun 10 16:14:41] VERBOSE[12196] logger.c: [Jun 10 16:14:41] >
warning_freq = 0
[Jun 10 16:14:41] VERBOSE[12196] logger.c: [Jun 10 16:14:41] >
start_sound =
[Jun 10 16:14:41] VERBOSE[12196] logger.c: [Jun 10 16:14:41] >
warning_sound = timeleft
[Jun 10 16:14:41] VERBOSE[12196] logger.c: [Jun 10 16:14:41] >
end_sound =
[Jun 10 16:14:41] VERBOSE[12196] logger.c: [Jun 10 16:14:41] == Using
SIP RTP CoS mark 5
but the warning is played to late it used to be exactly
"you have 30 seconds left" but now its
[Jun 10 1...
2011 Jun 09
0
Change to pickups in Asterisk 1.8 - not working on local channels?
...> Limit Data for this call:
> timelimit = 3600000 ms (3600.000 s)
> play_warning = 60000 ms (60.000 s)
> play_to_caller = yes
> play_to_callee = no
> warning_freq = 0 ms (0.000 s)
> start_sound =
> warning_sound = timeleft
> end_sound =
-- Called 1000103 at product-pickup/n
-- Executing [1000103 at product-pickup:1]
Pickup("Local/1000103 at product-pickup-db70;2", "1000103 at product-phone") in
new stack
[May 25 11:25:40] NOTICE[1020]: app_directed_pickup.c:313 pickup_exec:...
2005 Jul 09
1
apcsmart varibles
...STNAME : homer
RELEASE : 3.8.6
UPSNAME : UPS_IDEN
CABLE : Custom Cable Smart
MODEL : APC Smart-UPS 900
UPSMODE : Net Master
STARTTIME: Sat Jul 09 12:55:48 CDT 2005
SHARE : NetworkUPS
STATUS : ONLINE
LINEV : 112.8 Volts
LOADPCT : 97.7 Percent Load Capacity
BCHARGE : 100.0 Percent
TIMELEFT : 8.0 Minutes
MBATTCHG : 5 Percent
MINTIMEL : 3 Minutes
MAXTIME : 0 Seconds
MAXLINEV : 113.4 Volts
MINLINEV : 112.2 Volts
OUTPUTV : 112.8 Volts
SENSE : High
DWAKE : 000 Seconds
DSHUTD : 020 Seconds
DLOWBATT : 02 Minutes
LOTRANS : 103.0 Volts
HITRANS : 132.0 Volts
RETPCT : 000.0 Perc...
2017 May 11
4
APC Back-UPS XS 1500G says "No battery"
I have a new-ish APC Back-UPS XS 1500G connected via USB. It's giving me
a "ups.alarm: No battery installed!" error. I also installed and
configured apcupsd to give that a try and it's giving me the same error.
I suspect this is a driver problem because while NUT claims the battery
isn't plugged in, it's giving me battery runtime/charge info. Both can't
be valid
2005 Jan 03
3
UPS - a little OT
Hi all.
Can someone recommend a good UPS for using with an * machine that
provides some linux tested software to do managed shutdown in case of
power loss?
Thanks.
Shoval Tomer,
IT Manager,
SofTov Advanced Systems, Ltd.
Office: +972-3-9230686 ext. 179
Fax: +972-3-9216642
Mobile: +972-54-8000200
2007 May 29
3
wich apc ups?
Hi,
I want to buy a UPS wfor a PE2800 but I'm mnot sure wich one to choose. is
1000 VA enough or do I need the 1500 VA version?
1) APC Smart-UPS 1000 VA Black SMART UPS 1000 VA BLACK 1000 VA
LINE-INTERACTIV [SUA1000I]
2) Power Supply Apc-ups 1500va Floorstand Incl Control Cable Usb And Com
Port Output Power 980w
Other suggestions are also welcome As long as they can talk to the apcd