[gentoo-user] Test request: open-iscsi 2.0.872

2011-06-05 Thread Sebastian Pipping
Hello!


Would be great to have a few people test open-iscsi 2.0.872 before
moving it from overlay betagarden to the main tree.  To get it installed
please run:

  # layman -a betagarden
  # emerge -av =sys-block/open-iscsi-2.0.872

Important: Please include a description of what you did while testing in
your feedback.  At best, post your feedback as a reply to bug 340425:

  https://bugs.gentoo.org/show_bug.cgi?id=340425

Thanks in advance!

Best,



Sebastian



[gentoo-user] test

2009-01-05 Thread schwidom
test




[gentoo-user] test: please ignore

2008-09-29 Thread Philip Webb
This is a test to see whether I can send to the list from my new ISP
 whether messages are sent to me.  Please ignore otherwise.

-- 
,,
SUPPORT ___//___,   Philip Webb
ELECTRIC   /] [] [] [] [] []|   Cities Centre, University of Toronto
TRANSIT`-O--O---'   purslowatchassdotutorontodotca




[gentoo-user] test

2008-08-18 Thread Francesco Talamona
test



[gentoo-user] test

2008-08-18 Thread ti . liame
webmail test, please ignore 
 --
 Email.it, the professional e-mail, gratis per te: http://www.email.it/f
 
 Sponsor:
 Aggiorna la playlist del cellulare con tante nuove suonerie!
 Clicca qui: http://adv.email.it/cgi-bin/foclick.cgi?mid=7748d=20080818





[gentoo-user] test

2008-04-28 Thread Eddie Mihalow Jr

test
--
Edward A Mihalow Jr
Mudbug Computers and Networks
Gentoo! Linux
Registered Linux User#225662
New Orleans,LA
--
gentoo-user@lists.gentoo.org mailing list



[gentoo-user] Test

2007-06-18 Thread Robert Cates

Hi, just testing my exim 4.67 configuration.  Sorry!


--
[EMAIL PROTECTED] mailing list



[gentoo-user] test

2007-03-22 Thread Luigi Pinna
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I can't send more email to this mailing list, if you receive this email 
I solve the problem.
I apolize for the inconvenience,
Luigi

- -- 
Public key GPG(0xC5CB65CD) on
hkp://pgp.mit.edu
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFGAtPb5ZpKrsXLZc0RAl0SAJ4kfkrvdt484JgJCOl9RPM+GcinzwCfRvwB
DM3dCGJim3dCZMYcAJPRP5o=
=SaT2
-END PGP SIGNATURE-
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] test

2007-03-22 Thread Jason Carson
Test worked! :-)
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 I can't send more email to this mailing list, if you receive this email
 I solve the problem.
 I apolize for the inconvenience,
 Luigi

 - --
 Public key GPG(0xC5CB65CD) on
 hkp://pgp.mit.edu
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.6 (GNU/Linux)

 iD8DBQFGAtPb5ZpKrsXLZc0RAl0SAJ4kfkrvdt484JgJCOl9RPM+GcinzwCfRvwB
 DM3dCGJim3dCZMYcAJPRP5o=
 =SaT2
 -END PGP SIGNATURE-
 --
 gentoo-user@gentoo.org mailing list




-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Test for X from cli

2006-08-01 Thread John J. Foster
Good afternoon,

In a bash script, how can I test whether the script itself is being
run from a virtual terminal, or from an emulator like konsole within X?

Thanks,
festus
-- 
Ambition is a poor excuse for not having enough sense to be lazy.


pgpGfTreHkh94.pgp
Description: PGP signature


Re: [gentoo-user] Test for X from cli

2006-08-01 Thread Uwe Thiem
On 01 August 2006 20:20, John J. Foster wrote:
 Good afternoon,

 In a bash script, how can I test whether the script itself is being
 run from a virtual terminal, or from an emulator like konsole within X?

See this script by the name strangename:

#! /bin/sh

ps ax | grep strangename


If run in a terminal under X it will output something like:#
20516 pts/3R+ 0:00 grep strangename

Please note the pts.

Run from a virtual text terminal, that will be something like tty4. 

Instead of actually displaying the output, you can analyse it within your 
script.

Uwe

-- 
Mark Twain: I rather decline two drinks than a German adjective.
http://www.SysEx.com.na
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Test for X from cli

2006-08-01 Thread Philip Webb
060801 John J. Foster wrote:
 In a bash script, how can I test whether the script itself is being run
 from a virtual terminal, or from an emulator like konsole within X?

'echo $DISPLAY' returns ':0' from Konsole,
but nothing from a raw terminal called up via  Ctl-Alt-F2 .

-- 
,,
SUPPORT ___//___,  Philip Webb : [EMAIL PROTECTED]
ELECTRIC   /] [] [] [] [] []|  Centre for Urban  Community Studies
TRANSIT`-O--O---'  University of Toronto
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Test for X from cli

