Re: [gentoo-user] Configuring proftpd

2005-01-23 Thread Joseph A. Nagy, Jr.
On Mon, Jan 24, 2005 at 12:11:46AM -0500, A. Khattri wrote the following:
> On Sun, 23 Jan 2005, Joseph A. Nagy, Jr. wrote:
> 
> > So what services could possibly be taking up port 21?>
> > nmapfe shows only the following:
> >
> > Starting nmap 3.75 ( http://www.insecure.org/nmap/ ) at 2005-01-23 22:47 CST
> > Interesting ports on 192.168.1.5:
> > (The 1656 ports scanned but not shown below are in state: closed)
> > PORT STATE SERVICE
> > 20/tcp   open  ftp-data
> > 22/tcp   open  ssh
> > 25/tcp   open  smtp
> > 80/tcp   open  http
> > 113/tcp  open  auth
> > 783/tcp  open  hp-alarm-mgr
> > 6000/tcp open  X11
> > Device type: general purpose
> > Running: Linux 2.4.X|2.5.X|2.6.X
> > OS details: Linux 2.5.25 - 2.6.3 or Gentoo 1.2 Linux 2.4.19 rc1-rc7)
> > Uptime 0.550 days (since Sun Jan 23 09:34:36 2005)
> 
> > nothing is touching port 21 as far as nmap can see. What's the deal?
> 
> Do "netstat -an --tcp" and see if port 21 is being used.
> (You can also try "lsof -i | grep TCP" to see what process it is [emerge
> lsof if you dont have that command]).


[EMAIL PROTECTED]:~# netstat -an --tcp
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address   Foreign Address State  
tcp0  0 127.0.0.1:3306  0.0.0.0:*   LISTEN  
tcp0  0 0.0.0.0:783 0.0.0.0:*   LISTEN  
tcp0  0 0.0.0.0:60000.0.0.0:*   LISTEN  
tcp0  0 0.0.0.0:113 0.0.0.0:*   LISTEN  
tcp0  0 0.0.0.0:20  0.0.0.0:*   LISTEN  
tcp0  0 0.0.0.0:25  0.0.0.0:*   LISTEN  
tcp0  0 192.168.1.5:32790   64.12.24.136:5190
ESTABLISHED 
tcp0  0 192.168.1.5:35437   212.204.214.114:6667
ESTABLISHED 
tcp1  0 192.168.1.5:34838   66.235.219.115:2095
CLOSE_WAIT  
tcp0  0 192.168.1.5:32792   64.12.24.8:5190
ESTABLISHED 
tcp0  0 192.168.1.5:32791   64.12.25.124:5190
ESTABLISHED 
tcp0  0 192.168.1.5:32794   64.12.25.108:5190
ESTABLISHED 
tcp0  0 192.168.1.5:32789   64.12.25.164:5190
ESTABLISHED 
tcp0  0 192.168.1.5:32802   205.188.248.145:5190
ESTABLISHED 
tcp0  0 192.168.1.5:32799   205.188.248.151:5190
ESTABLISHED 
tcp0  0 192.168.1.5:32795   64.12.165.68:5190
ESTABLISHED 
tcp0  0 192.168.1.5:32797   64.12.165.100:5190
ESTABLISHED 
tcp0  0 192.168.1.5:32786   216.155.193.136:5050
ESTABLISHED 
tcp0  0 192.168.1.5:32787   216.155.193.140:5050
ESTABLISHED 
tcp0  0 :::6000 :::*LISTEN  
tcp0  0 :::80   :::*LISTEN  
tcp0  0 :::22   :::*LISTEN  
tcp0  0 :::25   :::*LISTEN  
tcp0  0 :::192.168.1.5:80   :::66.196.91.:41783
TIME_WAIT

lsof -i | grep TCP

produced pretty much the same, just more verbosely. Notta is touching port
21 on my machine. Now I'm really confused.
 
> I opened only port 21 in iptables - I am using conntrack and conntrack_ftp
> modules to track incoming FTP traffic so dont need to worry about opening
> and closing any other ports, these modules take care of that ;-)

Good idea! (:

-- 
Joseph A. Nagy Jr.
AIM: pres CTHULHU | ICQ: 18115568 | Yahoo: pagan_prince | Jabber: 
DarkKnightRadick@(jabber.org|amessage.at) 
Libertarian @ Large | PGP: 0xCF7EAA67 | < http://www.joseph-a-nagy-jr.us > | < 
http://www.jan-jr-ent.biz >
< http://games.joseph-a-nagy-ur.us >


pgpgCH1ZDCp0m.pgp
Description: PGP signature


Re: [gentoo-user] Configuring proftpd

2005-01-23 Thread Joseph A. Nagy, Jr.
On Sun, Jan 23, 2005 at 10:20:28PM -0500, A. Khattri wrote the following:
> On Sun, 23 Jan 2005, Joseph A. Nagy, Jr. wrote:
> 
> > On Sun, Jan 23, 2005 at 09:49:44PM -0500, A. Khattri wrote the following:
> > > On Sun, 23 Jan 2005, Joseph A. Nagy, Jr. wrote:
> > >
> > > > Also, whenever I put the port to 21, it goes offline, when I put it to 
> > > > 20 it
> > > > comes back online. For some reason it refuses to use port 21. No 
> > > > matter. I
> > > > set my router to forward external port 21 to internal port 20 and my ftp
> > > > client will not connect. It says connection is refused to
> > > > joseph-a-nagy-jr.us despite me telling it to connect to
> > > > ftp.joseph-a-nagy-jr.us
> > >
> > > You need both port 20 and 21 for FTP.
> >
> > Ah.
> >
> > > Also, you dont say if you're using active or passive ports...
> >
> > Yeah, I have that enabled, why?
> 
> Some FTP protocol basics:
> 
> With active FTP, your FTP client tells the server what port its gonna use
> to connect to the server. The server will make sure its listening on that
> port for an incoming connection. If your firewall is blocking that port
> though, the server will never see your incoming connection. And since that
> port number could be anything between 1024 and 32767, unless you have a
> smarter firewall with stateful packet filtering that understands FTP (most
> home routers dont), it will fail.
> 
> With passive FTP, the server tells the client what port number to use for
> the data connection, the server will listen on the port for your incoming
> connection. So, you can tell proftpd to use say, ports 7000 to 7100 for
> passive ports, configure your router to allow those ports through
> to your FTP server and it will work.
> 
> With passive FTP you can set things up on your router since you know what
> port numbers will be used. With active FTP your router wont know what port
> number is part of the same FTP session.
> 
> Incidently, I have web servers out there that run proftpd that are locally
> firewalled with iptables. However iptables has modules that do stateful
> filtering and modules that understand FTP so I dont need to open any ports
> regardless of whether its active or passive.
> 

Okay, I've basically taken the router out of the equation by making my
computer the DMZ host. All requsts are sent to me regardless. Still, when I
tell proftpd to bind to port 21, it keels over. I commented out the line on
passive ports, no change. I tell it to bind to port 20 and it comes back up.
Something on my machine is listening to port 21 for some reason. The router
shouldn't be, and my ISP doesn't do any port blocking. With what you said
above, by me taking my router out of the equation, disabling any forwarding
rules in the router config, I should be just as if I were connected directly
to my DSL modem. I currently don't have a firewall up (but I do have one I
can throw up just by running the init script, the rules are already in
place).

So what services could possibly be taking up port 21?

nmapfe shows only the following:


Starting nmap 3.75 ( http://www.insecure.org/nmap/ ) at 2005-01-23 22:47 CST
Interesting ports on 192.168.1.5:
(The 1656 ports scanned but not shown below are in state: closed)
PORT STATE SERVICE
20/tcp   open  ftp-data
22/tcp   open  ssh
25/tcp   open  smtp
80/tcp   open  http
113/tcp  open  auth
783/tcp  open  hp-alarm-mgr
6000/tcp open  X11
Device type: general purpose
Running: Linux 2.4.X|2.5.X|2.6.X
OS details: Linux 2.5.25 - 2.6.3 or Gentoo 1.2 Linux 2.4.19 rc1-rc7)
Uptime 0.550 days (since Sun Jan 23 09:34:36 2005)

Nmap run completed -- 1 IP address (1 host up) scanned in 2.860 seconds

nothing is touching port 21 as far as nmap can see. What's the deal?

Yeah, I know. my uptime sucks ass. Blame the bad sectors on my HDD (which is
soon to be replaced with some brand new 250GB's from WD).

With my firewall (which is now up):

Starting nmap 3.75 ( http://www.insecure.org/nmap/ ) at 2005-01-23 22:49 CST
Interesting ports on 192.168.1.5:
(The 1659 ports scanned but not shown below are in state: filtered)
PORT STATE  SERVICE
22/tcp   open   ssh
25/tcp   open   smtp
80/tcp   open   http
5100/tcp closed admd
Device type: general purpose
Running: Linux 2.4.X|2.5.X|2.6.X
OS details: Linux 2.5.25 - 2.6.3 or Gentoo 1.2 Linux 2.4.19 rc1-rc7), Linux
2.6.0 (x86), Linux 2.6.3 - 2.6.8
Uptime 0.552 days (since Sun Jan 23 09:34:36 2005)

Nmap run completed -- 1 IP address (1 host up) scanned in 22.646 seconds

Which reminds me, I need to open 20-21 on iptables.

-- 
Joseph A. Nagy Jr.
AIM: pres CTHULHU | ICQ: 18115568 | Yahoo: pagan_prince | Jabber: 
DarkKnightRadick@(jabber.org|amessage.at) 
Libertarian @ Large | PGP: 0xCF7EAA67 | < http://www.joseph-a-nagy-jr.us > | < 
http://www.jan-jr-ent.biz >
< http://games.joseph-a-nagy-ur.us >


pgpbxyIDUsZpE.pgp
Description: PGP signature


Re: [gentoo-user] Configuring proftpd

2005-01-23 Thread Joseph A. Nagy, Jr.
On Sun, Jan 23, 2005 at 09:56:42PM -0500, A. Khattri wrote the following:
> On Sun, 23 Jan 2005, Joseph A. Nagy, Jr. wrote:
> 
> > Okay, something is hogging port 21, using port 20. If someone will contact
> > me off list (via email or contact info in sig), I'll give a temp ftp account
> > to see how it works from outside my network. If you're friendly and helpful
> > enough, I might even let you keep it for free for one year (e.g. you'll have
> > it until this date 2006).
> 
> Sounds like you have other issues apart from proftpd. You really need to
> test it internally using your local IP address from another local machine.
> 
> Once its working there, then you can tackle the bigger problem of getting
> in from outside. Offhand, Id say your router/firewall doesn't understand
> FTP and so is not letting the data connection through. If you configure
> proftpd to use Passive ports, then you can tell your firewall to allow
> those ports through unfiltered. Also, when testing from outside, you will
> need to switch on passive FTP in the client you're using.
> 
> Having gone through playing with firewalls and proftpd myself, Ive had to
> learn more about FTP then I ever wanted ;-)

