search for: 157m

Displaying 8 results from an estimated 8 matches for "157m".

Did you mean: 157
2007 Mar 23
1
Consolidating LVM volumes..
...]# df -h Filesystem Size Used Avail Use% Mounted on /dev/mapper/VolGroup00-RootVol00 15G 1.5G 13G 11% / /dev/md0 190M 42M 139M 24% /boot /dev/mapper/VolGroup00-DataVol00 39G 16G 22G 42% /data none 157M 0 157M 0% /dev/shm /dev/mapper/VolGroup00-HomeVol00 77G 58G 15G 80% /home /dev/mapper/VolGroup00-VarVol00 16G 382M 15G 3% /var Rather than try and reduce the size of the VarVol00 volume to make more unallocated space which I have he...
2006 Mar 04
0
ntop **ERROR** Queue of address '???' failed, code -1 [addr queue=4096/max=4097]
...00 [root at gatekeeper bin]# rpm -q ntop ntop-3.1-1.2.el4.rf [root at gatekeeper bin]# df -h S.ficheros Tama?o Usado Disp Uso% Montado en /dev/mapper/VolGroup00-LogVol00 2,9G 2,4G 425M 85% / /dev/hda1 99M 16M 79M 17% /boot none 157M 0 157M 0% /dev/shm [root at gatekeeper bin]# free total used free shared buffers cached Mem: 321044 312068 8976 0 44984 98648 -/+ buffers/cache: 168436 152608 Swap: 655352 480 654872 [root at g...
2006 Aug 05
0
Memory Usage after upgrading to pre-release and removing sendfile
...er the upgrade my memory usage is shown like this: PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 4592 flipl 16 0 197m 150m 2360 S 0.0 14.9 6:17.28 mongrel_rails 4585 mongrel 16 0 190m 140m 1756 S 0.0 13.9 0:52.86 mongrel_rails 4579 mongrel 16 0 200m 157m 1752 S 0.0 15.5 0:56.31 mongrel_rails 4582 mongrel 16 0 189m 139m 1752 S 0.0 13.8 1:05.89 mongrel_rails 5427 foo 16 0 184m 139m 1732 S 0.0 13.8 3:30.28 mongrel_rails 5092 blah 16 0 175m 138m 1720 S 0.0 13.7 0:44.70 mongrel_rails 4365 flipl 15 0 8796 2060...
2019 Feb 05
2
mbox 2 Maildir
Hi, I am experimenting with the migration. I unset mail_location, thus it is empty and dovecot performs automatic mailbox detection. Therefore I do not need per-user set of mail location. I login as a testuser and do: doveadm sync maildir:~/Maildir It seems for me that in this situation the new Maildir becomes the active mail delivery location at the time of the creation(?) or completing the
2009 Jul 01
14
can''t boot 2009.06 domU on Xen 3.4.1 / CentOS 5.3 dom0
I''ve got a CentOS 5.3 dom0 with Xen 3.4.1-rc5 (or so). I''ve tried the same stuff below with 3.4.0, no difference. I''m trying to install 2009.06 PV domU based on instructions from [1] and [2]. I can run the install fine, I can also get the kernel and boot archive (from [2]) after the install. But for the life of me I can''t get the installed domU to boot. If I
2011 Jul 11
0
Instability when using RDMA transport
...tiple clients are reading and writing while using the RDMA transport. - High memory usage on one Gluster server. In this case node06. Output is from 'top' command. - node06: 14850 root 16 0 23.1g 17g 1956 S 120.9 56.6 8:38.78 glusterfsd - node05: 12633 root 16 0 418m 157m 1852 S 0.0 0.5 2:56.02 glusterfsd - node04: 21066 root 15 0 355m 151m 1852 S 0.0 0.6 1:07.71 glusterfsd - Temporary work around by using IPoIB instead of RDMA - May take 10 - 15 minutes for first failure. ===== Version Information ===== - CentOS 5.6 kernel 2.6.18-238.9.1.el5 -...
2006 May 19
25
iptables CLASSIFY and MARK not working?
I have to match my packets based on MAC address, which I cannot do in the POSTROUTING chain, so I do it in PREROUTING using MARK. Then, I match on the MARK in the POSTROUTING chain to do a CLASSIFY. But this does not seem to work: wireless-r1 bwlimit # iptables -L -v -n -t mangle Chain PREROUTING (policy ACCEPT 3353K packets, 941M bytes) pkts bytes target prot opt in out source
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame. For instance > ddTable <- data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry")) I want a dataset that is Id Name 1 Paul 2 Bob > unique(ddTable) Will give me all 4 rows, and > unique(ddTable$Id) Will give me c(1,2), but not accompanied by the name column.