2006-08-01 Thread Alex Schuster
John writes:

 In a bash script, how can I test whether the script itself is being
 run from a virtual terminal, or from an emulator like konsole within X?

You can check the existance of the DISPLAY environment variable:

if [[ $DISPLAY ]]
then
echo We're running under X
else
echo No X running.
fi


Alex
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Test for X from cli

2006-08-01 Thread Jesús Guerrero
El Martes, 1 de Agosto de 2006 21:20, John J. Foster escribió:
 Good afternoon,

 In a bash script, how can I test whether the script itself is being
 run from a virtual terminal, or from an emulator like konsole within X?

 Thanks,
 festus

If you need more concrete info, $TERM is also your friend.

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Test for X from cli

2006-08-01 Thread John J. Foster
On Tue, Aug 01, 2006 at 03:43:12PM -0400, Philip Webb wrote:
 060801 John J. Foster wrote:
  In a bash script, how can I test whether the script itself is being run
  from a virtual terminal, or from an emulator like konsole within X?
 
 'echo $DISPLAY' returns ':0' from Konsole,
 but nothing from a raw terminal called up via  Ctl-Alt-F2 .
 
Of the different methods suggested, I like this one best.

Thanks to all who replied,
festus
-- 
Ambition is a poor excuse for not having enough sense to be lazy.


pgpHGTOGOyUwr.pgp
Description: PGP signature


Re: [gentoo-user] Test for X from cli

2006-08-01 Thread dg
On Tuesday 01 August 2006 23:20, John J. Foster wrote:
 Good afternoon,

 In a bash script, how can I test whether the script itself is being
 run from a virtual terminal, or from an emulator like konsole within X?

 Thanks,
 festus

Hi,

One possible solution would be to check the value of $TERM variable... If it 
is 'xterm' then you're probably in the X terminal emulator.

BR,
dmitri
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Test for X from cli

2006-08-01 Thread John J. Foster
On Tue, Aug 01, 2006 at 11:37:17PM +0400, dg wrote:
 On Tuesday 01 August 2006 23:20, John J. Foster wrote:
 
 One possible solution would be to check the value of $TERM variable... If it 
 is 'xterm' then you're probably in the X terminal emulator.

probably is not good ;-)
-- 
Ambition is a poor excuse for not having enough sense to be lazy.


pgpY2t9NjeDJU.pgp
Description: PGP signature


Re: [gentoo-user] Test for X from cli

2006-08-01 Thread Donnie Berkholz

John J. Foster wrote:

On Tue, Aug 01, 2006 at 03:43:12PM -0400, Philip Webb wrote:

060801 John J. Foster wrote:

In a bash script, how can I test whether the script itself is being run
from a virtual terminal, or from an emulator like konsole within X?

'echo $DISPLAY' returns ':0' from Konsole,
but nothing from a raw terminal called up via  Ctl-Alt-F2 .


Of the different methods suggested, I like this one best.


This will also be set in ssh sessions with X forwarding turned on. You 
might want to check whether you're in one of those as well.


Thanks,
Donnie
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Test for X from cli

