Re: [CentOS] And now for something completely different. Win7 on KVM

2014-10-23 Thread Alexander Dalloz

Am 23.10.2014 um 08:58 schrieb Patrick Bervoets:


Op 22-10-14 om 23:15 schreef James B. Byrne:


[ ... ]


We have adjusted the settings on the guest so the the nic is
configured as a
shared device / br0 / Device Model=virtio.  Now after it boots the
thing says
that it does not have a driver for Ethernet adaptor at all.  Is there a
different setting for the model that I should be using?

I have to point out that this thing was originally installed from
cd-rom and
then updated from the internet. So at some point it must have had a
working
network connection.  Any ideas as to how to get it to find the network
interface again?



James,

on the client, which driver do you use? Mine is 'Red Hat VirtIO Ethernet
Adapter' 61.65.104.7400 20/11/2013. I got it from virtio-win-0.1-74.iso


A newer VirtIO Driverpack can be found here:

https://alt.fedoraproject.org/pub/alt/virtio-win/latest/images/


Patrick


I can only guess that the Windows VM hadn't been configured before to 
use any VirtIO interface, neither for network, nor for VirtDisk access. 
OP should install the drivers from the ISO and then switch the disk 
device model as well to VirtIO for best performance.


Alexander

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] httpd on centos 7

2014-10-23 Thread Jerry Geis
I have read the info on apache 2.4...

I added to the bottom of httpd.conf these lines (and restarted httpd)

-

# old 2.2 config
# Order Allow,Deny
# Allow from all
AllowOverride None
Require all granted



AllowOverride None
Require all granted


SuexecUsergroup silentm silentm


--

So now I have access to the index.html page in /var/www/html
so that is good. However, I do not have access to the user gifs
/home/silentm/public_html/gifs

The user silentm exists. I get a 404 error.
127.0.0.1 - - [23/Oct/2014:08:14:21 -0400] "GET /~silentm/gifs/smlogo.jpg
HTTP/1.1" 404 222 "-" "curl/7.29.0"

All the files are there - all owned by silentm.


What did I miss to access the gifs?

Thanks

Jerry
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] epel repo

2014-10-23 Thread Steve Clark

Hi,

Has anyone else had trouble trying to reach the epel repo. I can only get to it 
if
I change the https to http in the epel.repo file.


--
Stephen Clark
*NetWolves Managed Services, LLC.*
Director of Technology
Phone: 813-579-3200
Fax: 813-882-0209
Email: steve.cl...@netwolves.com
http://www.netwolves.com
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] httpd on centos 7

2014-10-23 Thread Johnny Hughes
On 10/23/2014 07:21 AM, Jerry Geis wrote:
> I have read the info on apache 2.4...
> 
> I added to the bottom of httpd.conf these lines (and restarted httpd)
> 
> -
> 
> # old 2.2 config
> # Order Allow,Deny
> # Allow from all
> AllowOverride None
> Require all granted
> 
> 
> 
> AllowOverride None
> Require all granted
> 
> 
> SuexecUsergroup silentm silentm
> 
> 
> --
> 
> So now I have access to the index.html page in /var/www/html
> so that is good. However, I do not have access to the user gifs
> /home/silentm/public_html/gifs
> 
> The user silentm exists. I get a 404 error.
> 127.0.0.1 - - [23/Oct/2014:08:14:21 -0400] "GET /~silentm/gifs/smlogo.jpg
> HTTP/1.1" 404 222 "-" "curl/7.29.0"
> 
> All the files are there - all owned by silentm.
> 
> 
> What did I miss to access the gifs?


Lots of potential issues:

1.  /home/ is not labeled correctly for httpd stuff if selinux is on.

You would need to chcon the /public_html/ dir to label it for httpd

2. if that is a user's home, it likely got created looking like this:

drwx--. 132 jhughes jhughes 12288 Oct 23 06:21 jhughes

you would need to give apache permission for access .. so that would
likely need to become

drwxr-xr-x.

(chmod 755)

also, you would need to make public_html under the home chmod 755 as well.






signature.asc
Description: OpenPGP digital signature
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] httpd on centos 7

