[gentoo-user] Re: [gentoo]Block certain websites

2007-09-16 Thread Alexander Skwar
· Balaviswanathan Vaidyanathan [EMAIL PROTECTED]:

 Hi all,

   This is to know how to block certain websites as I intend to set up a 
 browsing centre based on Gentoo OS

Forget about it. There are far too many open proxies out
there, like my own at http://alexander.skwar.name/~askwar/stuff/proxy/.
Blacklists don't work.

BTW: This has nothing at all to do with Gentoo.

Alexander Skwar
-- 
A complex system that works is invariably found to have evolved from a
simple system that works.


-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Re: [gentoo]Block certain websites

2007-09-16 Thread Alan McKinnon
On Sunday 16 September 2007, Alexander Skwar wrote:
 · Balaviswanathan Vaidyanathan [EMAIL PROTECTED]:
  Hi all,
 
This is to know how to block certain websites as I intend to set
  up a browsing centre based on Gentoo OS

 Forget about it. There are far too many open proxies out
 there, like my own at
 http://alexander.skwar.name/~askwar/stuff/proxy/

/me makes a mental note to bookmark this

/me makes another note to buy Alexander a beer next time I go to Europe

:-)

alan


-- 
Optimists say the glass is half full,
Pessimists say the glass is half empty,
Developers say wtf is the glass twice as big as it needs to be?

Alan McKinnon
alan at linuxholdings dot co dot za
+27 82, double three seven, one nine three five
--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] [gentoo]Block certain websites

2007-09-16 Thread Dale
Balaviswanathan Vaidyanathan wrote:
 Hi all,
  
 This is to know how to block certain websites as I intend to set up a
 browsing centre based on Gentoo OS
  
 Thanks and Regards
  
 Bala

 
 Unlimited freedom, unlimited storage. Get it now
 http://in.rd.yahoo.com/tagline_mail_2/*http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html/


Could you not add the sites to your hosts file and point them back to local?

Dale

:-)  :-)


Re: [gentoo-user] [gentoo]Block certain websites

2007-09-16 Thread William Kenworthy
On Sun, 2007-09-16 at 06:52 -0500, Dale wrote:
 Balaviswanathan Vaidyanathan wrote: 
  Hi all,
   
  This is to know how to block certain websites as I intend to set up
  a browsing centre based on Gentoo OS
   
  Thanks and Regards
   
  Bala
  
  
  Unlimited freedom, unlimited storage. Get it now
 
 Could you not add the sites to your hosts file and point them back to
 local?
 
 Dale
 
 :-)  :-)

http://everthingisnt.com/hosts.html

:)

BillK

-- 
William Kenworthy [EMAIL PROTECTED]
Home in Perth!
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] [gentoo]Block certain websites

2007-09-16 Thread William Kenworthy
On Sun, 2007-09-16 at 20:13 +0800, William Kenworthy wrote:
 On Sun, 2007-09-16 at 06:52 -0500, Dale wrote:
  Balaviswanathan Vaidyanathan wrote: 
   Hi all,

   This is to know how to block certain websites as I intend to set up
   a browsing centre based on Gentoo OS

   Thanks and Regards

   Bala
   
   
   Unlimited freedom, unlimited storage. Get it now
  
  Could you not add the sites to your hosts file and point them back to
  local?
  
  Dale
  
  :-)  :-)
 

Sorry, spelling mistake ...

http://everythingisnt.com/hosts.html

:(

 :)
 
 BillK
 
 -- 
 William Kenworthy [EMAIL PROTECTED]
 Home in Perth!
-- 
William Kenworthy [EMAIL PROTECTED]
Home in Perth!
-- 
[EMAIL PROTECTED] mailing list



[gentoo-user] Re: [gentoo]Block certain websites

2007-09-16 Thread Alexander Skwar
· Dale [EMAIL PROTECTED]:

 Could you not add the sites to your hosts file and point them back to local?

No. This won't hinder a user from accessing a proxy site
and have that site fetch and display the content. Check
out one of the MANY MANY proxy sites at http://proxy.org/.

Alexander Skwar
-- 
Ad astra per aspera.
[To the stars by aspiration.]


-- 
[EMAIL PROTECTED] mailing list



[gentoo-user] Re: Re: [gentoo]Block certain websites