2006-08-01 Thread Daniel Iliev
John J. Foster wrote:
 Good afternoon,
 
 In a bash script, how can I test whether the script itself is being
 run from a virtual terminal, or from an emulator like konsole within X?
 
 Thanks,
 festus

Hello,

Here is yet another approach.
So I would use the command tty.


[EMAIL PROTECTED] ~ $ whatis tty
tty (1) - print the file name of the terminal connected to standard input


So the check could look something like this:

#!/bin/sh
for ttyX in /dev/tty*;
do
[ `tty` == $ttyX ]  { echo no X ; break ; }
echo X section
done



-- 
Best regards,
Daniel

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] test feature in portage

2006-06-25 Thread Tamas Sarga
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Michael Weyershäuser wrote:
 Tamas Sarga wrote:
 Hi,

 I set test feature in portage, but I don't know what can I win. I lost
 some minutes when compiled glibc, but what is the pro of this feature.
 I've got never any problem with successful compiles. So am I need test
 feature? What are your opinions? What can this protect a user from?

 
 Some packages (like glibc) bring along an automated test suite that
 can be run after compilation to see if the program works correctly.
 If FEATURES=test is set then an available test suite is being run,
 if it is not set it is being skipped.
 
 As a normal end user on a desktop this might be considered a waste
 of time, when testing programs on a new architecture this can be
 helpful and should be enabled...

Thanks! Should I report to b.g.o if it failed on the first package after
I fall asleep :) ? It was kdebase-3.5.2-r2. Anyway now I turned it off.

Cheers,
Tamas Sarga
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.2 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFEnlI62hT1i1vMtiURAhLkAJ4xkdkEyuK64/eXmY5nAVoSCe0fVwCgknKn
mNnbE0s6mlGoFNBxZozlwLQ=
=v7Up
-END PGP SIGNATURE-
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] test feature in portage

2006-06-24 Thread Tamas Sarga
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

I set test feature in portage, but I don't know what can I win. I lost
some minutes when compiled glibc, but what is the pro of this feature.
I've got never any problem with successful compiles. So am I need test
feature? What are your opinions? What can this protect a user from?

- --
TIA
Tamas Sarga
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.2 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFEnbJl2hT1i1vMtiURAn77AJ9ZwzGu4pJ/p2gvP79spVf1pnTa7ACgnMgL
2NerD7ZJW7Oo0Zn9PW6VIYs=
=8fGq
-END PGP SIGNATURE-
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] test feature in portage

2006-06-24 Thread Michael Weyershäuser
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Tamas Sarga wrote:
 Hi,
 
 I set test feature in portage, but I don't know what can I win. I lost
 some minutes when compiled glibc, but what is the pro of this feature.
 I've got never any problem with successful compiles. So am I need test
 feature? What are your opinions? What can this protect a user from?
 

Some packages (like glibc) bring along an automated test suite that
can be run after compilation to see if the program works correctly.
If FEATURES=test is set then an available test suite is being run,
if it is not set it is being skipped.

As a normal end user on a desktop this might be considered a waste
of time, when testing programs on a new architecture this can be
helpful and should be enabled...
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.3 (GNU/Linux)

iD8DBQFEndK86q4f+IV6B/wRAtU+AJ9ft54DazbjThVM1w2YNAgUfGXzxQCaAi2t
7KMsGG//RLVAGbOuiqoYyYE=
=PhdL
-END PGP SIGNATURE-
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] test: please ignore

2006-04-19 Thread Philip Webb
This is a test following setting Fetchmail up as a cron job: ignore.

