similar to: CentOS Digest, Vol 163, Issue 10

Displaying 20 results from an estimated 1000 matches similar to: "CentOS Digest, Vol 163, Issue 10"

2018 Aug 10
0
CentOS Digest, Vol 163, Issue 10
I know there is already a thread going on...but.. I can't get into rdadmin (I set a password) I found out that I can dump mysql and it is in there but I am not sure how to find it in there (in mysql that I have copied or "dumped" it into home user....folder) can someone help me by chance.. thanks, Stephen Campbell On Fri, Aug 10, 2018 at 7:00 AM, <centos-request at
2018 Aug 09
1
xfs quota question
Valeri Galtsev wrote: > On 08/09/18 14:57, mark wrote: > >> Can I go to an existing xfs file system, and apply a soft quota to each >> user on it? If I do, can I then run a report, and see who's using how >> much, or does it only apply to files created after the quotas are >> applied? > > After remounting XFS filesystem with option "usrquota" you
2018 Aug 09
0
xfs quota question
On 08/09/18 14:57, mark wrote: > Can I go to an existing xfs file system, and apply a soft quota to each > user on it? If I do, can I then run a report, and see who's using how > much, or does it only apply to files created after the quotas are applied? > After remounting XFS filesystem with option "usrquota" you can issue the command similar to: xfs_quota -x -c
2013 Oct 09
1
XFS quotas not working at all (seemingly)
Hi All, I have a very strange problem that I'm unable to pinpoint at the moment. For some reason I am simply unable to get xfs_quotas to report correctly on a freshly installed, fully patched CentOS 6 box. I have specified all the same options as on another machine which *is* reporting quota LABEL=TEST /exports/TEST xfs inode64,nobarrier,delaylog,usrquota,grpquota 0 0 xfs_quota -xc
2014 May 23
1
xfs and user quota
Hi, I try to enable userquota an a new xfs filesystem. Its centos 6.5, the filesystem is mounted with usrquota, the server was rebooted. I thought xfs_quota -x -c 'limit bsoft=20000m bhard=22000m username' /home would set the quota for that user. But I do get an error: Command limit not found. Did I miss something? Any hints/how to beside the official sgi xfs and redhat doc
2018 Aug 09
2
xfs quota question
Can I go to an existing xfs file system, and apply a soft quota to each user on it? If I do, can I then run a report, and see who's using how much, or does it only apply to files created after the quotas are applied? mark
2018 Sep 06
0
bad udp cksum
I have seen such and issue but it depends on the environment structure. I have seen it mostly on VM's and it was resolved. The hardware and software details of the setup might help to understand what's causing it. Eliezer ---- Eliezer Croitoru Linux System Administrator Mobile: +972-5-28704261 Email: eliezer at ngtech.co.il -----Original Message----- From: CentOS [mailto:centos-bounces
2020 Nov 06
1
Centos 8 and xfs_quota
Folks I'm trying to use xfs_quota to keep track of disk space usage for my users. The documentation states that I should specify "uquota" as an option on the mount data in /etc/fstab. Yet, I cannot find the entry in fstab that corresponds to the Logical Volume that ends up being mounted on /home1. The system in question was installed on a single disk system. Later, after
2011 Jan 18
3
disk quotas + centos 5,5 +xfs
Hi all, is any one aware quotas not working in 5,5? I'm using XFS as a file system. My fstab has the appropriate usrquota,grpquota but when I try to run; quotacheck -cug /foo I get; quotacheck: Can't find filesystem to check or filesystem not mounted with quota option. I already have a large amount of data in the mount. Do quotas get implemented on only empty filesystems and
2018 Aug 09
4
bad udp cksum
Hi, Recently I'm noticing an interesting issue. My CentOS servers are trying to send logs to a logging server via 514/udp, however I'm not receiving anything. I did the following on CentOS *tcpdump -vvv -nn udp -i esn160 port 514* In another session on the same server: *nc syslog-server -u 514* tcpdump started to show me messages like: *[bad udp cksum 0x3ce9 -> 0xb0f5!] SYSLOG,
2001 Apr 25
0
2.2.0 panics with quotas and no rpc.rquotad on NFS server
Samba 2.2.0 on SPARC Solaris 8 Configured with: ./configure --with-pam --with-syslog --with-quotas --with-msdfs --with-acl-support I am accessing the share \\server\mgerdts, which is itself an automounted (NFS) directory. That is, /home/mgerdts on server really exists on nfsserver. On nfsserver, rquotad is commented out of inetd.conf. Using smbclient (2.0.7, yeah I know) I do: smbclient
2018 Aug 10
0
bad udp cksum
> Hi, > > Recently I'm noticing an interesting issue. > My CentOS servers are trying to send logs to a logging server via 514/udp, > however I'm not receiving anything. > > I did the following on CentOS > *tcpdump -vvv -nn udp -i esn160 port 514* > > In another session on the same server: > *nc syslog-server -u 514* > > tcpdump started to show me
2004 Dec 30
1
Result of "net rpc user info" differents from "net ads user info"?
I have tried for several accounts (below is one of them), "net ads" always reports less 1 item than "net rpc"? (The result of "net rpc" is same with the AD's setting) Any hints? Thanks in advance. Iap ---------------------------------------------------------------------------- --------------------- # net rpc user info rdadmin -Uusername%password -S2003ad
2007 Oct 23
3
xfs problems with xen3.1 on domu
Have amd64 xen 3.1 installed on debian etch. Have all the domu file systems in lvm. Problem 1 If I have a xfs files system when I mount it on domu I get this error: Filesystem "sda5": Disabling barriers, not supported by the underlying device XFS mounting filesystem sda5 Ending clean XFS mount for filesystem: sda5 If I mount with nobarriers the message goes away. If I mount under
2006 Mar 13
3
problem updating mulitple divs with ajax
i''m having some issues updating multiple divs via ajax. perhaps someone can lend some assistance. i''ve got 2 divs: user_list and user_form. when a person clicks the "edit this user" or "add new user" link the user_form div is updated via an ajax call and the form is shown in the user_form div. this form is a remote form. it submits to either the update
2006 Apr 06
3
sortable list not saving to database
i am trying to use a sortable list on my app. i used the chapter in Rails recipes as a reference on how to do it. i have the following code in my controllerr: def sort @user_list = User.find(params[:id]) @user_list.tasks.each do |task| task.position = params[''user-list''].index(task.id) + 1 task.save end render :nothing => true end and in my
2011 Jan 20
0
xfs_quota - space differs between du -h vs report -h
Hi all, I'm having fun getting to know xfs_quotas. I do notice some irregularities. When running xfs_quota -s -c /dev/sdc1 And then running report -h, for user barney, his used space is 4.9G while his soft/hard limit is 5G. Since I set 5, all is well, but when I run du -hs on barnies dir, it shows only 4G used. I can adjust for the diff so that my quotas can be set to 6G when I
2017 Feb 09
3
Users list and the date the password will expire
NOBODY updates my scripts! Except whoever wants, of course. ;) Would you mind going into details regarding you changes? Ole On 09.02.2017 12:02, Rowland Penny via samba wrote: > On Thu, 9 Feb 2017 11:26:55 +0100 > Ole Traupe <ole.traupe at tu-berlin.de> wrote: > >> But I got the timestamp subtraction constant right from the beginning! > > Hope you don't mind but
2017 Feb 09
5
Users list and the date the password will expire
On Thu, 9 Feb 2017 12:49:12 +0100 Ole Traupe via samba <samba at lists.samba.org> wrote: > Never mind. However, with your update I get the following error right > on the first found "user": > > ./mailtest_rowland.sh: line 27: (""/10000000)-11644473600: syntax > error: operand expected (error token is """/10000000)-11644473600") >
2017 Feb 08
3
Users list and the date the password will expire
On Wed, 8 Feb 2017 18:32:15 +0100 Ole Traupe via samba <samba at lists.samba.org> wrote: > That was weird: didn't see (expect) there to be a discussion right on > the same topic going on at this very moment. > > Ole > > > On 08.02.2017 17:37, Ole Traupe via samba wrote: > > Hi list, > > > > long time no see! :) > > > > I was looking