2007-09-16 Thread Alexander Skwar
· Alan McKinnon [EMAIL PROTECTED]:

 On Sunday 16 September 2007, Alexander Skwar wrote:
 · Balaviswanathan Vaidyanathan [EMAIL PROTECTED]:
  Hi all,
 
This is to know how to block certain websites as I intend to set
  up a browsing centre based on Gentoo OS

 Forget about it. There are far too many open proxies out
 there, like my own at
 http://alexander.skwar.name/~askwar/stuff/proxy/
 
 /me makes a mental note to bookmark this

Feel free to use it. No guarantees about performance, though ;)

 /me makes another note to buy Alexander a beer next time I go to Europe
 
 :-)

*g* Thanks.

One important thing to note, though. It's important to remember
that the proxy operator could easily sniff all the traffic that's
going through the proxy. The proxy needs to be able to read the
traffic. 

Now, I swear that *I* am not going to log any traffic going
through my system. But you've gotta decide if you trust me...

On a larger note, exactly this question was the reason for the
recent tor problem, cf. 
http://www.derangedsecurity.com/time-to-reveal%e2%80%a6/
or http://it.slashdot.org/article.pl?sid=07/09/11/1730258.

Cheers,

Alexander Skwar

PS: *LOL* My signature is random. I _swear_ :)
-- 
Simon: I swear - when it's appropriate.
Kaylee: Simon, the whole point of swearing is that it ain't appropriate.

-- 
[EMAIL PROTECTED] mailing list



[gentoo-user] Apache 2.2: missing KEEPENV (with solution)

2007-09-16 Thread Michael Mauch
Hi,

the recent Apache 2.2.6 ebuild brought an /etc/init.d/apache2 that
doesn't honour the KEEPENV variable anymore.

Formerly one could preserve some of the environment variables (while all
others would be unset to keep Apache's environment tidy).

To resurrect that KEEPENV variable, I put in /etc/conf.d/apache2:


# first set all variables
. /etc/profile

#
# Environment variables to keep
# All environment variables are cleared from apache
# Use this to preserve some of them
# NOTE!!! It's very important that this contains PATH

KEEPENV=PATH PWD LANG NLS_LANG ORACLE_HOME ORACLE_SID ORA_NLS10 
LD_LIBRARY_PATH
# only an example

while IFS== read name value ; do
  case  $KEEPENV  in
* $name *) ;;
*)   unset $name 2/dev/null;;
  esac
done  (printenv)



Regards...
Michael
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Re: Re: [gentoo]Block certain websites

2007-09-16 Thread Alan McKinnon
On Sunday 16 September 2007, Alexander Skwar wrote:
 One important thing to note, though. It's important to remember
 that the proxy operator could easily sniff all the traffic that's
 going through the proxy. The proxy needs to be able to read the
 traffic.

Thanks :-)

I don't need to use your proxy though but it is nice to have an one 
available in meetings with some half-wit admins who insist they can 
block anything/anytime/anywhere. When that happens I can never 
remember/find one fast enough to have the full devastating impact that 
I seek

alan


-- 
Optimists say the glass is half full,
Pessimists say the glass is half empty,
Developers say wtf is the glass twice as big as it needs to be?

Alan McKinnon
alan at linuxholdings dot co dot za
+27 82, double three seven, one nine three five
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] SSH won't restart

2007-09-16 Thread Mike Williams
On Saturday 08 September 2007 16:40:34 Grant wrote:
 I just upgraded ssh and when I try to restart I get:

 * Stopping sshd ... [ !! ]

 I don't see anything about it in '/var/log/sshd/current'.  How can I
 figure out what is wrong?  I'm a little nervous because I don't want
 to shut myself out of this remote server.

This thread went on for a long time, which I mostly ignored TBH.
However, I think I just found a solution.
openssh, in some circumstances (I believe to be openssl changing ABI), will 
not restart as you found. It will only not restart when it's being actively 
used, so you can't do so will logged in.
To restart it when your logged out on a remote server is simply a matter of 
doing this:

# (sleep 15  /etc/init.d/sshd restart) 

Then getting all ssh sessions logged out within 15 seconds.
I've just done this on a remote system and can now happily log back in, and 
restart ssh without issue.

-- 
Mike Williams
--
[EMAIL PROTECTED] mailing list



[gentoo-user] Re: SSH won't restart