-- 
,,
SUPPORT ___//___,  Philip Webb : [EMAIL PROTECTED]
ELECTRIC   /] [] [] [] [] []|  Centre for Urban  Community Studies
TRANSIT`-O--O---'  University of Toronto
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] test

2006-03-21 Thread mfyang

It's a simple test.
Sorry for any inconvenience!
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] test

2006-03-04 Thread prolibertine
good test
--
/**
* Love in Gentoo-Linux  C and Python
* Look at my website and my blog
* http://www.jnlinux.org
* http://bbs.jnlinux.org
**/

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] test

2006-03-03 Thread Steven Gill
testing

Please ignore.

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] test

2006-03-03 Thread Steven Gill
Still testing mail server due to no help from list :-(

On Fri, 2006-03-03 at 18:49 +, Steven Gill wrote:
 testing
 
 Please ignore.
 

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] test

2006-02-14 Thread scwang
this is a test mail.
ignore
-- 
Wang ShaoChun(王绍春) [EMAIL PROTECTED]
PH.D Candidate
Laboratory of Computer Science, Institute of Software
Chinsese Academy of Sciences

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Test, please discard

2005-10-29 Thread Neil Bothwick
On Sat, 29 Oct 2005 03:21:24 +, Ian wrote:

 Hi there. This is a test.

Which you won't see in gmail.


-- 
Neil Bothwick

He who laughs last thinks slowest!


signature.asc
Description: PGP signature


Re: [gentoo-user] Test, please discard [OT]

2005-10-29 Thread Ian
Why? I guess thats why im having issues.
Is there any way to fix it?On 10/29/05, Neil Bothwick [EMAIL PROTECTED] wrote:
On Sat, 29 Oct 2005 03:21:24 +, Ian wrote: Hi there. This is a test.Which you won't see in gmail.--Neil BothwickHe who laughs last thinks slowest!
-- Cheers,Ian


Re: [gentoo-user] Test, please discard [OT]

2005-10-29 Thread Norberto Bensa
Ian wrote:
 Why? I guess thats why im having issues.
 Is there any way to fix it?

My guess is you won't get your own messages.

-- 
Norberto Bensa
4544-9692
Ciudad de Buenos Aires, Argentina
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Test, please discard [OT]

2005-10-29 Thread Michael Crute
On 10/29/05, Ian [EMAIL PROTECTED] wrote:
Why? I guess thats why im having issues.
Is there any way to fix it?On 10/29/05, Neil Bothwick 
[EMAIL PROTECTED] wrote:
On Sat, 29 Oct 2005 03:21:24 +, Ian wrote: Hi there. This is a test.Which you won't see in gmail.--Neil BothwickHe who laughs last thinks slowest!

-- Cheers,Ian

In gmail you won't see your own messages
till somebody replies to them or you can click Sent Mail to see what
you sent though. RTFM?

-Mike-- Michael E. CruteSoftware DeveloperSoftGroup Development CorporationLinux, because reboots are for installing hardware.In a world without walls and fences, who needs windows and gates?


[gentoo-user] test. please ignore

2005-10-28 Thread Jason Cooper
dyndns.org changed their setup, or my dynamic dns service expired.  At
any rate, checking to see if mails are making it around ok since I fixed
the dyndns.org acct and pings are moving okay.

jason.
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Test, please discard.

2005-10-28 Thread Ian
Testing.-- Cheers,Ian


[gentoo-user] Test, please discard

2005-10-28 Thread Ian
Hi there. This is a test.-- Cheers,Ian


[gentoo-user] test

2005-10-03 Thread Benjamin Allen

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] test message

2005-09-30 Thread Mark Shields
Holly,

I can vounch that messages you send to mailing lists do appear in your
Inbox (or whatever label you have set for the mailing list), but only
if you receive a reply to it.On 9/29/05, Holly Bostick [EMAIL PROTECTED] wrote:
jangar schreef: is only for test my enabled postingAs far as I know, you are not going to get your original message back inyour Gmail box.Gmail leaves a copy of the messages you send in your sent folder, and
when the message comes back from the list server, it is recognized byGmail as an exact copy of the message in the sent folder and thus Gmaildoesn't make yet another copy in your Inbox. Or something like that.
Anyway, your own messages don't appear in the list conversation, if youread the list via Gmail (because they're all in your Outbox, or Sentfolder or some such).As replied in your other thread, this has been discussed on the list
several times, and there is no 'solution', since it's a Gmail 'feature'.We are getting your messages, though.Holly--gentoo-user@gentoo.org mailing list
-- - Mark Shields


[gentoo-user] test message

2005-09-29 Thread jangar
is only for test my enabled posting


Re: [gentoo-user] test message

2005-09-29 Thread Holly Bostick
jangar schreef:
 is only for test my enabled posting
 

As far as I know, you are not going to get your original message back in
your Gmail box.

Gmail leaves a copy of the messages you send in your sent folder, and
when the message comes back from the list server, it is recognized by
Gmail as an exact copy of the message in the sent folder and thus Gmail
doesn't make yet another copy in your Inbox. Or something like that.

Anyway, your own messages don't appear in the list conversation, if you
read the list via Gmail (because they're all in your Outbox, or Sent
folder or some such).

As replied in your other thread, this has been discussed on the list
several times, and there is no 'solution', since it's a Gmail 'feature'.

We are getting your messages, though.

Holly
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] test

2005-05-06 Thread Tom Wesley
On Sat, 7 May 2005 04:30:14 +0800
Jan Han Xie [EMAIL PROTECTED] wrote:
 Hi,
 
 Sorry but it seems my post won't appear in the list...
 This is a test post.
 
 -- 
 Computer Science  Engineering Department,
 College of Computer Science, Zhejiang University,
 Hangzhou, China
 

I got it.

-- 
Tom Wesley [EMAIL PROTECTED]


pgpeOLWCqKZ42.pgp
Description: PGP signature


Re: [gentoo-user] test

2005-05-06 Thread Mrugesh Karnik
Jan Han Xie wrote:
Hi,
Sorry but it seems my post won't appear in the list...
This is a test post.
I got the email...
--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] test

2005-05-06 Thread Steven Susbauer
Gmail will not send you your own messages. It's both smart and annoying.

On 5/6/05, Jan Han Xie [EMAIL PROTECTED] wrote:
 On Saturday 07 May 2005 04:37, Tom Wesley wrote:
  On Sat, 7 May 2005 04:30:14 +0800
 
  Jan Han Xie [EMAIL PROTECTED] wrote:
   Hi,
  
   Sorry but it seems my post won't appear in the list...
   This is a test post.
  
   --
   Computer Science  Engineering Department,
   College of Computer Science, Zhejiang University,
   Hangzhou, China
 
  I got it.
 Damn it. I haven't received my test post yet in my gmail box. It seems the
 gmail's problem...
 
 --
 Computer Science  Engineering Department,
 College of Computer Science, Zhejiang University,
 Hangzhou, China
 
 
 


-- 

Steven Susbauer

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] test

2005-05-06 Thread Denis
That's right.  When I send a message with a new subject to the list,
GMail saves the message to a new thread that it starts in my Sent-Mail
folder with that subject line.  I do not get an email from the list
sending me my own message.  Then, if someone replies to my post, GMail
adds the message to the thread started in the Sent-Mail folder and
migrates it to the Inbox.  It's kind of weird.  Avoid being redundant
but doesn't confirm that the list got your message either.

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] test

2005-05-06 Thread disguised.jedi
  That's right.  When I send a message with a new subject to the list,
  GMail saves the message to a new thread that it starts in my Sent-Mail
  folder with that subject line.  I do not get an email from the list
  sending me my own message.  Then, if someone replies to my post, GMail
  adds the message to the thread started in the Sent-Mail folder and
  migrates it to the Inbox.  It's kind of weird.  Avoid being redundant
  but doesn't confirm that the list got your message either.
If you have labels and filters set up, it will appear filed under the
label for the list and what-not.  Then I usually star it and it can
come up in the inbox starred when I get a reply...

-- 
[EMAIL PROTECTED]

PHP rocks!
Knowledge is Power.  Power Corrupts.  Go to school, become evil

Disclaimer: Any disclaimer attached to this message may be ignored. 
However, I must say that the ENTIRE contents of this message are
subject to other's criticism, corrections, and speculations.

This message is Certified Virus Free

-- 
gentoo-user@gentoo.org mailing list