Thanks for the advice, I will definitely take it, but the offer still
stands. (:

-- 
Joseph A. Nagy Jr.
AIM: pres CTHULHU | ICQ: 18115568 | Yahoo: pagan_prince | Jabber: 
DarkKnightRadick@(jabber.org|amessage.at) 
Libertarian @ Large | PGP: 0xCF7EAA67 | < http://www.joseph-a-nagy-jr.us > | < 
http://www.jan-jr-ent.biz >
< http://games.joseph-a-nagy-ur.us >


pgpjUBJ0xG01k.pgp
Description: PGP signature


Re: [gentoo-user] Configuring proftpd

2005-01-23 Thread Joseph A. Nagy, Jr.
On Sun, Jan 23, 2005 at 09:49:44PM -0500, A. Khattri wrote the following:
> On Sun, 23 Jan 2005, Joseph A. Nagy, Jr. wrote:
> 
> > Also, whenever I put the port to 21, it goes offline, when I put it to 20 it
> > comes back online. For some reason it refuses to use port 21. No matter. I
> > set my router to forward external port 21 to internal port 20 and my ftp
> > client will not connect. It says connection is refused to
> > joseph-a-nagy-jr.us despite me telling it to connect to
> > ftp.joseph-a-nagy-jr.us
> 
> You need both port 20 and 21 for FTP.

Ah.
 
> Also, you dont say if you're using active or passive ports...

Yeah, I have that enabled, why?

-- 
Joseph A. Nagy Jr.
AIM: pres CTHULHU | ICQ: 18115568 | Yahoo: pagan_prince | Jabber: 
DarkKnightRadick@(jabber.org|amessage.at) 
Libertarian @ Large | PGP: 0xCF7EAA67 | < http://www.joseph-a-nagy-jr.us > | < 
http://www.jan-jr-ent.biz >
< http://games.joseph-a-nagy-ur.us >


pgpOfxX2v8qid.pgp
Description: PGP signature


Re: [gentoo-user] Configuring proftpd

2005-01-23 Thread Joseph A. Nagy, Jr.
On Sun, Jan 23, 2005 at 06:49:36PM -0600, Joseph A. Nagy, Jr. wrote the 
following:
> On Sun, Jan 23, 2005 at 06:21:20PM -0600, Joseph A. Nagy, Jr. wrote the 
> following:
> > On Sun, Jan 23, 2005 at 05:22:26PM -0700, Nicolas Bailey wrote the 
> > following:
> > > Offhand, I believe FTP uses both ports 20 and 21 (by default). 
> > > Something along the lines of 21 managing the incoming connections and
> > > actual data flowing over 20 or somesuch (I wouldn't quote that or
> > > anything).  Do you have another machine internally so that you can
> > > rule out firewall/router issues?
> > 
> > I do, but it's currently in use by my sister.
> > 
> > BTW, could you folks quit top posting please. It's annoying the hell out of
> > me. ):
> 
> Okay, now SSH is hogging that port despite my config for sshd saying to use
> 22.

Okay, something is hogging port 21, using port 20. If someone will contact
me off list (via email or contact info in sig), I'll give a temp ftp account
to see how it works from outside my network. If you're friendly and helpful
enough, I might even let you keep it for free for one year (e.g. you'll have
it until this date 2006).

-- 
Joseph A. Nagy Jr.
AIM: pres CTHULHU | ICQ: 18115568 | Yahoo: pagan_prince | Jabber: 
DarkKnightRadick@(jabber.org|amessage.at) 
Libertarian @ Large | PGP: 0xCF7EAA67 | < http://www.joseph-a-nagy-jr.us > | < 
http://www.jan-jr-ent.biz >
< http://games.joseph-a-nagy-ur.us >


pgp5AXJcUpm88.pgp
Description: PGP signature


Re: [gentoo-user] Configuring proftpd

2005-01-23 Thread Joseph A. Nagy, Jr.
On Sun, Jan 23, 2005 at 06:21:20PM -0600, Joseph A. Nagy, Jr. wrote the 
following:
> On Sun, Jan 23, 2005 at 05:22:26PM -0700, Nicolas Bailey wrote the following:
> > Offhand, I believe FTP uses both ports 20 and 21 (by default). 
> > Something along the lines of 21 managing the incoming connections and
> > actual data flowing over 20 or somesuch (I wouldn't quote that or
> > anything).  Do you have another machine internally so that you can
> > rule out firewall/router issues?
> 
> I do, but it's currently in use by my sister.
> 
> BTW, could you folks quit top posting please. It's annoying the hell out of
> me. ):

Okay, now SSH is hogging that port despite my config for sshd saying to use
22.

-- 
Joseph A. Nagy Jr.
AIM: pres CTHULHU | ICQ: 18115568 | Yahoo: pagan_prince | Jabber: 
DarkKnightRadick@(jabber.org|amessage.at) 
Libertarian @ Large | PGP: 0xCF7EAA67 | < http://www.joseph-a-nagy-jr.us > | < 
http://www.jan-jr-ent.biz >
< http://games.joseph-a-nagy-ur.us >


pgpBHXpxjbuaN.pgp
Description: PGP signature


Re: [gentoo-user] Configuring proftpd

2005-01-23 Thread Joseph A. Nagy, Jr.
On Sun, Jan 23, 2005 at 05:22:26PM -0700, Nicolas Bailey wrote the following:
> Offhand, I believe FTP uses both ports 20 and 21 (by default). 
> Something along the lines of 21 managing the incoming connections and
> actual data flowing over 20 or somesuch (I wouldn't quote that or
> anything).  Do you have another machine internally so that you can
> rule out firewall/router issues?

I do, but it's currently in use by my sister.

BTW, could you folks quit top posting please. It's annoying the hell out of
me. ):

-- 
Joseph A. Nagy Jr.
AIM: pres CTHULHU | ICQ: 18115568 | Yahoo: pagan_prince | Jabber: 
DarkKnightRadick@(jabber.org|amessage.at) 
Libertarian @ Large | PGP: 0xCF7EAA67 | < http://www.joseph-a-nagy-jr.us > | < 
http://www.jan-jr-ent.biz >
< http://games.joseph-a-nagy-ur.us >


pgpavIjGNv0P8.pgp
Description: PGP signature


Re: [gentoo-user] Configuring proftpd

2005-01-23 Thread Joseph A. Nagy, Jr.
On Sun, Jan 23, 2005 at 06:24:33PM -0500, A. Khattri wrote the following:
> On Sun, 23 Jan 2005, Joseph A. Nagy, Jr. wrote:
> 
> > I have two configuration problems.
> >
> > One, the /etc/init.d/proftpd start-stop script only errors (e.g. [!!]
> > instead of [ok]).
> 
> What do the logs say?

Jan 23 13:56:02 joseph-a-nagy-jr proftpd[25010]: joseph-a-nagy-jr.us -
Failed binding to 0.0.0.0, port 21: Address already in use

Fixed that, though. It's now pointing to ftp.joseph-a-nagy-jr.us
 
> > Two, I want to be able to login via ftp.joseph-a-nagy-jr.us, yet there is
> > no option to have proftpd to listen to that url
> 
> That's because URLs have nothing to do with proftpd configuration - its
> not a web server. However, if you setup your DNS such that
> ftp.joseph-a-nagy-jr.us points to your machine's IP address it will work.

I know it's not a web server. I know the difference between HTTP and FTP. If
you can't tell from my sig, I run several websites. If you compare their ip
to this emails ip, you'll see they are the same.

I have already told dns to point ftp.joseph-a-nagy-jr.us to my machine.

> Configuring proftpd is pretty trivial - the only thing you need to do
> normally is remove the vhost entry for the anonymous site (unless you need
> that) and any other sites. After that, everything "just works". (I
> recently finished setting a web server with proftpd and the proftpd part
> was very simple).

I find working with Apache much easier so far. ;p

-- 
Joseph A. Nagy Jr.
AIM: pres CTHULHU | ICQ: 18115568 | Yahoo: pagan_prince | Jabber: 
DarkKnightRadick@(jabber.org|amessage.at) 
Libertarian @ Large | PGP: 0xCF7EAA67 | < http://www.joseph-a-nagy-jr.us > | < 
http://www.jan-jr-ent.biz >
< http://games.joseph-a-nagy-ur.us >


pgpgfkatr9oG8.pgp
Description: PGP signature


Re: [gentoo-user] Configuring proftpd

2005-01-23 Thread Joseph A. Nagy, Jr.
On Sun, Jan 23, 2005 at 04:20:45PM -0700, Nicolas Bailey wrote the following:
> Since proftpd is just a dependency of gproftpd, there's no reason to
> unmerge proftpd first.  Just emerge gproftpd if you want to give it a
> try.
> 
> Nick

Either way, I'm still having problems. Different problems to be sure but
problems none the less.

Despite telling it to use /var/log/secure for its log file, it continues to
try and look in /var/lib/log

Also, whenever I put the port to 21, it goes offline, when I put it to 20 it
comes back online. For some reason it refuses to use port 21. No matter. I
set my router to forward external port 21 to internal port 20 and my ftp
client will not connect. It says connection is refused to
joseph-a-nagy-jr.us despite me telling it to connect to
ftp.joseph-a-nagy-jr.us

Other then that gproftpd is a dream to work with.

-- 
Joseph A. Nagy Jr.
AIM: pres CTHULHU | ICQ: 18115568 | Yahoo: pagan_prince | Jabber: 
DarkKnightRadick@(jabber.org|amessage.at) 
Libertarian @ Large | PGP: 0xCF7EAA67 | < http://www.joseph-a-nagy-jr.us > | < 
http://www.jan-jr-ent.biz >
< http://games.joseph-a-nagy-ur.us >


pgpkU4QLeEFhv.pgp
Description: PGP signature


Re: [gentoo-user] Configuring proftpd

2005-01-23 Thread Joseph A. Nagy, Jr.
On Mon, Jan 24, 2005 at 01:15:13AM +0200, PK wrote the following:
> IF you use x then
> 
> unemerge proftpd and emerge gproftpd
> 
> Its a gui for proftpd and you can configure it quite easily. It will 
> emerge proftpd at the same time.
> 
> Cheers
> 
> Paul


Thanks and I'll do that.