2014-10-23 Thread Jerry Geis
>
>Lots of potential issues:
>
>1.  /home/ is not labeled correctly for httpd stuff if selinux is on.
>
>You would need to chcon the /public_html/ dir to label it for httpd
>
>2. if that is a user's home, it likely got created looking like this:
>
>drwx--. 132 jhughes jhughes 12288 Oct 23 06:21 jhughes
>
>you would need to give apache permission for access .. so that would
l>ikely need to become
>
>drwxr-xr-x.
>
>(chmod 755)
>
>also, you would need to make public_html under the home chmod 755 as well.

Johnny,

selinux is disabled. with SELINUX=disabled in /etc/selinux/config

It is a users home... I did have permissions set

drwxr-xr-x. 34 silentm  silentm  4096 Oct 22 21:27 silentm

drwxr-xr-x. 22 silentm silentm   8192 Oct 20 08:40 public_html

drwxr-xr-x. 3 silentm silentm28672 Oct 17 10:52 gifs


Anything else?

Jerry


On Thu, Oct 23, 2014 at 8:21 AM, Jerry Geis  wrote:

> I have read the info on apache 2.4...
>
> I added to the bottom of httpd.conf these lines (and restarted httpd)
>
> -
> 
> # old 2.2 config
> # Order Allow,Deny
> # Allow from all
> AllowOverride None
> Require all granted
> 
>
> 
> AllowOverride None
> Require all granted
> 
>
> SuexecUsergroup silentm silentm
>
>
> --
>
> So now I have access to the index.html page in /var/www/html
> so that is good. However, I do not have access to the user gifs
> /home/silentm/public_html/gifs
>
> The user silentm exists. I get a 404 error.
> 127.0.0.1 - - [23/Oct/2014:08:14:21 -0400] "GET /~silentm/gifs/smlogo.jpg
> HTTP/1.1" 404 222 "-" "curl/7.29.0"
>
> All the files are there - all owned by silentm.
>
>
> What did I miss to access the gifs?
>
> Thanks
>
> Jerry
>
>
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] httpd on centos 7

2014-10-23 Thread Jerry Geis
I stumbled into it based on Johnny's reply...
Got me thinking that there must be a new control for "per user" directories.
And there is conf.d/userdir.conf

had per user disabled.

Thanks Johnny.

Jerry
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] epel repo

2014-10-23 Thread Steve Clark

On 10/23/2014 08:24 AM, Steve Clark wrote:

Hi,

Has anyone else had trouble trying to reach the epel repo. I can only get to it 
if
I change the https to http in the epel.repo file.



Figured it out - needed to update nss.

--
Stephen Clark
*NetWolves Managed Services, LLC.*
Director of Technology
Phone: 813-579-3200
Fax: 813-882-0209
Email: steve.cl...@netwolves.com
http://www.netwolves.com
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] Centos 7 - How To set text console resolution to 80x24

2014-10-23 Thread Dario Lesca
Like subject say ... hot to configure the resolution of text console to
standard 80x24 ?

Many Thanks

-- 
Dario Lesca
(inviato dal mio Linux Fedora 20 con Gnome 3.10.4)

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 7 - How To set text console resolution to 80x24

2014-10-23 Thread Jonathan Billings
On Thu, Oct 23, 2014 at 04:05:33PM +0200, Dario Lesca wrote:
>
> Like subject say ... hot to configure the resolution of text console to
> standard 80x24 ?

I believe you can just add 'vga=F00' (those are zeros) to your kernel
lines and it'll use 80x25 for the non-X VGA console.

-- 
Jonathan Billings 
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] How to update

2014-10-23 Thread Néstor
HI people,

I am using centos 5 and I am confused on what file to put in my yum.repo.d
to update my centos.

Can some one provide me with a link or an example file.

Thanks,

rotsen
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] How to update

2014-10-23 Thread Fred Smith
On Thu, Oct 23, 2014 at 08:07:30AM -0700, Néstor wrote:
> HI people,
> 
> I am using centos 5 and I am confused on what file to put in my yum.repo.d
> to update my centos.
> 

do you mean "update", or "upgrade" ??