2007-09-16 Thread Alexander Skwar
· Mike Williams [EMAIL PROTECTED]:

 However, I think I just found a solution.
 openssh, in some circumstances (I believe to be openssl changing ABI), will 
 not restart as you found. It will only not restart when it's being actively 
 used, so you can't do so will logged in.
 To restart it when your logged out on a remote server is simply a matter of 
 doing this:
 
 # (sleep 15  /etc/init.d/sshd restart) 

Hm?

I don't find this to be true. I often restart sshd by doing exactly
/etc/init.d/sshd restart. While I'm remote logged in via SSH. I find,
that after having done this, new settings/versions are active.

Alexander Skwar
-- 
Seeing is believing.  You wouldn't have seen it if you hadn't believed it.


-- 
[EMAIL PROTECTED] mailing list



[ot] Re: [gentoo-user] Re: Re: [gentoo]Block certain websites

2007-09-16 Thread Arturo 'Buanzo' Busleiman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Alan McKinnon wrote:
 I don't need to use your proxy though but it is nice to have an one 
 available in meetings with some half-wit admins who insist they can 
 block anything/anytime/anywhere. When that happens I can never 
 remember/find one fast enough to have the full devastating impact that 
 I seek

The other day something quite funny happened to me. I was with my Laptop trying 
to find an open AP.
I found one, but couldn't browser the internet nor get my OpenVPN (against a 
USA-based server) up
and running. I started making some tests... and I finally tried sshing into one 
of my local (i.e in
argentina) servers.

It worked. So, they were filtering (or the internet link didn't have) 
international access. I
quickly set-up an openvpn server on the argentinian (i.e national) server, a 
3proxy-proxy (fast
enough), and told firefox to use it (over the vpn). Quite funny :)

- --
Arturo Buanzo Busleiman - Consultor Independiente en Seguridad Informatica
Servicios Ofrecidos: http://www.buanzo.com.ar/pro/
Unase a los Foros GNU/Buanzo - La palabra Comunidad en su maxima expresion.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFG7UlqAlpOsGhXcE0RCo8uAJkBRkqAjLtPTa9gIgJwTHtV//wRdQCfWq5q
gsEqVOuUlXA/2MuXm4sxe94=
=hRu+
-END PGP SIGNATURE-
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Re: SSH won't restart

2007-09-16 Thread Mike Williams
On Sunday 16 September 2007 16:40:45 Alexander Skwar wrote:

  openssh, in some circumstances (I believe to be openssl changing ABI),
  will not restart as you found. It will only not restart when it's being
  actively used, so you can't do so will logged in.


  I've just done this on a remote system and can now happily log back in, 
  and restart ssh without issue.   


 Hm?

 I don't find this to be true. I often restart sshd by doing exactly
 /etc/init.d/sshd restart. While I'm remote logged in via SSH. I find,
 that after having done this, new settings/versions are active.

Key words in some circumstances.

-- 
Mike Williams
-- 
[EMAIL PROTECTED] mailing list



[gentoo-user] Re: Re: SSH won't restart

2007-09-16 Thread Alexander Skwar
· Mike Williams [EMAIL PROTECTED]:

 On Sunday 16 September 2007 16:40:45 Alexander Skwar wrote:
 
  openssh, in some circumstances (I believe to be openssl changing ABI),
  will not restart as you found. It will only not restart when it's being
  actively used, so you can't do so will logged in.
 
 
  I've just done this on a remote system and can now happily log back in, 
  and restart ssh without issue.   
 
 
 Hm?

 I don't find this to be true. I often restart sshd by doing exactly
 /etc/init.d/sshd restart. While I'm remote logged in via SSH. I find,
 that after having done this, new settings/versions are active.
 
 Key words in some circumstances.

Like?

Actually, I never found this to be true.

Alexander Skwar
-- 
I hate trolls.  Maybe I could metamorph it into something else -- like a
ravenous, two-headed, fire-breathing dragon.
-- Willow


-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Re: SSH won't restart

2007-09-16 Thread Graham Murray
Mike Williams [EMAIL PROTECTED] writes:

 Key words in some circumstances.

What circumstances? I too have performed updates on several remote
systems via SSH and run /etc/init.d/sshd restart and never had any
problems. 
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Re: SSH won't restart

2007-09-16 Thread Arturo 'Buanzo' Busleiman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Graham Murray wrote:
 What circumstances? I too have performed updates on several remote
 systems via SSH and run /etc/init.d/sshd restart and never had any
 problems. 

