[BlueOnyx:14743] Re: MAC Address question?

2014-02-24 Thread Jeffrey M. Swiger
Lew;
THANKS!.. This worked out GREAT and all is back on line and working..
Hard to explain what I was in trouble with I guess, but seems there were 
multiple NIC’s
that weren’t there after switching machines..
THANKS AGAIN!
Jeff-N8NOE




Message: 1
Date: Sat, 22 Feb 2014 19:02:51 +
From: Lew Berry 
Subject: [BlueOnyx:14734] Re: MAC Address question?
To: BlueOnyx General Mailing List 
Message-ID: <6df1a3f5c99a8244b89de0713cb0df8f4b618...@sbs.lcb.local>
Content-Type: text/plain; charset="us-ascii"

Jeffery
I think the problem may be more that the NIC in the new box is eth1 not eth0 
but the system is trying to load on the eth0 from the old box. I had the same 
problem when a NIC had to be replaced. If you edit the file 
"70-persistent-net.rules" to remove the old eth0 card line and also remove the 
new eth1 line:
vi /etc/udev/rules.d/70-persistent-net.rules
Then you just need to reboot and the file will be updated with the new network 
card as eth0.


Lew Berry, MCSE, MCT, CSSA
LCB Consulting Inc.
Systems Engineer
450-106 State Road 13 N, #205
St Johns FL, 32259
lcbe...@lcbconsulting.net
(904) 482-1405
(904) 322-5049 fax
(904) 651-1046 cell
___
Blueonyx mailing list
Blueonyx@mail.blueonyx.it
http://mail.blueonyx.it/mailman/listinfo/blueonyx


[BlueOnyx:14744] Re: Office365 need MX record priority 0

2014-02-24 Thread Colin Jack

On 24/02/2014 00:14, "Michael Stauber"  wrote:

>But to be honest: This is just more Microsoft bullshit, forcing stuff
>down our throat nobody needs.

Isn¹t it just! Same old. :)

Colin


___
Blueonyx mailing list
Blueonyx@mail.blueonyx.it
http://mail.blueonyx.it/mailman/listinfo/blueonyx


[BlueOnyx:14745] quota help

2014-02-24 Thread neal pressman
i have built a new system using a single disk

the original /home partition was 58GB

i added a second disk 146GB and migrated /home to it 

i cannot up the quota for the site or users past 58GB


looking at active monitor i see /home listed twice

both the currently mounted /home showing 54GB of usage out of 138GB ( 39% )
and the old /home 214MB of 58GB usage, this was the size before i created the 
new /home

how can i get BO to only see 1 /home and allow me to set a quota for the full 
size?

--
Open WebMail Project (http://openwebmail.org)

___
Blueonyx mailing list
Blueonyx@mail.blueonyx.it
http://mail.blueonyx.it/mailman/listinfo/blueonyx


[BlueOnyx:14746] Re: quota help

2014-02-24 Thread Michael Stauber
Hi Neal,

> i have built a new system using a single disk
> 
> the original /home partition was 58GB
> 
> i added a second disk 146GB and migrated /home to it 
> 
> i cannot up the quota for the site or users past 58GB
> 
> 
> looking at active monitor i see /home listed twice
> 
> both the currently mounted /home showing 54GB of usage out of 138GB ( 39% )
> and the old /home 214MB of 58GB usage, this was the size before i created the 
> new /home
> 
> how can i get BO to only see 1 /home and allow me to set a quota for the full 
> size?

The "new" /home partition must be mounted as "/home". So when you run
the command "mount" or "df -h", it should show as that. If not, you may
have to edit your /etc/fstab

Once that's done the other problem has to be fixed: That CODB now has
two "/home" partitions. To fix that, do this:

Login as "admin" by SSH and use the command "su -" to gain "root" access
on your server. Then run this command:

/usr/sausalito/bin/cceclient

That starts a command line interface to poll and manipulate the CODB
database backend of the GUI.

Inside that shell then type this command exactly as shown:

find Disk mountPoint = "/home"

It will report back something like this:

104 OBJECT 14
104 OBJECT 98

In the case of this example it reports that the CODB Objects with the ID
14 and 98 have the desired information.

Use this command to remove both objects, but replace the Object IDs with
the ones that were reported in your case:

destroy 14
destroy 98

That will destroy the two objects in question. Then restart the service
CCEd, which will re-create or update the partitioning information:

/sbin/service cced.init restart

-- 
With best regards

Michael Stauber
___
Blueonyx mailing list
Blueonyx@mail.blueonyx.it
http://mail.blueonyx.it/mailman/listinfo/blueonyx


[BlueOnyx:14747] Re: quota help

2014-02-24 Thread neal pressman
that worked

thanks for your help

--
Open WebMail Project (http://openwebmail.org)


-- Original Message ---
From: Michael Stauber 
To: BlueOnyx General Mailing List 
Sent: Mon, 24 Feb 2014 19:16:05 -0500
Subject: [BlueOnyx:14746] Re: quota help

> Hi Neal,
> 
> > i have built a new system using a single disk
> > 
> > the original /home partition was 58GB
> > 
> > i added a second disk 146GB and migrated /home to it 
> > 
> > i cannot up the quota for the site or users past 58GB
> > 
> > 
> > looking at active monitor i see /home listed twice
> > 
> > both the currently mounted /home showing 54GB of usage out of 138GB ( 39% )
> > and the old /home 214MB of 58GB usage, this was the size before i created 
> > the 
> > new /home
> > 
> > how can i get BO to only see 1 /home and allow me to set a quota for the 
> > full 
> > size?
> 
> The "new" /home partition must be mounted as "/home". So when you run
> the command "mount" or "df -h", it should show as that. If not, you may
> have to edit your /etc/fstab
> 
> Once that's done the other problem has to be fixed: That CODB now has
> two "/home" partitions. To fix that, do this:
> 
> Login as "admin" by SSH and use the command "su -" to gain "root" access
> on your server. Then run this command:
> 
> /usr/sausalito/bin/cceclient
> 
> That starts a command line interface to poll and manipulate the CODB
> database backend of the GUI.
> 
> Inside that shell then type this command exactly as shown:
> 
> find Disk mountPoint = "/home"
> 
> It will report back something like this:
> 
> 104 OBJECT 14
> 104 OBJECT 98
> 
> In the case of this example it reports that the CODB Objects with 
> the ID 14 and 98 have the desired information.
> 
> Use this command to remove both objects, but replace the Object IDs with
> the ones that were reported in your case:
> 
> destroy 14
> destroy 98
> 
> That will destroy the two objects in question. Then restart the service
> CCEd, which will re-create or update the partitioning information:
> 
> /sbin/service cced.init restart
> 
> -- 
> With best regards
> 
> Michael Stauber
> ___
> Blueonyx mailing list
> Blueonyx@mail.blueonyx.it
> http://mail.blueonyx.it/mailman/listinfo/blueonyx
--- End of Original Message ---

___
Blueonyx mailing list
Blueonyx@mail.blueonyx.it
http://mail.blueonyx.it/mailman/listinfo/blueonyx