-- 
Joseph A. Nagy Jr.
AIM: pres CTHULHU | ICQ: 18115568 | Yahoo: pagan_prince | Jabber: 
DarkKnightRadick@(jabber.org|amessage.at) 
Libertarian @ Large | PGP: 0xCF7EAA67 | < http://www.joseph-a-nagy-jr.us > | < 
http://www.jan-jr-ent.biz >
< http://games.joseph-a-nagy-ur.us >


pgpzDQfQAwv56.pgp
Description: PGP signature


[gentoo-user] Configuring proftpd

2005-01-23 Thread Joseph A. Nagy, Jr.
I have two configuration problems.

One, the /etc/init.d/proftpd start-stop script only errors (e.g. [!!]
instead of [ok]).

Two, I want to be able to login via ftp.joseph-a-nagy-jr.us, yet there is
no option to have proftpd to listen to that url (port not included, of
course). I'm looking to set up a private, authorized user only ftp server.
Should I just use mod_ftpd (Apache2) instead?
-- 
Joseph A. Nagy Jr.
AIM: pres CTHULHU | ICQ: 18115568 | Yahoo: pagan_prince | Jabber: 
DarkKnightRadick@(jabber.org|amessage.at) 
Libertarian @ Large | PGP: 0xCF7EAA67 | < http://www.joseph-a-nagy-jr.us > | < 
http://www.jan-jr-ent.biz >
< http://games.joseph-a-nagy-ur.us >


pgpfmH60r9b7N.pgp
Description: PGP signature


Re: [gentoo-user] [OT] IE is Spyware, according to Microsoft's Anti-Spyware

2005-01-19 Thread Joseph A. Nagy, Jr.
On Wed, Jan 19, 2005 at 06:37:49PM +, Windpaw wrote the following:
> Yeah, the quote of 'tough shit' kinda wrapped that one up convincingly 
> as another hilarious but definately faked news article.


The URL being a BBSpot one gave it up as being fake. :p

-- 
AIM: pres CTHULHU | ICQ: 18115568 | Yahoo: pagan_prince Jabber: 
DarkKnightRadick@(jabber.org|amessage.at) 
Libertarian @ Large PGP: 0xCF7EAA67 | < 
http://mc-luug.homelinux.org/mailman/listinfo/mc-luug >
< http://www.joseph-a-nagy-jr.us > | < http://www.jan-jr-ent.biz > | < 
http://games.joseph-a-nagy-ur.us >


pgpw2MdI7EIpy.pgp
Description: PGP signature


[gentoo-user] mod_perl for Apache1

2005-01-17 Thread Joseph A. Nagy, Jr.
Why is mod_perl for Apache1 not in portage?
-- 
AIM: pres CTHULHU | ICQ: 18115568 | Yahoo: pagan_prince Jabber: 
DarkKnightRadick@(jabber.org|amessage.at) 
Libertarian @ Large PGP: 0xCF7EAA67 | < 
http://mc-luug.homelinux.org/mailman/listinfo/mc-luug >
< http://www.joseph-a-nagy-jr.us > | < http://www.jan-jr-ent.biz > | < 
http://games.joseph-a-nagy-ur.us >


pgpswpjYPt8H5.pgp
Description: PGP signature


[gentoo-user] imlib2 mask

2005-01-08 Thread Joseph A. Nagy, Jr.
I just want to ask any Gentoo Devs on this list, do you guys think before
you mask something? Enough packages depend on imlib2 that you guys masking
it has created a problem:

[EMAIL PROTECTED]:~# emerge -puDv world

These are the packages that I would merge, in order:

Calculating world dependencies -
!!! All ebuilds that could satisfy ">=media-libs/imlib2-1.2.0.20041226" have
been masked.
!!! One of the following masked packages is required to complete your
request:
- media-libs/imlib2- (masked by: -* keyword)

For more information, see MASKED PACKAGES section in the emerge man page or 
section 2.2 "Software Availability" in the Gentoo Handbook.
!!!(dependency required by "x11-libs/esmart-0.9.0.20041226" [ebuild])