Something like /etc/init.d/sshd test-restart would be nice. It'd allow all of 
us to stop worrying
about a potential restart/lockout issue.

- --
Arturo Buanzo Busleiman - Consultor Independiente en Seguridad Informatica
Servicios Ofrecidos: http://www.buanzo.com.ar/pro/
Unase a los Foros GNU/Buanzo - La palabra Comunidad en su maxima expresion.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFG7W8rAlpOsGhXcE0RCjNTAJ9wu2RSUd7sV7aT+wB7SPkK0wu47ACfQ5He
Ac8YzZiCNexnzRQQY5J7Tm0=
=Gsw8
-END PGP SIGNATURE-
-- 
[EMAIL PROTECTED] mailing list



Re: [ot] Re: [gentoo-user] Re: Re: [gentoo]Block certain websites

2007-09-16 Thread Hans-Werner Hilse
Hi,

On Sun, 16 Sep 2007 12:19:06 -0300
Arturo 'Buanzo' Busleiman [EMAIL PROTECTED] wrote:

 The other day something quite funny happened to me. I was with my Laptop 
 trying to find an open AP.
 I found one, but couldn't browser the internet nor get my OpenVPN (against a 
 USA-based server) up
 and running. I started making some tests... and I finally tried sshing into 
 one of my local (i.e in
 argentina) servers.
 
 It worked. So, they were filtering (or the internet link didn't have) 
 international access. I
 quickly set-up an openvpn server on the argentinian (i.e national) server, a 
 3proxy-proxy (fast
 enough), and told firefox to use it (over the vpn). Quite funny :)

I just use ssh for this. Using the -D flag gives a SOCKS5 proxy,
listening locally, making/accepting connections on the ssh remote end.
You can use it directly in Firefox, no need for full-fledged VPN.
(and for that, there would be the new -w option -- when IP-via-TCP is
an option)

-hwh
-- 
[EMAIL PROTECTED] mailing list



[gentoo-user] Re: Re: SSH won't restart

2007-09-16 Thread Alexander Skwar
· Arturo 'Buanzo' Busleiman [EMAIL PROTECTED]:
 Graham Murray wrote:

 What circumstances? I too have performed updates on several remote
 systems via SSH and run /etc/init.d/sshd restart and never had any
 problems. 
 
 Something like /etc/init.d/sshd test-restart would be nice.

For what?

 It'd allow all of us to stop worrying 
 about a potential restart/lockout issue.

A /etc/init.d/sshd stop won't kill any SSH sessions. It'll
simply the sshd master process. Because of that, additional
logins won't be possible.

Alexander Skwar
-- 
I remember Ulysses well...  Left one day for the post office to mail a letter,
met a blonde named Circe on the streetcar, and didn't come back for 20 years.


-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Xorg.conf changes and dual screen setup

2007-09-16 Thread Mick
On Saturday 15 September 2007, Allan Gottlieb wrote:
 At Sat, 15 Sep 2007 20:56:32 +0100 Mick [EMAIL PROTECTED] wrote:
  As it happens I noticed that my TV out also stopped working recently.
  However, I run ATI not nvidia.  I blamed the latest xorg-server for it
  and left it at that.  When I run xrandr, just like you, I only see the
  laptop's screen:
  ==
  $ xrandr
  Screen 0: minimum 320 x 175, current 1024 x 768, maximum 1024 x 768
  default connected 1024x768+0+0 0mm x 0mm
 1024x768   60.0*
 320x17560.0
 320x20060.0
 360x20060.0
 320x24060.0
 400x30060.0
 512x38460.0
 832x62460.0
  ==
 
  xrandr --output --auto doesn't change things and xrandr --output TV --on
  brings up the --help page.
 
  Anyone else noticed this  found a fix?

 Sounds like the server doesn't implement RandR version 1.2

 What does xrandr -v say.  For me it is
   Server reports RandR version 1.2

Same here.

 If you don't have 1.2 you won't have the --output stuff.

 Also --on doesn't exist even in 1.2.

Sure, but after trying --auto I started getting desperate to get this TV Out 
working again, especially as the wife was waiting to watch a movie . . . 
(tut, tut!)

 I found man xrandr helpful.

Thanks.
-- 
Regards,
Mick


signature.asc
Description: This is a digitally signed message part.


Re: [ot] Re: [gentoo-user] Re: Re: [gentoo]Block certain websites