update simply means to install whatever fixes/enhancements have been
released for Centos 5. you still end up with Centos 5, but it has all
the various fixes/enhancements Centos has made available for it.
You can do the "update" by simply becoming root (in a terminal,
"su -" and enter root's password) then type in "yum update". that's
it.

upgrade means to go to Centos-6 or Centos-7. Until recently, there has
been no centos-blessed upgrade mechanism (though in earlier versions
I have used the installer's upgrade mode, it was always suggested not
to do so because things could go bad in a hurry). 

The recommended method of doing a system upgrade was to back up ALL
your data, install the new version over the prior one, then restore your
data. there is a new upgrade tool now, and some people have tested it,
but I'm not sure if it is officially approved, yet, or not. And,
unfortunately, I don't remember what it's called.

Fred
-- 
---
Under no circumstances will I ever purchase anything offered to me as
the result of an unsolicited e-mail message. Nor will I forward chain
letters, petitions, mass mailings, or virus warnings to large numbers
of others. This is my contribution to the survival of the online
community.
 --Roger Ebert, December, 1996
- The Boulder Pledge -
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] How to update

2014-10-23 Thread Jonathan Billings
On Thu, Oct 23, 2014 at 08:07:30AM -0700, Néstor wrote:
> HI people,
> 
> I am using centos 5 and I am confused on what file to put in my yum.repo.d
> to update my centos.
> 
> Can some one provide me with a link or an example file.

Do you have the /etc/yum.repos.d/CentOS-Base.repo file that's part of
the centos-release package?  That's all you should need.

Or were you asking how to upgrade from CentOS 5 to CentOS 6 or 7?

-- 
Jonathan Billings 
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 7 - How To set text console resolution to 80x24

2014-10-23 Thread Dario Lesca
Il giorno gio, 23/10/2014 alle 10.29 -0400, Jonathan Billings ha
scritto:
> On Thu, Oct 23, 2014 at 04:05:33PM +0200, Dario Lesca wrote:
> >
> > Like subject say ... hot to configure the resolution of text console to
> > standard 80x24 ?
> 
> I believe you can just add 'vga=F00' (those are zeros) to your kernel
> lines and it'll use 80x25 for the non-X VGA console.

Not work: if I put vga=F00 into kernel line (at the initial kernel list,
press 'E' then edit the "linux16 /vmlinuz-3.10..." line), when I press
Ctrl-X I get the error "error: unrecognized number"

Some other suggest?

Thanks
-- 
Dario Lesca
(inviato dal mio Linux Fedora 20 con Gnome 3.10.4)

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 7 - How To set text console resolution to 80x24

2014-10-23 Thread Dario Lesca
Il giorno gio, 23/10/2014 alle 17.33 +0200, Dario Lesca ha scritto:
> Il giorno gio, 23/10/2014 alle 10.29 -0400, Jonathan Billings ha
> scritto:
> > On Thu, Oct 23, 2014 at 04:05:33PM +0200, Dario Lesca wrote:
> > >
> > > Like subject say ... hot to configure the resolution of text console to
> > > standard 80x24 ?
> > 
> > I believe you can just add 'vga=F00' (those are zeros) to your kernel
> > lines and it'll use 80x25 for the non-X VGA console.
> 
> Not work: if I put vga=F00 into kernel line (at the initial kernel list,
> press 'E' then edit the "linux16 /vmlinuz-3.10..." line), when I press
> Ctrl-X I get the error "error: unrecognized number"

Oppss ... This is a my error, do not put the vga=F00 at the end of
line ... now I have put it to the end of line and the error
"unrecognized number" has disappeared and the server boot.

But the problem still exist: the resolution is too  high, like without
vga=F00

> Some other suggest?
> 
> Thanks

-- 
Dario Lesca
(inviato dal mio Linux Fedora 20 con Gnome 3.10.4)

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Q. LUKS or ecryptfs-utils ?

2014-10-23 Thread James B. Byrne
On Wed, October 22, 2014 18:52, Nux! wrote:
> Do you also run the hypervisor? Because if you are not, then the
> host can dump your guest's memory and retrieve the luks passphrase
> from there AFAIK. Who are you hiding from?

The issue is backstopping a physical security breach.  We run the hypervisor
host and have physical control over access to the hardware.