!!! Problem with ebuild x11-misc/entrance-0.9.0.20041226
!!! Possibly a DEPEND/*DEPEND problem.

!!! Depgraph creation failed.

I'll be unmasking it so I can go ahead and see what I have that needs
updating. Thanks for trying to break my system.
-- 
AIM: pres CTHULHU | ICQ: 18115568 | Yahoo: pagan_prince Jabber: 
DarkKnightRadick@(jabber.org|amessage.at) 
Libertarian @ Large PGP: 0xCF7EAA67 | < 
http://mc-luug.homelinux.org/mailman/listinfo/mc-luug >
< http://www.joseph-a-nagy-jr.us > | < http://www.jan-jr-ent.biz > | < 
http://games.joseph-a-nagy-ur.us >


pgpAZ6HA48sil.pgp
Description: PGP signature


Re: [gentoo-user] -R flag not working on chmod?[SOLVED]

2005-01-05 Thread Joseph A. Nagy, Jr.
On Wed, Jan 05, 2005 at 10:20:17PM -0600, Joseph A. Nagy, Jr. wrote the 
following:
> On Thu, Jan 06, 2005 at 04:13:54AM +, n_powell wrote the following:
> > On Wed, Jan 05, 2005 at 09:28:46PM -0600 thus spake Joseph A. Nagy, Jr.:
> > > Is anyone else having any issues with the '-R' flag when using chmod? I am
> > > and it's getting annoying.
> > 
> > Nope, just tried it to test it out. What error?
> 
> chmod doesn't give me an error but mv does when I try to mv a file to a dir
> I just chown'd (via root) to my user. Tells me that I don't have permission
> to write. O.o; It could be because the symlink I'm using to get to where I'm
> owning was made by root. I'll try fixing that and see what happens. I didn't
> think of that until just now.

*hands over his root password, gives out IP and welcomes any BOFH to come
and clue-by-four him* Yeah, it was the symlink. Duh. ^_^'

-- 
AIM: pres CTHULHU | ICQ: 18115568 | Yahoo: pagan_prince Jabber: 
DarkKnightRadick@(jabber.org|amessage.at) 
Libertarian @ Large PGP: 0xCF7EAA67 | < 
http://mc-luug.homelinux.org/mailman/listinfo/mc-luug >
< http://www.joseph-a-nagy-jr.us > | < http://www.jan-jr-ent.biz > | < 
http://games.joseph-a-nagy-ur.us >


pgp3NoLq24pNe.pgp
Description: PGP signature


Re: [gentoo-user] -R flag not working on chmod?

2005-01-05 Thread Joseph A. Nagy, Jr.
On Thu, Jan 06, 2005 at 04:13:54AM +, n_powell wrote the following:
> On Wed, Jan 05, 2005 at 09:28:46PM -0600 thus spake Joseph A. Nagy, Jr.:
> > Is anyone else having any issues with the '-R' flag when using chmod? I am
> > and it's getting annoying.
> 
> Nope, just tried it to test it out. What error?

chmod doesn't give me an error but mv does when I try to mv a file to a dir
I just chown'd (via root) to my user. Tells me that I don't have permission
to write. O.o; It could be because the symlink I'm using to get to where I'm
owning was made by root. I'll try fixing that and see what happens. I didn't
think of that until just now.

-- 
AIM: pres CTHULHU | ICQ: 18115568 | Yahoo: pagan_prince Jabber: 
DarkKnightRadick@(jabber.org|amessage.at) 
Libertarian @ Large PGP: 0xCF7EAA67 | < 
http://mc-luug.homelinux.org/mailman/listinfo/mc-luug >
< http://www.joseph-a-nagy-jr.us > | < http://www.jan-jr-ent.biz > | < 
http://games.joseph-a-nagy-ur.us >


pgptNpRER3RpM.pgp
Description: PGP signature


[gentoo-user] -R flag not working on chmod?

2005-01-05 Thread Joseph A. Nagy, Jr.
Is anyone else having any issues with the '-R' flag when using chmod? I am
and it's getting annoying.
-- 
AIM: pres CTHULHU | ICQ: 18115568 | Yahoo: pagan_prince Jabber: 
DarkKnightRadick@(jabber.org|amessage.at) 
Libertarian @ Large PGP: 0xCF7EAA67 | < 
http://mc-luug.homelinux.org/mailman/listinfo/mc-luug >
< http://www.joseph-a-nagy-jr.us > | < http://www.jan-jr-ent.biz > | < 
http://games.joseph-a-nagy-ur.us >


pgpilMILDMQ1K.pgp
Description: PGP signature


Re: [gentoo-user] Questions and Problems

2004-02-15 Thread Joseph A. Nagy, Jr.
Alec Berryman wrote:
> On Sun, Feb 15, 2004 at 09:00:01PM -0600, Joseph A. Nagy, Jr. wrote:
> 
>>-BEGIN PGP SIGNED MESSAGE-
>>Hash: SHA1
>>
>>First the questions.
>>
>>Other then karamba-webcam, are there any programs in portage (emerge -s
>>webcam came up with only karamba-webcam) to enable the viewing of video
>>locally and through programs like Gnomemeeting?
> 
> 
> I've used xawtv to view video locally, but have never found anything other
> than Gnomemeeting for remote.  There was a java-based program - I think it
> was called Palantir - that had a web interface, but the frame rate was
> horrendusly slow - maybe good for security, but not for a home user's webcam.

I'll check out xawtv and emerge Gnomemeeting (which I like) when I get a
chance. GCC is horrendously slow when compiling on this box (24 hours).

> 
> 
>>Do any of you folks recommend getting a Linux-based virus scanner? Since
>>I'm doing some minor web hosting (mainly for Windows users) I've been
>>thinking it might be a good idea but really am not sure if I should
>>bother or not.
> 
> 
> I've heard good things about ClamAV.  If you're just doing webhosting it
> probably won't be a big deal, though.

Well that is true, but some of the folks that I host for use there space
for file storage. I know one guy who's just going to be uploading
documents so he can link to them in emails.

> 
> 
>>Another problem I'm having is getting my mail to be filtered through my
>>procmailrc file (will attach if wanted). Any thoughts on how to get Exim
>>(my MTA of choice) to invoke procmail? I also have SpamAssassin
>>installed, is that overkill or what is possibly causing these problems?
> 
> 
> You'll need a .forward file in your home directory that says
> "|/usr/bin/procmail".  SpamAssassin isn't overkill, but neither it nor
> procmail are being invoked.  I'd recommend that you put your SA rules near
> the end; it'll speed up processing of mail that want sorted and don't expect
> spam to, like this list.

Oh.

I don't know SA syntax for rules yet, I've just focused on procmail atm.

BTW, how do you make directories into valid "mailboxes" for the sake of
mutt?

As far as this list is concerned, I use Mozilla Thunderbird which has
some easy to use filtering capabilities (mainly because the email
account is not on my local system).

-- 
Joseph A. Nagy, Jr. http://joseph-a-nagy-jr.homelinux.org
Student at Motlow State Community College http://www.mscc.edu
Political Activist Extraordinaire
The only fallacy is the inaction on our part to stave off the worst of
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list



[gentoo-user] Questions and Problems

2004-02-15 Thread Joseph A. Nagy, Jr.
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

First the questions.

Other then karamba-webcam, are there any programs in portage (emerge -s
webcam came up with only karamba-webcam) to enable the viewing of video
locally and through programs like Gnomemeeting?

Do any of you folks recommend getting a Linux-based virus scanner? Since
I'm doing some minor web hosting (mainly for Windows users) I've been
thinking it might be a good idea but really am not sure if I should
bother or not.

Also, I know the command to change my desktop background, so I got to
thinking it'd be nice if I could write a script that would be invoked
every hour and change to a random background whose path is defined in a
txt file (hand written) and was wondering how exactly would I make a
shell script (I can write basic scripts, mainly for invoking commands
with commonly used options) to pick one at random.

Now the problems.

XMMS 1.2.9 fails during compile. I've tried several different times but
it fails each time, as does one of the dependencies for man2html. I've
thought about filing a bug report but I'm not sure if it's a Gentoo bug
or a bug with the program. I won't have the exact message again for a
few days (XFree and GCC take a day and a half to compile) so I'll get
back to you with the error messages if you folks want.

Another problem I'm having is getting my mail to be filtered through my
procmailrc file (will attach if wanted). Any thoughts on how to get Exim
(my MTA of choice) to invoke procmail? I also have SpamAssassin
installed, is that overkill or what is possibly causing these problems?
- --
Joseph A. Nagy, Jr. http://joseph-a-nagy-jr.homelinux.org
Student at Motlow State Community College http://www.mscc.edu
Political Activist Extraordinaire
The only fallacy is the inaction on our part to stave off the worst of
horrors, the stripping of personal freedom.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFAMDD76i+npmQve9oRAplwAJwPs1vMovPifoUUGEu80d8oPGnhGgCfW57O
4FPOIQjJ+ehxJ0FDjVh8I6Y=
=0rVw
-END PGP SIGNATURE-

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Lightweight httpd

2004-02-01 Thread Joseph A. Nagy, Jr.
Redeeman wrote:
> why not use apache2? its not really that big, and really easy, with good
> support.
> 


Not to mention extremely configurable, and even with the default module
set, rather small memory footprint.

-- 
Joseph A. Nagy, Jr.
Student at Motlow State Community College
Political Activist Extrodinaire
The only fallacy is the inaction on our part to stave off the worst of
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Lightweight httpd

2004-02-01 Thread Joseph A. Nagy, Jr.
Eamon Caddigan wrote:
> Hey all,
> 
> I'm thinking of setting up a small httpd on my desktop computer. Since I
> have a dynamic IP and no extra box to use as a "server", I just want
> something really simple that will let me serve static files, e.g.
> torrents, images, and the occasional MP3.
> 
> Some programs that look interesting (found 'em all in portage) are: boa,
> monkeyd, cherokee, and fnord. Would anybody with experience in one or
> more of these share their opinion? Are there any others I'm missing?
> 
> Thanks,
> Eamon
> 
> 
> --
> [EMAIL PROTECTED] mailing list
> 
> 

Apache Apache Apache.

I have a PII 233MHz w/MMX with which I use to serve up static and
dynamic files while still having plenty of power left over for
everything else (listen to music, rip cd's, etc.)

-- 
Joseph A. Nagy, Jr.
Student at Motlow State Community College
Political Activist Extrodinaire
The only fallacy is the inaction on our part to stave off the worst of
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] LUNA: Call for distcc server(s)

2004-01-30 Thread Joseph A. Nagy, Jr.
Andrew Gaffney wrote:
> Joseph A. Nagy, Jr. wrote:
> 
>> Hey guys, I have distcc and ccache installed to try and speed up
>> emerge's of large groups of packages (I am, after all, only running on a
>> PII 233MHz w/ MMX and 128MB of RAM and about 533MB of swap) and packages
>> that are just plain big and require lots of resources (such as doxygen).
>>
>> Of course distcc doesn't help unless I have distcc servers to use, so
>> any of you distcc users out there have servers you use that you could
>> recommend (along with contact info for the maintainers so I can ask
>> permission to use them)?
> 
> 
> Is it even practical to use distcc over the internet? I've got access to
> a Dual Athlon MP 2200+ Gentoo box on a T1. I'd definately like to use
> that to help compile stuff on my personal Athlon 1.3GHz box on DSL.
> 

I had heard it was, and I have a friend who would open his box to me IF
he thought it would give me improved compile times.

-- 
Joseph A. Nagy, Jr.
Student at Motlow State Community College
Political Activist Extrodinaire
The only fallacy is the inaction on our part to stave off the worst of
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] LUNA: Call for distcc server(s)

2004-01-30 Thread Joseph A. Nagy, Jr.
Jeff Smelser wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> On Friday 30 January 2004 07:09 am, Joseph A. Nagy, Jr. wrote:
> 
>>Hey guys, I have distcc and ccache installed to try and speed up
>>emerge's of large groups of packages (I am, after all, only running on a
>>PII 233MHz w/ MMX and 128MB of RAM and about 533MB of swap) and packages
>>that are just plain big and require lots of resources (such as doxygen).
>>
>>Of course distcc doesn't help unless I have distcc servers to use, so
>>any of you distcc users out there have servers you use that you could
>>recommend (along with contact info for the maintainers so I can ask
>>permission to use them)?
> 
> 
> I wasn't aware there were any public ones available.. I be interested in this 
> myself.. I wish there was a secure way of creating some sort of compile farm 
> like that.. 

That would be nice indeed.

> 
> I don't think your going to get much on this unless you got a few friends that 
> allow that.. I could be wrong.
> 

That stinks. :(

-- 
Joseph A. Nagy, Jr.
Student at Motlow State Community College
Political Activist Extrodinaire
The only fallacy is the inaction on our part to stave off the worst of
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list



[gentoo-user] LUNA: Call for distcc server(s)

2004-01-30 Thread Joseph A. Nagy, Jr.
Hey guys, I have distcc and ccache installed to try and speed up
emerge's of large groups of packages (I am, after all, only running on a
PII 233MHz w/ MMX and 128MB of RAM and about 533MB of swap) and packages
that are just plain big and require lots of resources (such as doxygen).

Of course distcc doesn't help unless I have distcc servers to use, so
any of you distcc users out there have servers you use that you could
recommend (along with contact info for the maintainers so I can ask
permission to use them)?

TIA



file:///tmp/nsmail.tmp
Description: PGP signature
--
[EMAIL PROTECTED] mailing list

Re: [gentoo-user] Build-Time For America's Army

2004-01-29 Thread Joseph A. Nagy, Jr.
Brendan Sullivan wrote:
> never mind the fact that the build would take forever and a day...i
> doubt a 233 with any amount of RAM and any video card could handle
> America's Army. It's not an extremely processor intensive game, but it
> requires a lot more than a 233 to play.


Everyone needs to contribute to my "Buying a New Computer Fund"

My dream machine has the following specs:

64-bit 3GHz AMD Opteron
4 GB RAM
ATI 9800
3 300GB IDE HDD's (7200 RPM)
3 300GB SCSI HDD's and a RAID controller
1 Hotswapable 10/100/1000 NIC
Board capable of supporting Hotswappable PCI cards
SoundBlaster's latest offering
USB everything 'cept monitor (which would be a 52" plasma screen tv)

-- 
Joseph A. Nagy, Jr.
Student at Motlow State Community College
Political Activist Extrodinaire
The only fallacy is the inaction on our part to stave off the worst of
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Build-Time For America's Army

2004-01-29 Thread Joseph A. Nagy, Jr.
Jakub Krajcovic wrote:
> Are you _kidding_?? On a PII 233??? My opinion: you can go to Bali, go
> scuba diving and come back, and it still wont be compiled. I compiled
> mplayer on a PII 266 96 MB RAM and that tool like an hour (and thats
> only a couple of megs of source code...)

Damn. Well I already killed that emerge and settled on Nethack. I'm soon
to emerge ccache and distcc.

-- 
Joseph A. Nagy, Jr.
Student at Motlow State Community College
Political Activist Extrodinaire
The only fallacy is the inaction on our part to stave off the worst of
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list



[gentoo-user] Build-Time For America's Army

2004-01-29 Thread Joseph A. Nagy, Jr.
Does anyone have any build times for AA on a 233MHz Intel Pentium II w/
MMX, 128MB of RAM and an ATI Radeon 9000 (I know vid card doesn't figure
into build time, but I have it and love bragging about it).
-- 
Joseph A. Nagy, Jr.
Student at Motlow State Community College
Political Activist Extrodinaire
The only fallacy is the inaction on our part to stave off the worst of
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] emerging mutt with support for threading? [SOLVED]

2004-01-28 Thread Joseph A. Nagy, Jr.
Mental Patient wrote:
> Joseph A. Nagy, Jr. wrote:
> 
>> It seems the default compile for mutt is to not have support for
>> threading. Is there a mutt specific USE flag for this wonderful feature?
> 
> 
> Really? Are you sure? I've emerged mutt and its threaded... the default
> sort order is by date, but you can change that from within mutt or your
> .muttrc. Inside mutt press "o" then press "t". Does that help? Or error
> or anything?
> 
> 
> 

I'm very sure. Since I'm the only one to use the box I change the global
muttrc file and it tells me it doesn't have support for threading.

[EMAIL PROTECTED]:~$ mutt
Error in /etc/mutt/Muttrc, line 3346: thread: unknown sorting method

source: errors in /etc/mutt/Muttrc
  Press any key to continue...

I did "o" and "t" from within mutt and that worked.

DOH! *face palm* I double checked the global muttrc
file...I left off the "s" in "threads" :( I really feel stupid now. Now
I'm moved to edit dir colors (black background and dark blue txt don't mix)

-- 
Joseph A. Nagy, Jr.
Student at Motlow State Community College
Political Activist Extrodinaire
The only fallacy is the inaction on our part to stave off the worst of
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list



[gentoo-user] emerging mutt with support for threading?

2004-01-28 Thread Joseph A. Nagy, Jr.
It seems the default compile for mutt is to not have support for
threading. Is there a mutt specific USE flag for this wonderful feature?
-- 
Joseph A. Nagy, Jr.
Student at Motlow State Community College
Political Activist Extrodinaire
The only fallacy is the inaction on our part to stave off the worst of
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] gaim segfaults when signing onto Yahoo

2004-01-22 Thread Joseph A. Nagy, Jr.
Andrew Gaffney wrote:
Joseph A. Nagy, Jr. wrote:

Andrew Gaffney wrote:

Joseph A. Nagy, Jr. wrote:

Andrew Gaffney wrote:

Doesn't emerge strip all binaries that it installs?

I guess. I'm relatively new to Gentoo.

What would it matter? What does emerge strip binaries of? I install 
from source via emerge, btw.


AFAIK, 'strip' removes all debugging info from binaries.

That's kinda retarded.

--
Joseph A. Nagy, Jr.
Student at Motlow State Community College
Political Activist Extrodinaire
The only fallacy is the inaction on our part to stave off the worst of 
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] gaim segfaults when signing onto Yahoo

2004-01-21 Thread Joseph A. Nagy, Jr.
Andrew Gaffney wrote:
Joseph A. Nagy, Jr. wrote:

Andrew Gaffney wrote:

Gaim 0.75-r5 has been working just fine for me for about a week since 
Yahoo started using the new authentication scheme on the new server. 
Today, it segfaults when it starts up. If I hit Cancel when its 
logging into Yahoo, it loads fine and connects to AIM. If I try to 
connect to Yahoo manually after beinging signed in with AIM, it 
segfaults. I haven't upgraded anything related that would cause this 
problem. Just in case, I re-emerged gaim and it behaves the same. 
Anyone else getting this?

I am. Check out gaims SF info, many bug reports have been filed wrt 
this problem (including one by myself). What you need to do is emerge 
gdb, run gdb gaim, then type run and enter, then submit a bug report.


Doesn't emerge strip all binaries that it installs?

I guess. I'm relatively new to Gentoo.

What would it matter? What does emerge strip binaries of? I install from 
source via emerge, btw.

--
Joseph A. Nagy, Jr.
Student at Motlow State Community College
Political Activist Extrodinaire
The only fallacy is the inaction on our part to stave off the worst of 
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] gaim segfaults when signing onto Yahoo

2004-01-21 Thread Joseph A. Nagy, Jr.
Andrew Gaffney wrote:
Gaim 0.75-r5 has been working just fine for me for about a week since 
Yahoo started using the new authentication scheme on the new server. 
Today, it segfaults when it starts up. If I hit Cancel when its logging 
into Yahoo, it loads fine and connects to AIM. If I try to connect to 
Yahoo manually after beinging signed in with AIM, it segfaults. I 
haven't upgraded anything related that would cause this problem. Just in 
case, I re-emerged gaim and it behaves the same. Anyone else getting this?

I am. Check out gaims SF info, many bug reports have been filed wrt this 
problem (including one by myself). What you need to do is emerge gdb, 
run gdb gaim, then type run and enter, then submit a bug report.

--
Joseph A. Nagy, Jr.
Student at Motlow State Community College
Political Activist Extrodinaire
The only fallacy is the inaction on our part to stave off the worst of 
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Mozilla 1.6 and GAIM [SOLVED]

2004-01-19 Thread Joseph A. Nagy, Jr.
Thomas Achtemichuk wrote:
On 01/19/04 08:25:46, "Joseph A. Nagy, Jr." wrote:

Why is Mozilla 1.6 being emerged with GAIM?


You probably have ssl as a USE flag. This installs gaim-encryption 
which  uses mozilla libs.

Try emerge -vp gaim to see the USE flags that affect the packages that 
will  be installed.

Thanks, I've managed to solve my problem by putting -mozilla in with my 
other USE flags in make.conf

--
Joseph A. Nagy, Jr.
Student at Motlow State Community College
Political Activist Extrodinaire
The only fallacy is the inaction on our part to stave off the worst of 
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list


[gentoo-user] Mozilla 1.6 and GAIM

2004-01-19 Thread Joseph A. Nagy, Jr.
Why is Mozilla 1.6 being emerged with GAIM?

joseph-a-nagy-jr root # emerge -pD gaim gaim-blogger gaim-encryption 
gaim-smileys

These are the packages that I would merge, in order:

Calculating dependencies ...done!
[ebuild  N] net-www/mozilla-1.6
[ebuild U ] net-im/gaim-0.75-r5 [0.72-r1]
[ebuild  N] net-im/gaim-encryption-2.21
[ebuild  N] net-im/gaim-blogger-0.75
[ebuild  N] x11-themes/gaim-smileys-20031002
joseph-a-nagy-jr root # emerge -p gaim gaim-blogger gaim-encryption 
gaim-smileys

These are the packages that I would merge, in order:

Calculating dependencies ...done!
[ebuild  N] net-www/mozilla-1.6
[ebuild U ] net-im/gaim-0.75-r5 [0.72-r1]
[ebuild  N] net-im/gaim-encryption-2.21
[ebuild  N] net-im/gaim-blogger-0.75
[ebuild  N] x11-themes/gaim-smileys-20031002
I already have Firebird and would rather NOT merge Mozilla 1.6. It would 
take literally FOREVER and be entirely pointless.

--
Joseph A. Nagy, Jr.
Student at Motlow State Community College
Political Activist Extrodinaire
The only fallacy is the inaction on our part to stave off the worst of 
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] No Mailboxes

2004-01-19 Thread Joseph A. Nagy, Jr.
Jason Stubbs wrote:
On Sunday 18 January 2004 12:46, Joseph A. Nagy, Jr. wrote:

I have exim installed (and I have problems with that, which I'll discuss
later):
cbash-2.05b$ cd /var/spool/mail
bash-2.05b$ ls -a
..  ..  .keep
bash-2.05b$
bash-2.05b$ cd /var/mail
bash-2.05b$ ls -a
..  ..  .keep
bash-2.05b$


/var/mail should be a symlink to /var/spool/mail.
It is.



As you can see, I have NO system email boxes even though I have four
accounts (three users and root) on the box, exim installed and running
(I can send mail from my system accounts w/o any problem).


There should be no mailboxes there until a message is received on an account.
I've had several people reply to test messages that I've sent them from 
my system mail account (regular user, of course) and I've not recieved a 
single one back.



The problem I have with exim comes when I make changes to exim.conf
(cp'd from exim.conf.dist and edited as needed) and then try and run
/etc/init.d/exim restart
joseph-a-nagy-jr root # /etc/init.d/exim restart
 * Stopping exim...
             [ !!
]
joseph-a-nagy-jr root #

I then have to zap it and start it back up. What's going on here?


This means that the daemon started and died. When you try to restart or stop 
the daemon, the operation fails (because it is not running). Check any log 
messages to find out why.

I've checked the logs, and other then a duplicate entry there was 
nothing in there to indicate why it's failing to continue running after 
I start it.

--
Joseph A. Nagy, Jr.
Student at Motlow State Community College
Political Activist Extrodinaire
The only fallacy is the inaction on our part to stave off the worst of
horrors, the stripping of personal freedom.
--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] No Mailboxes

2004-01-18 Thread Joseph A. Nagy, Jr.
Jason Stubbs wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Sunday 18 January 2004 12:46, Joseph A. Nagy, Jr. wrote:

I have exim installed (and I have problems with that, which I'll discuss
later):
cbash-2.05b$ cd /var/spool/mail
bash-2.05b$ ls -a
..  ..  .keep
bash-2.05b$
bash-2.05b$ cd /var/mail
bash-2.05b$ ls -a
..  ..  .keep
bash-2.05b$


/var/mail should be a symlink to /var/spool/mail.


As you can see, I have NO system email boxes even though I have four
accounts (three users and root) on the box, exim installed and running
(I can send mail from my system accounts w/o any problem).


There should be no mailboxes there until a message is received on an account.
I've sent out test emails which have been replied to (as well as sending
myself test messages) and root should be getting system related email
(from vcron or what not)


The problem I have with exim comes when I make changes to exim.conf
(cp'd from exim.conf.dist and edited as needed) and then try and run
/etc/init.d/exim restart
joseph-a-nagy-jr root # /etc/init.d/exim restart
 * Stopping exim...
     [ !!
]
joseph-a-nagy-jr root #

I then have to zap it and start it back up. What's going on here?


This means that the daemon started and died. When you try to restart or stop 
the daemon, the operation fails (because it is not running). Check any log 
messages to find out why.
I've checked the logs and they don't make sense. The last entry (which
is no longer repeated but exim still dies on startup) refered to a line
that was commented out. Even so I removed the entry for that line, kept
an eye on the clock and waited two minutes, started exim, checked the
logs, no error, then tried to restart with the same error as above but
nothing recorded in the log file (I'm checking
/var/log/exim/exim_main.log and exim_panic.log) as to why it's still dieing.
--
Joseph A. Nagy, Jr.
Student at Motlow State Community College
Political Activist Extrodinaire
The only fallacy is the inaction on our part to stave off the worst of
horrors, the stripping of personal freedom.
--
[EMAIL PROTECTED] mailing list


[gentoo-user] No Mailboxes

2004-01-17 Thread Joseph A. Nagy, Jr.
I have exim installed (and I have problems with that, which I'll discuss 
later):

cbash-2.05b$ cd /var/spool/mail
bash-2.05b$ ls -a
.  ..  .keep
bash-2.05b$
bash-2.05b$ cd /var/mail
bash-2.05b$ ls -a
.  ..  .keep
bash-2.05b$
As you can see, I have NO system email boxes even though I have four 
accounts (three users and root) on the box, exim installed and running 
(I can send mail from my system accounts w/o any problem).

The problem I have with exim comes when I make changes to exim.conf 
(cp'd from exim.conf.dist and edited as needed) and then try and run 
/etc/init.d/exim restart

joseph-a-nagy-jr root # /etc/init.d/exim restart
 * Stopping exim... 
     [ !! ]

joseph-a-nagy-jr root #

I then have to zap it and start it back up. What's going on here?

I think I'll save the rest of my problems for another email. ;)
--
Joseph A. Nagy, Jr.
Student at Motlow State Community College
Political Activist Extrodinaire
The only fallacy is the inaction on our part to stave off the worst of 
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Gentoo-newbie - Install fails

2003-11-01 Thread Joseph A. Nagy, Jr.
On Sat, 01 Nov 2003 18:28:58 +1100, Kingsley 
<[EMAIL PROTECTED]> responded thusly:

I 'emerge portage'-ed but it failed to patch.

It seemed to be unpacking and configuring "sys-devel/patch2.5.9"
But this failes with a message "... see config.log"
So I look in here - the configure has broken with a compile,
and once again the error is - undefined symbol 
xxmalloc_set_program_name.

*sigh*

-kt
Sigh indeed. :(
--
The only fallacy is the inaction on our part to stave off the worst of 
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Gentoo-newbie - Install fails

2003-10-31 Thread Joseph A. Nagy, Jr.
On Sat, 01 Nov 2003 11:03:39 +1100, Kingsley 
<[EMAIL PROTECTED]> responded thusly:
Howdy,

Trying to move away frmo RPM nightmares to Gentoo.

Doloaded latest isos, booted, followed instructions.

However it is failing trying to compile 'portage':

It unpacks portage-2.0.49.r15.tar.bz2, starts to compile
it but fails with an error - undefined symbol 
xxmalloc_set_program_name.

I started the install with 'pack1', all the emerge sync seemed to
be ok, and I've re-emerged a few times, but always get the same
result...
Any suggestions desperately needed,

thanks,
-kt
(5 years linux experience, 3 days with gentoo)


I'm having a similar problem with emerging the latest portage. Perhaps 
that's why bootstrap.sh fails? If so I need to run
emerge portage > /portage.out 2>&1 

on it, too.
--
The only fallacy is the inaction on our part to stave off the worst of 
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Apparent Error in the Install Instructions

2003-10-31 Thread Joseph A. Nagy, Jr.
On Fri, 31 Oct 2003 22:46:27 +0100, "Jernej Zidar" <[EMAIL PROTECTED]> 
responded thusly:
the name of the file is resolv.conf and not resolv.conf

without it the network won't work.


Okay. 
--
The only fallacy is the inaction on our part to stave off the worst of 
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Setting Options

2003-10-31 Thread Joseph A. Nagy, Jr.
On Fri, 31 Oct 2003 14:58:52 -0600, "Jeffrey Smelser" 
<[EMAIL PROTECTED]> responded thusly:
here is what I found: 
http://www.gtlib.cc.gatech.edu/pub/gentoo/releases/x86/1.4/livecd/x86/
Those livecd's have been there since Sep 13. If this was a bug, I 
would think someone else would have shown this before you.. Where did 
you get your livecd from?
I burned it from those ISOs at the above link yesterday.


--
The only fallacy is the inaction on our part to stave off the worst of 
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Setting Options

2003-10-31 Thread Joseph A. Nagy, Jr.
On Fri, 31 Oct 2003 14:36:17 -0600, "Jeffrey Smelser" 
<[EMAIL PROTECTED]> responded thusly:
You seem to have a bad copy of the iso, or better yet, have you 
checked your hard drive for possible problems?? You seem to be having 
a lot of problems with this build that can attribute to a bad copy of 
the tar you used to load on your hard drive, or a problem with your 
hard drive or hard ware.


afaik the HDD's are in perfect working order. Two of the three I'm 
using I used while running RedHat Linux and the third one (/dev/hda) 
hasn't been used in a while (a couple of months ago I ran some HDD 
utilities, low level format and such)).
--
The only fallacy is the inaction on our part to stave off the worst of 
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Setting Options

2003-10-31 Thread Joseph A. Nagy, Jr.
On Fri, 31 Oct 2003 12:33:08 -0800, Matt Chorman 
<[EMAIL PROTECTED]> responded thusly:

Bootstrap.sh only compiles glibc and gcc (multiple times.) AFAIK, 
neither of 
these uses gpg encryption. As long as you put this in USE= before 
emerge'ing 
any other software that uses encryption, you will still be OK. 

- -- 
Matt
http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x7D81740A


Thanks!
--
The only fallacy is the inaction on our part to stave off the worst of 
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Setting Options

2003-10-31 Thread Joseph A. Nagy, Jr.
On Fri, 31 Oct 2003 14:04:33 -0600, "Jeffrey Smelser" 
<[EMAIL PROTECTED]> responded thusly:
I don't have access to the ebuilds so I would have to check if any of 
those use crypt.. 

You can always check the ebuilds and see if crypt is used. 

Maybe someone else can chime in on that one.. You can always hit 
ctrl-c a few times and stop things, add the use, then start again. 
since your probably not that far along yet. 


I believe it is used because I had a friend who emerged his KMail with 
GPG support enabled and configured.

Anyways, I have to go file a bug report. *grumbles* The bootstrap 
process cannot move past make. I finally just 

/usr/portage/scripts/bootstrap.sh > /bootstrap.out 2>&1

so that I can make the bug report (I'll just switch to the second 
virtual console and move the file from /mnt/gentoo/ to /mnt/floppy so 
that I can give the full output (if needed)).

Thanks for the help!
--
The only fallacy is the inaction on our part to stave off the worst of 
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Setting Options

2003-10-31 Thread Joseph A. Nagy, Jr.
On Fri, 31 Oct 2003 13:16:55 -0600, "Jeffrey Smelser" 
<[EMAIL PROTECTED]> responded thusly:
Thats a use flag.. Here is how to use them.. 
http://www.gentoo.org/doc/en/use-howto.xml

But you need to add crypt to your use flags in make.conf
Doh! I've already started the bootstrap process. I imagine it's too 
late?


Does anyone know what I have to do to set Gentoo to compile in GPG 
support (if available)?
--
[EMAIL PROTECTED] mailing list
--
The only fallacy is the inaction on our part to stave off the worst of 
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list


[gentoo-user] Setting Options

2003-10-31 Thread Joseph A. Nagy, Jr.
Does anyone know what I have to do to set Gentoo to compile in GPG 
support (if available)?
--
The only fallacy is the inaction on our part to stave off the worst of 
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Apparent Error in the Install Instructions

2003-10-31 Thread Joseph A. Nagy, Jr.
On Fri, 31 Oct 2003 11:48:38 -0600, "Jeffrey Smelser" 
<[EMAIL PROTECTED]> responded thusly:
On Fri, 31 Oct 2003 11:41:19 -0600, "Jeffrey Smelser" 
<[EMAIL PROTECTED]> responded thusly:
>No, you should have read the  error.. make.conf is suppose to be 
>there and functional. Its not a documentation error as your 
trying to 
>convey.. This is a possible bug that needs to be addressed... 

Okay, I thought it was. Having read over everyone's responses has 
led 
me to believe otherwise. I didn't write down the error I was 
having. I 
actually recieved three errors. One about a bad token <"="> and two 
more that I don't remember.
Ahh, this is a bad make.conf entry.. Hopefully this has been fixed 
already and you just got "unlucky" when you downloaded your live cd..
Doh.


No apologies... I am just explaining it so we both are on the same 
wave length and you know for future to write that stuff down so we 
can trouble shoot this better together.. And in this case, its a bug 
that should be in the bug list.. 
I'll be subscribing to it as soon as I get my system's GUI set up (in 
three to four weeks :p).

Your the first I have heard of this so did you just download your 
livecd or is it older?
I downloaded the LiveCD ISOs yesterday.

--
[EMAIL PROTECTED] mailing list
--
The only fallacy is the inaction on our part to stave off the worst of 
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Apparent Error in the Install Instructions

2003-10-31 Thread Joseph A. Nagy, Jr.
On Fri, 31 Oct 2003 11:41:19 -0600, "Jeffrey Smelser" 
<[EMAIL PROTECTED]> responded thusly:
No, you should have read the  error.. make.conf is suppose to be 
there and functional. Its not a documentation error as your trying to 
convey.. This is a possible bug that needs to be addressed... 
Okay, I thought it was. Having read over everyone's responses has led 
me to believe otherwise. I didn't write down the error I was having. I 
actually recieved three errors. One about a bad token <"="> and two 
more that I don't remember.

thats why I asked for the error. I presume you just assumed it was a 
documentation error and didn't read the error that was happening? 
I did read the error that was happening, but I assumed it was because 
make.conf wasn't there. Stupid me. My apologies.


--
The only fallacy is the inaction on our part to stave off the worst of 
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Apparent Error in the Install Instructions

2003-10-31 Thread Joseph A. Nagy, Jr.
On Fri, 31 Oct 2003 12:22:06 -0500, "brett holcomb" 
<[EMAIL PROTECTED]> responded thusly:
It's not an error.  You need to do it before you chroot or you can't 
get to the real /etc. You are copying the resolv.conf used with the 
LiveCD boot to what will be your Gentoo install /etc.  You don't run 
env-update until after you chroot.

1. copy resolv.conf
2. do whatever else
3. chroot
4  then env-update


Let me be clear. I copyied resolv.conf

Did that other stuff

chroot'd

ran env-update

Errored out and couldn't emerge sync.

Exited out

cp'd make.conf

re-chroot'd

re-ran env-update

Successful exit on that

am now running emerge sync

--
The only fallacy is the inaction on our part to stave off the worst of 
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Apparent Error in the Install Instructions

2003-10-31 Thread Joseph A. Nagy, Jr.
On Fri, 31 Oct 2003 11:19:39 -0600, "Jeffrey Smelser" 
<[EMAIL PROTECTED]> responded thusly:
What was the error?? 
Um, it's not resolve.conf (or at the very least not just resolve.conf) 
that needed to be cp'd. You had to cp over make.conf as well.


Just before you are told to chroot to /mnt/gentoo, it says to cp 
/etc/resolve.conf to /mnt/gentoo/etc/

I tried that several times and had errors with running 
env-update so I 
exited the chroot and decided to cp /etc/make.conf /mnt/gentoo/etc/, 
chroot'd again and ran env-update with no errors.

I just thought I'd point this out in case someone else 
already hasn't. 
If it has been noticed, then ignore little ol' me. Just trying to be 
helpful.
--
[EMAIL PROTECTED] mailing list
--
The only fallacy is the inaction on our part to stave off the worst of 
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list


[gentoo-user] Apparent Error in the Install Instructions

2003-10-31 Thread Joseph A. Nagy, Jr.
Just before you are told to chroot to /mnt/gentoo, it says to cp 
/etc/resolve.conf to /mnt/gentoo/etc/

I tried that several times and had errors with running env-update so I 
exited the chroot and decided to cp /etc/make.conf /mnt/gentoo/etc/, 
chroot'd again and ran env-update with no errors.

I just thought I'd point this out in case someone else already hasn't. 
If it has been noticed, then ignore little ol' me. Just trying to be 
helpful.

--
The only fallacy is the inaction on our part to stave off the worst of 
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Not Sure If This Is The Right Place

2003-10-30 Thread Joseph A. Nagy, Jr.
On Fri, 31 Oct 2003 07:34:41 +1030, MadMax <[EMAIL PROTECTED]> 
responded thusly:
http://www.gentoo.org/doc/en/index.xml#doc_chap2

Click where it says "Printer Friendly" :)

Cheers,
Max.


Either the Win2K machine I'm printing from or the Epson printer are 
totally fucking up the page. It's not wrapping the text AT ALL. Not 
acceptable. *sighs and tries MS Word again*

--
The only fallacy is the inaction on our part to stave off the worst of 
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Not Sure If This Is The Right Place

2003-10-30 Thread Joseph A. Nagy, Jr.
On Fri, 31 Oct 2003 07:34:41 +1030, MadMax <[EMAIL PROTECTED]> 
responded thusly:
http://www.gentoo.org/doc/en/index.xml#doc_chap2

Click where it says "Printer Friendly" :)

Cheers,
Max.


Doh!

I just clicked on the "installation instructions" link in the left 
hand column on the main page. Didn't think to look elsewhere. Sorry!
--
The only fallacy is the inaction on our part to stave off the worst of 
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list


[gentoo-user] Not Sure If This Is The Right Place

2003-10-30 Thread Joseph A. Nagy, Jr.
Is there anyway to get a printer friendly version of the download 
instructions? I did an okay job of copy and pasting into notepad 
(Win2K box is only other available machine in the house) but it still 
looks like crap.

--
The only fallacy is the inaction on our part to stave off the worst of 
horrors, the stripping of personal freedom.

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] web server inside a network

2003-07-22 Thread Joseph A Nagy Jr
On Tuesday 22 July 2003 14:55, G�im wrote this in an attempt to be witty 
and informative:
> Hi guys,
>
> I got my router working, and there are two machines
> connected, in one of them I wanna run a webserver. So
> I went to the routers port 80 (192.168.0.1:80) to


Instead of doing that, just got to 192.168.1.1, that should connect you 
to your router (I know this is the case with my LinkSys)
-- 
Wielder of the mighty +1 LARTsaber of Unsubscribe Instructions At End of
Message, the +3 Clue-by-Four of No Attachments to a Mailing List, and
the -4 Shield of No Spell Checker
http://joseph-a-nagy-jr.homelinux.org http://mc-luug.homelinux.org/


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Apache

2003-07-21 Thread Joseph A Nagy Jr
On Monday 21 July 2003 04:33, Bernhard Huber wrote this in an attempt to 
be witty and informative:
> how can i know if the header files and the 'apxs' tool are installed,
> is it automatically , with apache ?
> Where are they ?

Look in either /etc/httpd or /usr/local/apache

>
> I see, the apxs2 tool, but i need the apxs tool, is it the same ?

Yes.

>
> Bernhard Huber
> BMW Car-IT
>
>
> --
> [EMAIL PROTECTED] mailing list

-- 
Wielder of the mighty +1 LARTsaber of Unsubscribe Instructions At End of
Message, the +3 Clue-by-Four of No Attachments to a Mailing List, and
the -4 Shield of No Spell Checker
http://joseph-a-nagy-jr.homelinux.org http://mc-luug.homelinux.org/


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] OT: Burning CDs with CD Bake Oven

2003-07-19 Thread Joseph A Nagy Jr
On Saturday 19 July 2003 18:06, Jason Giangrande wrote this in an 
attempt to be witty and informative:
> Anyone know if it's possible, with CD Bake Oven, to burn a data CD
> that isn't an ISO image.  I want to burn a CD with a few files so I
> can use them on another computer.  If this is not possible can anyone
> recommend CD burning software for Linux that doesn't suck?  Every
> burning software I've tried seems to not be able to have some major
> flaw or not be able to do something at all (like not burning data CDs
> that aren't ISO images).
>
> Thanks,
> Jason Giangrande

try xcdroast
-- 
Wielder of the mighty +1 LARTsaber of Unsubscribe Instructions At End of
Message, the +3 Clue-by-Four of No Attachments to a Mailing List, and
the -4 Shield of No Spell Checker
http://joseph-a-nagy-jr.homelinux.org http://mc-luug.homelinux.org/


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Re: Re: reiserfs prevents harddrive suspend of my notebook

2003-07-15 Thread Joseph A Nagy Jr
On Tuesday 15 July 2003 17:46, Martin Gramatke wrote this in an attempt 
to be witty and informative:
> Joseph A Nagy Jr wrote:
> >> Joseph A Nagy Jr wrote:
> >> > Have you looked at the services you have running?
> >
> > Boot into X (KDE if you have it), goto
> > K -> System Settings -> Server Settings -> Services
>
> Yes, there are three KDE specific services started and running: Alarm
> Daemon, KDE Internet Daemen and KDED Mount Watcher.
>
> Anyway, I also have the problem without starting xdm. Here is what ps
> aux says is running in text console only mode:

> root  1612  0.0  0.0  1384  552 ?SL   00:01   0:00
> /usr/X11R6/bin/tp4d -z -b -S 0xff -V 0xaf


Do you know what that is?

> Meanwhile I suspect my linux-wlan-ng drivers. At least when I switch
> the WLAN off by /etc/init.d/wlan stop the harddrive seems to hold the
> suspend much longer. BTW, this doesn't change the process list.

WLAN? Well I suspect that would do it. Perhaps it was writing something 
to the drive (perhaps keeping something updated?).

-- 
Wielder of the mighty +1 LARTsaber of Unsubscribe Instructions At End of
Message, the +3 Clue-by-Four of No Attachments to a Mailing List, and
the -4 Shield of No Spell Checker
http://joseph-a-nagy-jr.homelinux.org http://mc-luug.homelinux.org/


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Re: reiserfs prevents harddrive suspend of my notebook

2003-07-15 Thread Joseph A Nagy Jr
On Tuesday 15 July 2003 16:31, Martin Gramatke wrote this in an attempt 
to be witty and informative:
> Joseph A Nagy Jr wrote:
> > Have you looked at the services you have running?
>
> Sure, I just booted into the console only, no X. ps aux showed me
> some services were running, but I have no clue what they were all
> good for. 

Boot into X (KDE if you have it), goto
K -> System Settings -> Server Settings -> Services

-- 
Wielder of the mighty +1 LARTsaber of Unsubscribe Instructions At End of
Message, the +3 Clue-by-Four of No Attachments to a Mailing List, and
the -4 Shield of No Spell Checker
http://joseph-a-nagy-jr.homelinux.org http://mc-luug.homelinux.org/


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] reiserfs prevents harddrive suspend of my notebook

2003-07-15 Thread Joseph A Nagy Jr
On Tuesday 15 July 2003 13:15, Martin Gramatke wrote this in an attempt 
to be witty and informative:
> Every few seconds something accesses my harddrive, therefore a
> suspend (hdparm -S1 /dev/hda) is impossible. I have a notebook, so I
> would really like to spin down the drive for less heat, noise and a
> longer battery life.


Have you looked at the services you have running?
-- 
Wielder of the mighty +1 LARTsaber of Unsubscribe Instructions At End of
Message, the +3 Clue-by-Four of No Attachments to a Mailing List, and
the -4 Shield of No Spell Checker
http://joseph-a-nagy-jr.homelinux.org http://mc-luug.homelinux.org/


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Bunch of Gnome junk to be added in world upgrade!???

2003-07-13 Thread Joseph A Nagy Jr
On Sunday 13 July 2003 19:37, Hemmann, Volker Armin wrote this in an 
attempt to be witty and informative:

> for me, his message was perfectly sorted into the thread by kmail.

I use kmail. Top posting != broken thread.


-- 
Wielder of the mighty +1 LARTsaber of Unsubscribe Instructions At End of
Message, the +3 Clue-by-Four of No Attachments to a Mailing List, and
the -4 Shield of No Spell Checker
http://joseph-a-nagy-jr.homelinux.org


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Bunch of Gnome junk to be added in world upgrade!???

2003-07-13 Thread Joseph A Nagy Jr
On Sunday 13 July 2003 14:21, Brett I. Holcomb wrote this in an attempt 
to be witty and informative:
> Grip was recommended to me a long time ago but I didn't want the
> Gnome stuff so I stuck with XCDRoast.  Oh, well.


Can we please not top post? Thanks.

I finc XCDRoast is good for making cd's, but I can't get it to create an 
.iso, it only wants to create .img (even though I have the default 
stuff for iso9660).
-- 
Wielder of the mighty +1 LARTsaber of Unsubscribe Instructions At End of
Message, the +3 Clue-by-Four of No Attachments to a Mailing List, and
the -4 Shield of No Spell Checker
http://joseph-a-nagy-jr.homelinux.org


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Bunch of Gnome junk to be added in world upgrade!???

2003-07-13 Thread Joseph A Nagy Jr
On Sunday 13 July 2003 14:03, Brett I. Holcomb wrote this in an attempt 
to be witty and informative:
> Amen to that!  It used to be that way but for some reason authors are
> jumping on one desktop or the other and making their programs
> dependend on it.  That makes it bad for those who don't use that
> particular desktop - we either don't use the app or we have to but a
> bunch of extra junk in we don't need - kind of like in the Windows
> world!

Exactly like Windows, unfortunately. :(

And I really, really like Grip.
-- 
Wielder of the mighty +1 LARTsaber of Unsubscribe Instructions At End of
Message, the +3 Clue-by-Four of No Attachments to a Mailing List, and
the -4 Shield of No Spell Checker
http://joseph-a-nagy-jr.homelinux.org


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Bunch of Gnome junk to be added in world upgrade!???

2003-07-13 Thread Joseph A Nagy Jr
On Sunday 13 July 2003 13:23, Spider wrote this in an attempt to be 
witty and informative:
> begin  quote
> On Sun, 13 Jul 2003 20:07:51 +0200
>
> "Hemmann, Volker Armin" <[EMAIL PROTECTED]> wrote:
> > I have installed grip.. that is the culprit in my case because the
> > latest -up world wants to upgrade grip and to install all the
> > gnome-stuff I do NOT want, but without grip.. no gnome.
>
> from the grip homepage:
>   "Grip is a cd-player and cd-ripper for the Gnome desktop."

To be honest, it'd be nice if programs were DE independent and could use 
features from both.
-- 
Wielder of the mighty +1 LARTsaber of Unsubscribe Instructions At End of
Message, the +3 Clue-by-Four of No Attachments to a Mailing List, and
the -4 Shield of No Spell Checker
http://joseph-a-nagy-jr.homelinux.org


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] gentoo in a p100[?]

2003-07-12 Thread Joseph A Nagy Jr
On Saturday 12 July 2003 22:49, G�im wrote this in an attempt to be 
witty and informative:
> Hi,
> I've got a p100 machine with 16mb ram, I was thinking
> of installing either gentoo or debian [and "try" to
> use it only as a web server]. The reason I kind of
> wanna install debian in it is that it won't have to do
> alot of compiling with debian whereas gentoo lots...
> Which one should I install?
>
> Thanks guys,
> ZiM

1) ONLY send once to the mailing list. Send double again and it's 
/dev/null for you.

As for what to install on that slow of a machine? Up to you. Both Debian 
and Gentoo are gonna take a while, although admittedly Gentoo will take 
longer. I'm going to be installing Gentoo on a P133 with 80MB of RAM as 
soon as I can buy a new harddrive.
-- 
Wielder of the mighty +1 LARTsaber of Unsubscribe Instructions At End of
Message, the +3 Clue-by-Four of No Attachments to a Mailing List, and
the -4 Shield of No Spell Checker
http://joseph-a-nagy-jr.homelinux.org


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] hpt372 controller [update]

2003-07-10 Thread Joseph A Nagy Jr
On Thursday 10 July 2003 10:04, Joseph A Nagy Jr wrote this in an 
attempt to be witty and informative:
> On Thursday 10 July 2003 05:57, JG wrote this in an attempt to be
> witty
>
> and informative:
> > i'm having the same problem since some months now, the only kernel
> > that is working for me is 2.4.19-gentoo-r10 (sis745 mainboard, 1GB
> > RAM, all pci slots full with stuff, abit hotrod 100 hpt370/72
> > raidcontroller), i'm using the drivers from highpoint which work
> > very well.
> >
> > i've tried many kernels from 2.4.20-gentoo-r5, ac-versions up to
> > the latest 2.4.21-pfeifer-r1_pre2, neither of them works
> >
> > what helps is passing the parameter acpi=off to the kernel, but
> > then again most of the kernels didn't work on some other points
> > (oopses; though the pfeifer-sources worked best, gonna try the next
> > version of them) i'm always using the same config, a bit modified
> > for each kernel of course.
>
> Thanks, I've passed on the info to my friend.

Using a vanilla kernel didn't work, so he's not trying the above.

-- 
Wielder of the mighty +1 LARTsaber of Unsubscribe Instructions At End of
Message, the +3 Clue-by-Four of No Attachments to a Mailing List, and
the -4 Shield of No Spell Checker
http://joseph-a-nagy-jr.homelinux.org


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] hpt372 controller

2003-07-10 Thread Joseph A Nagy Jr
On Thursday 10 July 2003 05:57, JG wrote this in an attempt to be witty 
and informative:
> i'm having the same problem since some months now, the only kernel
> that is working for me is 2.4.19-gentoo-r10 (sis745 mainboard, 1GB
> RAM, all pci slots full with stuff, abit hotrod 100 hpt370/72
> raidcontroller), i'm using the drivers from highpoint which work very
> well.
>
> i've tried many kernels from 2.4.20-gentoo-r5, ac-versions up to the
> latest 2.4.21-pfeifer-r1_pre2, neither of them works
>
> what helps is passing the parameter acpi=off to the kernel, but then
> again most of the kernels didn't work on some other points (oopses;
> though the pfeifer-sources worked best, gonna try the next version of
> them) i'm always using the same config, a bit modified for each
> kernel of course.

Thanks, I've passed on the info to my friend.

-- 
Wielder of the mighty +1 LARTsaber of Unsubscribe Instructions At End of
Message, the +3 Clue-by-Four of No Attachments to a Mailing List, and
the -4 Shield of No Spell Checker
http://joseph-a-nagy-jr.homelinux.org


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] hpt372 controller

2003-07-09 Thread Joseph A Nagy Jr
On Wednesday 09 July 2003 22:07, Marshal Newrock wrote this in an 
attempt to be witty and informative:

> Looking in 'make menuconfig', that only contains support up to the
> hpt370. Vanilla 2.4.21 contains support for the 372 and 374. 
> Upgrading his kernel should fix his problems.

Thanks, he's doing that now. Will update.
-- 
Wielder of the mighty +1 LARTsaber of Unsubscribe Instructions At End of
Message, the +3 Clue-by-Four of No Attachments to a Mailing List, and
the -4 Shield of No Spell Checker
http://joseph-a-nagy-jr.homelinux.org


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] hpt372 controller

2003-07-09 Thread Joseph A Nagy Jr
On Wednesday 09 July 2003 21:20, Marshal Newrock wrote this in an 
attempt to be witty and informative:
> On Wed, 9 Jul 2003, Joseph A Nagy Jr wrote:
> > > Which kernel is he using?  For 2.4.20, I had to use the -ac tree,
> > > though I believe the hpt drivers got merged into 2.4.21.  It will
> > > say exactly which chips are supported in make menuconfig.
> >
> > He says he has them loaded, then it will go "hdg lost interrupt"
> > three times, then list hdparams three times, then it goes through
> > the CD-ROMS just fine. It does everything else okay, but
> > occassionaly will say "hdg interrupt lost" (goes through hdh, hde,
> > hdg). Starts to boot, but encounters that problem
>
> Which kernel is he using?

kernel is linux-2.4.20-gentoo-rc5

-- 
Wielder of the mighty +1 LARTsaber of Unsubscribe Instructions At End of
Message, the +3 Clue-by-Four of No Attachments to a Mailing List, and
the -4 Shield of No Spell Checker
http://joseph-a-nagy-jr.homelinux.org


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] hpt372 controller

2003-07-09 Thread Joseph A Nagy Jr
On Wednesday 09 July 2003 21:20, Marshal Newrock wrote this in an 
attempt to be witty and informative:
> On Wed, 9 Jul 2003, Joseph A Nagy Jr wrote:
> > > Which kernel is he using?  For 2.4.20, I had to use the -ac tree,
> > > though I believe the hpt drivers got merged into 2.4.21.  It will
> > > say exactly which chips are supported in make menuconfig.
> >
> > He says he has them loaded, then it will go "hdg lost interrupt"
> > three times, then list hdparams three times, then it goes through
> > the CD-ROMS just fine. It does everything else okay, but
> > occassionaly will say "hdg interrupt lost" (goes through hdh, hde,
> > hdg). Starts to boot, but encounters that problem
>
> Which kernel is he using?

Not sure, he forgot to check, but it sounded liek the first one as he 
used the -ac tree

-- 
Wielder of the mighty +1 LARTsaber of Unsubscribe Instructions At End of
Message, the +3 Clue-by-Four of No Attachments to a Mailing List, and
the -4 Shield of No Spell Checker
http://joseph-a-nagy-jr.homelinux.org


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] hpt372 controller

2003-07-09 Thread Joseph A Nagy Jr
On Wednesday 09 July 2003 21:00, Marshal Newrock wrote this in an 
attempt to be witty and informative:
> On Wed, 9 Jul 2003, Joseph A Nagy Jr wrote:
> > From a friend of mine running Gentoo 1.4rc4 (installed from
> > stage1):
> >
> > "my hpt372 controller to which my hdds are connected to... i keep
> > getting hdg: lost interrupt error on kernel load. and the kernel
> > never finished loading in several attempts. looking like a driver
> > problem seems i remeber this problem with RH a long time ago on
> > my other machine with had a hpt 370, but i dont remeber the fix"
> >
> > I'm asking for him 'cause he doesn't sign up for mailing lists.
> > Please help, this is rather urgent.
>
> Which kernel is he using?  For 2.4.20, I had to use the -ac tree,
> though I believe the hpt drivers got merged into 2.4.21.  It will say
> exactly which chips are supported in make menuconfig.

He says he has them loaded, then it will go "hdg lost interrupt" three 
times, then list hdparams three times, then it goes through the CD-ROMS 
just fine. It does everything else okay, but occassionaly will say "hdg 
interrupt lost" (goes through hdh, hde, hdg). Starts to boot, but 
encounters that problem


IDE_DMA proc: chipset supported IDE_DMA_ lost IRQ func only: 13 lost 
hdg, lost interrupt hdg 0 bytes in fifo.

-- 
Wielder of the mighty +1 LARTsaber of Unsubscribe Instructions At End of
Message, the +3 Clue-by-Four of No Attachments to a Mailing List, and
the -4 Shield of No Spell Checker
http://joseph-a-nagy-jr.homelinux.org


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] hpt372 controller

2003-07-09 Thread Joseph A Nagy Jr
On Wednesday 09 July 2003 20:55, Joseph A Nagy Jr wrote this in an 
attempt to be witty and informative:
> From a friend of mine running Gentoo 1.4rc4 (installed from stage1):
>
> "my hpt372 controller to which my hdds are connected to... i keep
> getting hdg: lost interrupt error on kernel load. and the kernel
> never finished loading in several attempts. looking like a driver
> problem seems i remeber this problem with RH a long time ago on
> my other machine with had a hpt 370, but i dont remeber the fix"
>
> I'm asking for him 'cause he doesn't sign up for mailing lists.
> Please help, this is rather urgent.

BTW, we have been both googling for the past 15 minutes with no luck.

-- 
Wielder of the mighty +1 LARTsaber of Unsubscribe Instructions At End of
Message, the +3 Clue-by-Four of No Attachments to a Mailing List, and
the -4 Shield of No Spell Checker
http://joseph-a-nagy-jr.homelinux.org


--
[EMAIL PROTECTED] mailing list



[gentoo-user] hpt372 controller

2003-07-09 Thread Joseph A Nagy Jr
>From a friend of mine running Gentoo 1.4rc4 (installed from stage1):

"my hpt372 controller to which my hdds are connected to... i keep 
getting hdg: lost interrupt error on kernel load. and the kernel never 
finished loading in several attempts. looking like a driver problem 
seems i remeber this problem with RH a long time ago on my other 
machine with had a hpt 370, but i dont remeber the fix"

I'm asking for him 'cause he doesn't sign up for mailing lists. Please 
help, this is rather urgent.
-- 
Wielder of the mighty +1 LARTsaber of Unsubscribe Instructions At End of
Message, the +3 Clue-by-Four of No Attachments to a Mailing List, and
the -4 Shield of No Spell Checker
http://joseph-a-nagy-jr.homelinux.org


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Hello

2003-07-06 Thread Joseph A Nagy Jr
On Sunday 06 July 2003 11:13, Brett I. Holcomb wrote in an attempt to be 
witty and informative:
> Yes, in a way.  For example, if you start stage 1 you need to let
> that finish but after it does you can shutdown and come back later
> and continue on.  Once the system is installed an emerge resume will
> let you restart a stopped merge.

Sweet, thanks. :)
-- 
Wielder of the mighty +1 LARTsaber of Unsubscribe Instructions At End of
Message, the +3 Clue-by-Four of No Attachments to a Mailing List, and
the -4 Shield of No Spell Checker
http://joseph-a-nagy-jr.homelinux.org


--
[EMAIL PROTECTED] mailing list



[gentoo-user] Hello

2003-07-06 Thread Joseph A Nagy Jr
Soon I shall be starting the process of installing Gentoo on a 133MHz 
comp with 80MB of RAM. Is the install process resumable? My internet 
connection, despite being an "always on" broadband connection, is 
rather unreliable (that and I want to reclaim the CD-RW once the 
process has moved past the installation of the base sytem). TIA for any 
help
-- 
Wielder of the mighty +1 LARTsaber of Unsubscribe Instructions At End of
Message, the +3 Clue-by-Four of No Attachments to a Mailing List, and
the -4 Shield of No Spell Checker
http://joseph-a-nagy-jr.homelinux.org


--
[EMAIL PROTECTED] mailing list