2007-09-16 Thread Arturo 'Buanzo' Busleiman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Hans-Werner Hilse wrote:
 I just use ssh for this. Using the -D flag gives a SOCKS5 proxy,
 listening locally, making/accepting connections on the ssh remote end.
 You can use it directly in Firefox, no need for full-fledged VPN.
 (and for that, there would be the new -w option -- when IP-via-TCP is
 an option)

Yes, ssh is usually my choice for one-time tunnels, but I took the opportunity 
to setup a
full-fledged VPN against this national server, just in case I needed anything 
else :)

In any case, (quote form man ssh here) Since an SSH-based setup entails a fair 
amount of overhead,
it may be more suited to temporary setups, such as for wireless VPNs.  More 
permanent VPNs are
better provided by tools such as ipsecctl(8) and isakmpd(8)..

- --
Arturo Buanzo Busleiman - Consultor Independiente en Seguridad Informatica
Servicios Ofrecidos: http://www.buanzo.com.ar/pro/
Unase a los Foros GNU/Buanzo - La palabra Comunidad en su maxima expresion.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFG7ZhSAlpOsGhXcE0RCuAtAJ0coPxWG6Vo803NKne6DNrsaKcpyACfavLU
k3+FEhsG930qw0QMttmouno=
=CyLg
-END PGP SIGNATURE-
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Re: Re: SSH won't restart

2007-09-16 Thread Arturo 'Buanzo' Busleiman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Alexander Skwar wrote:
 A /etc/init.d/sshd stop won't kill any SSH sessions. It'll
 simply the sshd master process. Because of that, additional
 logins won't be possible.

You seem to believe that most people makes no mistakes. I wouldn't need 
test-restart (I use the
one-time telnetd-over-vpn), but it seems others might find it useful. Don't 
like it? Don't use it!
It's all about choices. More than one user here would probably agree that 
something that will make
him feel less nervous is a good thing.

- --
Arturo Buanzo Busleiman - Consultor Independiente en Seguridad Informatica
Servicios Ofrecidos: http://www.buanzo.com.ar/pro/
Unase a los Foros GNU/Buanzo - La palabra Comunidad en su maxima expresion.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFG7ZkfAlpOsGhXcE0RCgloAJ0RNPTMUNbr8p5/K4/HJoCnQ3QjRgCfbgXT
bjvhWIXOueInwnJK4Pme9OM=
=HOzS
-END PGP SIGNATURE-
-- 
[EMAIL PROTECTED] mailing list



[gentoo-user] Re: Re: Re: SSH won't restart

2007-09-16 Thread Alexander Skwar
· Arturo 'Buanzo' Busleiman [EMAIL PROTECTED]:

 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA512
 
 Alexander Skwar wrote:
 A /etc/init.d/sshd stop won't kill any SSH sessions. It'll
 simply the sshd master process. Because of that, additional
 logins won't be possible.
 
 You seem to believe that most people makes no mistakes.

No, I don't.

 I wouldn't need test-restart (I use the 
 one-time telnetd-over-vpn), but it seems others might find it useful.

For what? What should it safeguard against? You can't just start
a 2nd instance of sshd while the 1st is still running, as they
(usually) should then bind to the same port. That won't work, obviously.

Alexander Skwar
-- 
Whenever I hear anyone arguing for slavery, I feel a strong impulse to
see it tried on him personally.
-- Abraham Lincoln


-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Re: Re: Re: SSH won't restart

2007-09-16 Thread Arturo 'Buanzo' Busleiman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Alexander Skwar wrote:
 For what? What should it safeguard against? You can't just start
 a 2nd instance of sshd while the 1st is still running, as they
 (usually) should then bind to the same port. That won't work, obviously.

Ok, ok, you win.

- --
Arturo Buanzo Busleiman - Consultor Independiente en Seguridad Informatica
Servicios Ofrecidos: http://www.buanzo.com.ar/pro/
Unase a los Foros GNU/Buanzo - La palabra Comunidad en su maxima expresion.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFG7aY+AlpOsGhXcE0RCodyAJ48G9e/joDbmI6eERj+8GleoNtGfQCeKXVM
rCLVs4P1C64OcgSxYPueGF0=
=/wFw
-END PGP SIGNATURE-
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Standby

2007-09-16 Thread Iain Buchanan
On Sat, 2007-09-15 at 15:51 +0100, Paul Gibbons wrote:

[snip]

 I have in the passed got to the point that pressing the power button
 shut the system down and added an entry into my grub menu.lst of:

[snip]

 but when I pressed the power button again it performed a full restart.

Here are some things that I do:

1. My method is to keep grub.conf the same regardless of whether I'm
hibernating or not:

title Gentoo (Linux 2.6.22s2-r1)
   root (hd0,2)
   kernel /vmlinuz-2.6.22-suspend2-r1 root=/dev/hda7 
video=vesafb:ywrap,mtrr,[EMAIL PROTECTED] splash=silent,theme:livecd-2007.0  
CONSOLE=/dev/tty1
   initrd /fbsplash-livecd-2007.0-1280x1024

When the kernel has loaded, it then looks for a valid suspend image in
swap (or hd).  If it finds one, it uses it, if it doesn't, then it
continues booting as normal.

2. I should mention that I'm using suspend2-sources.

3. the suspend2 users mailing list is an excellent place to find help
with wierd my-system-won't-suspend issues.

4. my /etc/acpi/default.sh has this in it:

case $ev_type in
button)
case $event in
power)
logger acpid: default.sh hibernate
/usr/sbin/hibernate
break
;;
...

5. and lastly if, when you boot, you can't resume, it sounds like you
haven't specified where your suspend image is.  Either in the kernel:
CONFIG_SUSPEND2_DEFAULT_RESUME2=swap:/dev/hda10
or on the boot line:
resume=swap:/dev/hda10