Should the storage device be removed from our premises by unauthorised means
then we wish assurance that the data thereon is not readily accessible to
anyone.  We are also cognisant that it is conceivable that a external threat
might find some way to scan/copy the data without actually removing the device
physically.  I am under the impression that encryption 'should' work to
prevent 'drive-by' surveillance in that case as well, but I am not entirely
convinced that is true.

I am starting with the mail spool because that is a fairly straight-forward
case.  Our mail spool is mounted at /var/spool/imap and is an LVM volume.  We
have sufficient surplus space to easily create an equivalently sized or even
larger LVM as an encrypted whatever. I am not sure of the correct terminology
in this case; device/partition/something else?

My thinking is that we set up an encrypted LV, take the imapd service down,
copy the imap spool files and directory structure to the encrypted volume.
Dismount both, remount the encrypted volume in place of the original and
restart the imapd service.  Is this a sound approach?

We may want to have the imapd service started manually after the encrypted
volume is made accessible. If so then both actions probably belong in an admin
script (to be written).

-- 
***  E-Mail is NOT a SECURE channel  ***
James B. Byrnemailto:byrn...@harte-lyne.ca
Harte & Lyne Limited  http://www.harte-lyne.ca
9 Brockley Drive  vox: +1 905 561 1241
Hamilton, Ontario fax: +1 905 561 0757
Canada  L8E 3C3




___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 7 - How To set text console resolution to 80x24

2014-10-23 Thread Dario Lesca
Il giorno gio, 23/10/2014 alle 16.05 +0200, Dario Lesca ha scritto:
> Like subject say ... hot to configure the resolution of text console to
> standard 80x24 ?

I have put "nomodeset" at the end of the kernel boot options and now the
console is like I'm looking for: 80x24.

Is this a valid solution for a not GUI server console?

Thanks

> Many Thanks
> 

-- 
Dario Lesca
(inviato dal mio Linux Fedora 20 con Gnome 3.10.4)

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 7 - How To set text console resolution to 80x24

2014-10-23 Thread Jonathan Billings
On Thu, Oct 23, 2014 at 05:39:56PM +0200, Dario Lesca wrote:
>
> Il giorno gio, 23/10/2014 alle 17.33 +0200, Dario Lesca ha scritto:
> > Il giorno gio, 23/10/2014 alle 10.29 -0400, Jonathan Billings ha
> > scritto:
> > > On Thu, Oct 23, 2014 at 04:05:33PM +0200, Dario Lesca wrote:
> > > >
> > > > Like subject say ... hot to configure the resolution of text console to
> > > > standard 80x24 ?
> > > 
> > > I believe you can just add 'vga=F00' (those are zeros) to your kernel
> > > lines and it'll use 80x25 for the non-X VGA console.
> > 
> > Not work: if I put vga=F00 into kernel line (at the initial kernel list,
> > press 'E' then edit the "linux16 /vmlinuz-3.10..." line), when I press
> > Ctrl-X I get the error "error: unrecognized number"
> 
> Oppss ... This is a my error, do not put the vga=F00 at the end of
> line ... now I have put it to the end of line and the error
> "unrecognized number" has disappeared and the server boot.
> 
> But the problem still exist: the resolution is too  high, like without
> vga=F00

Oops, that works in EL6 but not in EL7.  Try 'nomodeset'.

-- 
Jonathan Billings 
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 7 - How To set text console resolution to 80x24

2014-10-23 Thread Dario Lesca
Il giorno gio, 23/10/2014 alle 11.46 -0400, Jonathan Billings ha
scritto:
> > But the problem still exist: the resolution is too  high, like without
> > vga=F00
> 
> Oops, that works in EL6 but not in EL7.  Try 'nomodeset'.
> 

Ok, Jonathan 'nomodeset' work.

Then I have:

a) vi /etc/default/grub # remove 'rhgb quiet', add 'nomodeset'
b) grub2-mkconfig -o /boot/grub2/grub.cfg
c) reboot

Thanks

-- 
Dario Lesca
(inviato dal mio Linux Fedora 20 con Gnome 3.10.4)

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] And now for something completely different. Win7 on KVM

2014-10-23 Thread James B. Byrne

On Thu, October 23, 2014 02:58, Patrick Bervoets wrote:

>
> James,
>
> on the client, which driver do you use? Mine is 'Red Hat VirtIO Ethernet
> Adapter' 61.65.104.7400 20/11/2013. I got it from virtio-win-0.1-74.iso
>