If that still doesn't help, post back with the output of `dmesg | grep
-i suspend` after you've tried to resume.

HTH,
-- 
Iain Buchanan iaindb at netspace dot net dot au

   Bender: Hey, that's my last beer, you bastard. I'll kill you! 
   Fry: I'll kill you too, buddy, I'll kill you too.

-- 
[EMAIL PROTECTED] mailing list



[gentoo-user] xine - No sound after updates

2007-09-16 Thread Mark Knecht
Hello,
   I looked around in Bugzilla and as well as the forums but didn't
spot anything.

   I am updating all my machines here to get into sync with required
MythTV changes. Along the way that meant emerge -DuN world. Everything
is done and clean. In testing two machines I find neither has any
sound in xine any more. Has anyone else seen this?

   I see nothing in a terminal when running it. Terminal info is
pasted below. I have seen messages when starting a moving about not
having a required AC3 codec, which I suppose is somewhere in
win32codecs which is installed.

   Here are the current flag settings. I'm wondering if there was a
flag change that I didn't catch? What are -a52 and -aac?

   I do not know if win32codecs has been rebuilt so maybe I'll do that next.

   I'm hoping maybe I missed a thread somewhere that has some info on this.

Thanks in advance,
Mark


dragonfly ~ # emerge -pv xine-ui xine-lib

These are the packages that would be merged, in order:

Calculating dependencies... done!
[ebuild   R   ] media-video/xine-ui-0.99.5  USE=X ncurses nls
readline -aalib -curl -debug -libcaca -lirc -vdr -xinerama 0 kB
[ebuild   R   ] media-libs/xine-lib-1.1.8  USE=X alsa dvd flac gnome
gtk ipv6 jack mad nls opengl oss sdl truetype v4l vorbis win32codecs
xv -a52 -aac -aalib (-altivec) -arts -debug -directfb -dts -dxr3 -esd
-fbcon -imagemagick -libcaca -mmap -mng -modplug -musepack -pulseaudio
-real -samba -speex -theora -vcd -vidix -wavpack -xcb -xinerama -xvmc
0 kB

Total: 2 packages (2 reinstalls), Size of downloads: 0 kB
dragonfly ~ # emerge -pv win32codecs

These are the packages that would be merged, in order:

Calculating dependencies... done!
[ebuild   R   ] media-libs/win32codecs-20061022-r1  USE=quicktime -real 0 kB

Total: 1 package (1 reinstall), Size of downloads: 0 kB
dragonfly ~ #

[EMAIL PROTECTED] ~ $ xine
This is xine (X11 gui) - a free video player v0.99.5.
(c) 2000-2007 The xine Team.
AFD changed from -2 to -1
libdvdread: Using libdvdcss version 1.2.9 for DVD access

libdvdread: Attempting to retrieve all CSS keys
libdvdread: This can take a _long_ time, please be patient

libdvdread: Get key for /VIDEO_TS/VIDEO_TS.VOB at 0x013b
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_0.VOB at 0x2217
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x00014edc
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x00311e2f
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x0036e945
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_04_1.VOB at 0x003b45e5
libdvdread: Elapsed time 0
libdvdread: Found 4 VTS's
libdvdread: Elapsed time 0
AFD changed from -2 to -1
-- 
[EMAIL PROTECTED] mailing list



[gentoo-user] postfix+cyrus+postgre?

2007-09-16 Thread Sven Köhler

Hi,

any tipps on setting up a mailserver with postfix, cyrus-imapd and 
postgresql?


Actually, a web-frontend would be nice.It seems, that the web-cyradm 
projects stopped living some years ago :-(


Does anybody run a complete and easy to configure sollution for 
SMTP+IMAP based on Gentoo?



Thanks,
  Sven

--
[EMAIL PROTECTED] mailing list



[gentoo-user] OT - Still having problems with logmail

2007-09-16 Thread Michael Sullivan
I've unmerged ssmtp and remerged exim in its place.  This used to work,
but now it's giving me the following error:

camille michael # glsa-check -m 200610-14
Traceback (most recent call last):
  File /usr/bin/glsa-check, line 316, in ?
portage_mail.send_mail(glsaconfig, mymessage)
  File /usr/lib/portage/pym/portage_mail.py, line 85, in send_mail
raise portage_exception.PortageException(!!! An error occured while
trying to send logmail:\n+str(e))
portage_exception.PortageException: !!! An error occured while trying to
send logmail:
{'root': (501, 'root: recipient address must contain a domain')}

Where is it getting this root thing from?  As far as I can tell, my
wife's computer has an identical setup, except that on hers this works.
Can anyone help me?

-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] In-Kernel Standby [Fork of Standby]

2007-09-16 Thread Randy Barlow
This topic has gotten me wondering.  I used to us Suspend2-sources, but
on my current laptop install I'm just flying with gentoo-sources using
the built in suspend.  What are the important differences?

Sometimes upon trying to execute the hibernate script, it will fail with
some kind of Access denied or some such, but I've never been able to
determine exactly under what circumstances that happens.  It might be
when I've been using the swap space for actual swapping, but I've not
actually confirmed that.  Anyone knowledgeable care to chime in?

-- 
Randy Barlow
http://electronsweatshop.com
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] xine - No sound after updates

2007-09-16 Thread Randy Barlow
Mark Knecht wrote:
 I have seen messages when starting a moving about not
 having a required AC3 codec, which I suppose is somewhere in
 win32codecs which is installed.
 
Here are the current flag settings. I'm wondering if there was a
 flag change that I didn't catch? What are -a52 and -aac?

This page is for MPlayer, but the flags should have similar meanings:

http://gentoo-wiki.com/HOWTO_Emerge_MPlayer

Notice that it says a52 is needed for AC3.  Hope this helps!

-- 
Randy Barlow
http://electronsweatshop.com
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] postfix+cyrus+postgre?

2007-09-16 Thread Jason Carson
I use Qmail, Courier Imap and Squirrelmail for the web front end. Takes
about 10 minutes to setup.


 Hi,

 any tipps on setting up a mailserver with postfix, cyrus-imapd and
 postgresql?

 Actually, a web-frontend would be nice.It seems, that the web-cyradm
 projects stopped living some years ago :-(

 Does anybody run a complete and easy to configure sollution for
 SMTP+IMAP based on Gentoo?


 Thanks,
Sven

 --
 [EMAIL PROTECTED] mailing list




-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] postfix+cyrus+postgre?

2007-09-16 Thread kashani

Sven Köhler wrote:

Hi,

any tipps on setting up a mailserver with postfix, cyrus-imapd and 
postgresql?


Actually, a web-frontend would be nice.It seems, that the web-cyradm 
projects stopped living some years ago :-(


Does anybody run a complete and easy to configure sollution for 
SMTP+IMAP based on Gentoo?



Thanks,
  Sven



I'd recommend PostfixAdmin. I personally use it with Postfix, 
courier-imapd, and Mysql, but there is a wiki article on how to do it 
all with Postgres.


http://gentoo-wiki.com/HOWTO_Email:_A_Complete_Virtual_System_-_Postfixadmin

kashani
--
[EMAIL PROTECTED] mailing list