At the moment none I guess. The message is that the client cannot find a
driver.  I have virtio-win-0.1-74.iso and virtio-win-0.1-81.iso on the
hypervisor host.  How do I get the driver from there into the guest?  Does the
client have access to the hypervisor's file-systems?  Do I mount the ISO as a
cd-rom in the guest?  How is that done?  In virt-manager?  Is there a document
somewhere that I can get an idea on how this is supposed to work?

Bear in mind that other than the occasional configuration and diagnostic issue
I have very, very little experience with MS-Win since XPsp3 and none at all in
running it as a guest on KVM.

-- 
***  E-Mail is NOT a SECURE channel  ***
James B. Byrnemailto:byrn...@harte-lyne.ca
Harte & Lyne Limited  http://www.harte-lyne.ca
9 Brockley Drive  vox: +1 905 561 1241
Hamilton, Ontario fax: +1 905 561 0757
Canada  L8E 3C3

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] How to update

2014-10-23 Thread Néstor
That is the file I am missing.  Where can I get a copy of it.

Thanks

On Thu, Oct 23, 2014 at 8:23 AM, Jonathan Billings 
wrote:

> On Thu, Oct 23, 2014 at 08:07:30AM -0700, Néstor wrote:
> > HI people,
> >
> > I am using centos 5 and I am confused on what file to put in my
> yum.repo.d
> > to update my centos.
> >
> > Can some one provide me with a link or an example file.
>
> Do you have the /etc/yum.repos.d/CentOS-Base.repo file that's part of
> the centos-release package?  That's all you should need.
>
> Or were you asking how to upgrade from CentOS 5 to CentOS 6 or 7?
>
> --
> Jonathan Billings 
> ___
> CentOS mailing list
> CentOS@centos.org
> http://lists.centos.org/mailman/listinfo/centos
>
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] How to update

2014-10-23 Thread John R Pierce

On 10/23/2014 9:16 AM, Néstor wrote:

That is the file I am missing.  Where can I get a copy of it.


from the centos-release RPM


--
john r pierce  37N 122W
somewhere on the middle of the left coast

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] lynx only shows : FRAME: wlmframe

2014-10-23 Thread Johan Vermeulen

Hello,

when I log in through ssh to a remote site and open the web interface 
from a ( new ) printer using Lynx,

it only displays :

FRAME: wlmframe

I suspect this is some unfriendly coding, that will cost me time in 
opening Firefox instead of Lynx or w3m.


Does anybody know of a way around this?

Greetings, Johan

--
Johan Vermeulen
IT-medewerker
Caw De Kempen
johan.vermeu...@cawdekempen.be
0479.82.01.41

Powered by Linux.

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] How to update

2014-10-23 Thread Les Mikesell
On Thu, Oct 23, 2014 at 11:24 AM, John R Pierce  wrote:
> On 10/23/2014 9:16 AM, Néstor wrote:
>>
>> That is the file I am missing.  Where can I get a copy of it.
>
>
> from the centos-release RPM
>

I'd start here:
http://vault.centos.org/
and work down through your current OS version then /os/ and arch, then
CentOS/ and download/instal the centos-release rpm from there.  You
are probably pretty far out-of-date (a bad thing...) if yum has been
broken.

-- 
  Les Mikesell
 lesmikes...@gmail.com
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] Gnome 3 on centos 7

2014-10-23 Thread Jerry Geis
Hi all - almost have my migration to Centos 7 done...

My last piece is finding a way to keep menus away from users on Gnome 3.

gsettings  took me pretty far, to remap gconf-tool to gsettings.

I also removed two packages
gnome-shell-extension-places-menu
gnome-shell-extension-app-menu

This removed the Places and Apps menu options in the top panel.

However - when doing this now I see the menu choice for "Activities".

I am wondering if anyone knows how to remove that or make it
non-functional...
You can click on it and run a "terminal" which I do not desire.

Thanks,

jerry
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Gnome 3 on centos 7

2014-10-23 Thread Jerry Geis
On Thu, Oct 23, 2014 at 2:50 PM,  wrote:

> Note that I still can't post to the list
>
> Jerry Geis wrote:
> > Hi all - almost have my migration to Centos 7 done...
> >
> > My last piece is finding a way to keep menus away from users on Gnome 3.
> >
> > gsettings  took me pretty far, to remap gconf-tool to gsettings.
> >
> > I also removed two packages
> > gnome-shell-extension-places-menu
> > gnome-shell-extension-app-menu
> >
> > This removed the Places and Apps menu options in the top panel.
> >
> > However - when doing this now I see the menu choice for "Activities".
> >
> > I am wondering if anyone knows how to remove that or make it
> > non-functional...
> > You can click on it and run a "terminal" which I do not desire.
>
> I missed the beginning of this - is this supposed to be like a kiosk? The
> only things the users can do is click on icons, and those are all they're
> allowed to do? If so, I think there's a kiosk setup.
>
> And don't forget to disable screen, or whatever it is, that lets me to
> 
> mark
>
>
Mark  - it is basically a Kiosk. I really dont want any icons on the screen
- I am remotely controlling the box
and what is on the screen for viewing.
if someone connected a mouse I dont want them to be able to do anything.
I have disable the function keys and such... thanks,

Jerry
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] pidgin-sipe on Centos-6/64

2014-10-23 Thread Fred Smith
Hi!

Wondering if anyone here has been able to get the (3-rd party) SIPE
plugin (pidgin-sipe) working on Centos-6 with the C6 version of pidgin?

I've just started looking at it and after a little messing around have
no joy. Before I waste more time on it I thought I'd ask.

what I've done so far:
--download the latest binary from the Suse build service, allegedly one built
for EL-5. installs (along with libpurple-sipe) without errors, but when I
attempt to create a new account for SIPE there is no listing of it in the
list of protocols in the "add user" dialog.
--figuring I had the wrong version (since the pidgin in C6 is now rather
old) I downloaded the source and built it, again with no errors. but
having installed it, I get the same symptom.

I'd appreciate any helpful hints.

thanks!
-- 
 Fred Smith -- fre...@fcshome.stoneham.ma.us -
   But God demonstrates his own love for us in this: 
 While we were still sinners, 
  Christ died for us.
--- Romans 5:8 (niv) --
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] lynx only shows : FRAME: wlmframe

2014-10-23 Thread Keith Keller
On 2014-10-23, Johan Vermeulen  wrote:
>
> when I log in through ssh to a remote site and open the web interface 
> from a ( new ) printer using Lynx,
> it only displays :
>
> FRAME: wlmframe
>
> I suspect this is some unfriendly coding, that will cost me time in 
> opening Firefox instead of Lynx or w3m.
>
> Does anybody know of a way around this?

You will need to figure out what URL the printer wants.  You can look at
the source HTML to see if you can figure it out.  links might be able to
show more of the page, as well.  That might be a total solution, as
there may be even more ''unfriendly'' coding that prevents you from using
their UI from a text-based browser (e.g., point-and-click JavaScript).

--keith

-- 
kkel...@wombat.san-francisco.ca.us


___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] pidgin-sipe on Centos-6/64

2014-10-23 Thread Nux!
pidgin-sipe is in EPEL for CentOS 6, have you tried that?

--
Sent from the Delta quadrant using Borg technology!

Nux!
www.nux.ro

- Original Message -
> From: "Fred Smith" 
> To: centos@centos.org
> Sent: Thursday, 23 October, 2014 19:58:22
> Subject: [CentOS] pidgin-sipe on Centos-6/64

> Hi!
> 
> Wondering if anyone here has been able to get the (3-rd party) SIPE
> plugin (pidgin-sipe) working on Centos-6 with the C6 version of pidgin?
> 
> I've just started looking at it and after a little messing around have
> no joy. Before I waste more time on it I thought I'd ask.
> 
> what I've done so far:
> --download the latest binary from the Suse build service, allegedly one built
> for EL-5. installs (along with libpurple-sipe) without errors, but when I
> attempt to create a new account for SIPE there is no listing of it in the
> list of protocols in the "add user" dialog.
> --figuring I had the wrong version (since the pidgin in C6 is now rather
> old) I downloaded the source and built it, again with no errors. but
> having installed it, I get the same symptom.
> 
> I'd appreciate any helpful hints.
> 
> thanks!
> --
>  Fred Smith -- fre...@fcshome.stoneham.ma.us -
>   But God demonstrates his own love for us in this:
> While we were still sinners,
>  Christ died for us.
> --- Romans 5:8 (niv) 
> --
> ___
> CentOS mailing list
> CentOS@centos.org
> http://lists.centos.org/mailman/listinfo/centos
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] pidgin-sipe on Centos-6/64

2014-10-23 Thread Fred Smith
On Thu, Oct 23, 2014 at 08:55:00PM +0100, Nux! wrote:
> pidgin-sipe is in EPEL for CentOS 6, have you tried that?

Ah, no. I somehow missed that. Thanks for the pointer, I'll go get it.

> 
> --
> Sent from the Delta quadrant using Borg technology!
> 
> Nux!
> www.nux.ro
> 
> - Original Message -
> > From: "Fred Smith" 
> > To: centos@centos.org
> > Sent: Thursday, 23 October, 2014 19:58:22
> > Subject: [CentOS] pidgin-sipe on Centos-6/64
> 
> > Hi!
> > 
> > Wondering if anyone here has been able to get the (3-rd party) SIPE
> > plugin (pidgin-sipe) working on Centos-6 with the C6 version of pidgin?
> > 
> > I've just started looking at it and after a little messing around have
> > no joy. Before I waste more time on it I thought I'd ask.
> > 
> > what I've done so far:
> > --download the latest binary from the Suse build service, allegedly one 
> > built
> > for EL-5. installs (along with libpurple-sipe) without errors, but when I
> > attempt to create a new account for SIPE there is no listing of it in the
> > list of protocols in the "add user" dialog.
> > --figuring I had the wrong version (since the pidgin in C6 is now rather
> > old) I downloaded the source and built it, again with no errors. but
> > having installed it, I get the same symptom.
> > 
> > I'd appreciate any helpful hints.
> > 
> > thanks!
> > --
> >  Fred Smith -- fre...@fcshome.stoneham.ma.us 
> > -
> >   But God demonstrates his own love for us in this:
> > While we were still sinners,
> >  Christ died for us.
> > --- Romans 5:8 (niv) 
> > --
> > ___
> > CentOS mailing list
> > CentOS@centos.org
> > http://lists.centos.org/mailman/listinfo/centos
> ___
> CentOS mailing list
> CentOS@centos.org
> http://lists.centos.org/mailman/listinfo/centos

-- 
 Fred Smith -- fre...@fcshome.stoneham.ma.us -
The Lord detests the way of the wicked 
  but he loves those who pursue righteousness.
- Proverbs 15:9 (niv) -
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] lynx only shows : FRAME: wlmframe

2014-10-23 Thread Jonathan Billings
On Oct 23, 2014, at 12:27 PM, Johan Vermeulen  wrote:
> Does anybody know of a way around this?

You could also use SSH port forwarding to let you open up the printer's web 
page on your workstation rather on the remote server.

--
Jonathan Billings 


___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] lynx only shows : FRAME: wlmframe

2014-10-23 Thread Kahlil Hodgson
I'd use a SOCKS proxy for that.  On your local machine run:

   ssh -ND  remote_server

Then temporarily configure your web browser to use localhost: as its proxy.

In Firefox the setting is under Preferences -> Advanced -> Network -> Connection

Since this is only temporary, but something you might want to do from
time to time, consider one of the numerous browser extensions that
help with this. For firefox, I use the Toggle Proxy addon to toggle
between no proxy and the manually configured one.

Hope this helps,

Kal
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] lynx only shows : FRAME: wlmframe

2014-10-23 Thread Kahlil Hodgson
In case you're not familiar with SOCKS proxies, the aforementioned
setup will allow your browser to connect to the printers web server as
though you were running the browser on remote_server.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] [Resolved] pidgin-sipe on Centos-6/64

2014-10-23 Thread Fred Smith
On Thu, Oct 23, 2014 at 04:49:18PM -0400, Fred Smith wrote:
> On Thu, Oct 23, 2014 at 08:55:00PM +0100, Nux! wrote:
> > pidgin-sipe is in EPEL for CentOS 6, have you tried that?
> 
> Ah, no. I somehow missed that. Thanks for the pointer, I'll go get it.

Thanks, Nux, I feel kinda sheepish, but you were right, and it works!

> 
> > 
> > --
> > Sent from the Delta quadrant using Borg technology!
> > 
> > Nux!
> > www.nux.ro
> > 
> > - Original Message -
> > > From: "Fred Smith" 
> > > To: centos@centos.org
> > > Sent: Thursday, 23 October, 2014 19:58:22
> > > Subject: [CentOS] pidgin-sipe on Centos-6/64
> > 
> > > Hi!
> > > 
> > > Wondering if anyone here has been able to get the (3-rd party) SIPE
> > > plugin (pidgin-sipe) working on Centos-6 with the C6 version of pidgin?
> > > 
> > > I've just started looking at it and after a little messing around have
> > > no joy. Before I waste more time on it I thought I'd ask.
> > > 
> > > what I've done so far:
> > > --download the latest binary from the Suse build service, allegedly one 
> > > built
> > > for EL-5. installs (along with libpurple-sipe) without errors, but when I
> > > attempt to create a new account for SIPE there is no listing of it in the
> > > list of protocols in the "add user" dialog.
> > > --figuring I had the wrong version (since the pidgin in C6 is now rather
> > > old) I downloaded the source and built it, again with no errors. but
> > > having installed it, I get the same symptom.
> > > 
> > > I'd appreciate any helpful hints.
> > > 
> > > thanks!
> > > --
> > >  Fred Smith -- fre...@fcshome.stoneham.ma.us 
> > > -
> > >   But God demonstrates his own love for us in this:
> > > While we were still sinners,
> > >  Christ died for us.
> > > --- Romans 5:8 (niv) 
> > > --
> > > ___
> > > CentOS mailing list
> > > CentOS@centos.org
> > > http://lists.centos.org/mailman/listinfo/centos
> > ___
> > CentOS mailing list
> > CentOS@centos.org
> > http://lists.centos.org/mailman/listinfo/centos
> 
> -- 
>  Fred Smith -- fre...@fcshome.stoneham.ma.us -
> The Lord detests the way of the wicked 
>   but he loves those who pursue righteousness.
> - Proverbs 15:9 (niv) 
> -
> ___
> CentOS mailing list
> CentOS@centos.org
> http://lists.centos.org/mailman/listinfo/centos

-- 
 Fred Smith -- fre...@fcshome.stoneham.ma.us -
The Lord is like a strong tower. 
 Those who do what is right can run to him for safety.
--- Proverbs 18:10 (niv) -
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Loss of Ethernet adaptor

2014-10-23 Thread Akemi Yagi
On Tue, Oct 21, 2014 at 11:02 AM, Marcelo Ricardo Leitner
 wrote:
> On 16-10-2014 13:47, Akemi Yagi wrote:

>> I'm the one who did the submission. Some of my comments (which I
>> thought were helpful) have been hidden by Red Hat.
>>
>>> However, that report is closed as being  a duplicate of:
>>> https://bugzilla.redhat.com/show_bug.cgi?id=562273
>>>
>>> Which is not available to viewing by the great unwashed.
>>
>> I don't have access, either.
>>
>>> The host is running CentOS-6.5 with all updates applied to date.  My
>>> question
>>> is: Has this issue been addressed in the official e1000e module or not?
>>> if
>>> not then does the recommendation to "add pcie_aspm=off to your kernel
>>> command
>>> line" hold?
>>
>> My suggestion for you is to give ELRepo's kmod-e1000e a try. It has
>> the latest version from Intel (3.1.0.2) as opposed to the version in
>> the EL kernels (2.3.2-k). There are known cases in which a later
>> version resolved issues.
>
> Both BZs above are RHEL 5 specific, being 562273 a "driver update" one. Did
> you report this against any RHEL6 too?
>
> Marcelo

The e1000e bug report against EL6 is in this CentOS bug tracker and
you can find all the details:

http://bugs.centos.org/view.php?id=6810

RH bugzilla is here but it is private:

https://bugzilla.redhat.com/show_bug.cgi?id=1038754

Here again, I recommend use of ELRepo's kmod-e1000e package. It is
possible that the driver in the upcoming CentOS 6.6 fixes the problem.

Akemi
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos