Re: trying to instll MPLayer in eServer 3.1.1

2002-03-16 Thread Net Llama

Its a bit strange that you'd get SDL as a tarball, and SDL-devel as an
RPM.  It should all be one or the other, not a mixture.  Plus if you're
building SDL from a tarball, then you should already have gotten the
'devel' stuff with the tarball.  I'm wondering if you have ended up with
a mixed version.  Might be best to remove SDL completely as best as you
can, and reinstall it again all from either RPM or tarball.

ALso, which version of XFree86 are you using?   I noticed some internal
references to X11 stuff in those errors.  If its the Caldera hack job of
XFree86, you might want to consider grabbing XFree86-4.2.0 and using
that instead.

I've built MPlayer on 3 different boxes, and never ran into any
problems, but i tend to use alot of pure sources rather than distro
RPMs.


--- Keith Antoine <[EMAIL PROTECTED]> wrote:
> On Sunday 17 March 2002 04:42 pm, you wrote:
> > Keith,
> > What version of binutils do you have?  How did the ./configure go? 
> Any
> > errors?  Where did you get the SDL and SDL-devel packages that you
> have
> > installed?
> 
> Yeah! should have know you would ask difficult questions .
> Binutils 
> 2.11.94, ./configure --enable-gui --enable-streaming, went through
> without a 
> hitch, no errors. Cannot remember where I got the SDL packages, sorry
> but 
> cannot remember about the devel either as I am unsure whether i
> installed 
> that. Just checked. I have SDL-1.2.3 as a tarball and the DEVEL as an
> rpm.
> 
> OK had acheck and think that i got them from libSDL.org and thats the
> way 
> they come tarball and rpm.

=

Lonni J. Friedman [EMAIL PROTECTED]

Linux Step-by-step help:   http://netllama.ipfox.com

 .

__
Do You Yahoo!?
Yahoo! Sports - live college hoops coverage
http://sports.yahoo.com/
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



New SxS steps for March 17

2002-03-16 Thread Net Llama

FTP->ProFTP (updated) Chang

=

Lonni J. Friedman [EMAIL PROTECTED]

Linux Step-by-step help:   http://netllama.ipfox.com

 .

__
Do You Yahoo!?
Yahoo! Sports - live college hoops coverage
http://sports.yahoo.com/
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: trying to instll MPLayer in eServer 3.1.1

2002-03-16 Thread Keith Antoine

On Sunday 17 March 2002 04:42 pm, you wrote:
> Keith,
> What version of binutils do you have?  How did the ./configure go?  Any
> errors?  Where did you get the SDL and SDL-devel packages that you have
> installed?

Yeah! should have know you would ask difficult questions . Binutils 
2.11.94, ./configure --enable-gui --enable-streaming, went through without a 
hitch, no errors. Cannot remember where I got the SDL packages, sorry but 
cannot remember about the devel either as I am unsure whether i installed 
that. Just checked. I have SDL-1.2.3 as a tarball and the DEVEL as an rpm.

OK had acheck and think that i got them from libSDL.org and thats the way 
they come tarball and rpm.

-- 
Keith Antoine (GANDALF) aka 'skippy'
18 Arkana St, The Gap, Queensland 4061 Australia PH:61733002161
Retired Geriatric, Sometime Electronics Engineer, Knowall, Brain in storage

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Good linux compatible sound card

2002-03-16 Thread Shawn Tayler

On Sat, 16 Mar 2002 18:37:22 -0500, Joel Hammer wrote:

>Can someone recommend a really nice, high quality sound card for linux?
>Thanks,
>Joel

Creatives Sound Blaster Live works quite well  emu10k module

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



[submission] update to proftpd section

2002-03-16 Thread M.W.Chang [linuxism]


I have added more detailed explanation and steps into the proftpd
section,
and fixed the punctuation marks in the html.
Please use the attached html to replace your copy if it'ok.

-- 
May the Force and Farce be with Linux and you.
Join the friendly chit-chat in http://www.linux-sxs.org &
news://news.hkpcug.org
Title: Installing ProFTPd








  
 
 
   


 

 


  

 
  




Installing ProFTPD


From: Chang
Date: 17 March, 2002


This document describes the compile/install and configuration of a very basic ProFTPD service.


Grab the proftpd-1.2.4.tar.gz from Proftpd website. I am using Caldera OpenLinux 3.1, so I configured the package with these switches, and use checkinstall-1.5.1 to turn the package into an regular RPM for installation:




./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var/run
make -j 3
checkinstall -si make install



NOTE: checkinstall-1.5.1 would require you to enter the path to Caldera's RPM repository in /usr/src/OpenLinux.

Then I wrote the /etc/proftpd.conf by reading the /usr/src/proftpd-1.2.4/doc directory. My proftpd exhibits the following characteristics:


unlimited no. of uses can always upload
3 users can download at any time, with bandwidthlocked at 2 kb/s. 
all uploads go to /home/ftp, and on one can download from it.
users can download from /home/ftpdown only, and only for files
No users can login their home directory (well, I havne't learnt how to do it. :)
by defaults, files owned by ftp:ftp cannot be downloaded by anyone. To allow files to be downloaded, chown nobody:nobody the_file
chmod 753 /home/ftp; chown ftp:ftp /home/ftp
chmod 555 /home/ftpdown; chown nobody:nobody /home/ftpdown
The anonymous account is linked to a real user account ftp in /etc/passwd, with shell set to /bin/false.
for uploading, users punch in ftp://111.222.333.444
for downloading, users punch in ftp:[EMAIL PROTECTED]




Proftpd generates a log file that's similar to the log file wu-ftpd. That means, you can use the xferstats script from wu-ftpd to analyze the log. I put the xferstats script in /usr/sbin.


Note that xferstats script cannot handle non-ASCII file names properly and would give you a divide-by-zero error. When I saw that, I would eelete the log entries. Hope someone could teach me how to fix the xferstats script.




# beginning of proftpd.conf
ServerName	"Anonymous Server"
ServerType	standalone

# Port 21 is the standard FTP port.
Port21

# If you don't want normal users logging in at all, uncomment this
# next section

  DenyAll

# Set the user and group that the server normally runs at.
Usernobody
Group   nogroup

MaxInstances10

# Set the maximum number of seconds a data connection is allowed
# to "stall" before being aborted.
TimeoutStalled  300

UseFtpUsers off
RootLogin   off
IdentLookup off
# you may want to have a separate file from the regular /etc/passwd
#AuthUserFile   /etc/proftpd-passwd


  Umask 022
  MaxClientsPerHost 1 "One connection per IP"
  RequireValidShell off
  DirFakeGroup  on  nobody
  DirFakeUser   on  nobody
  DirFakeMode   0440


# We want 'welcome.msg' displayed at login, and '.message' displayed
# in each newly chdired directory.
DisplayLogin	welcome.msg
DisplayFirstChdir.message


  
AllowAll
  
  UserAlias download ftp
# cli-crypt-1.0.tar.gz is a package that can be downloaded from http://freshmeat.net, 
# basically written for use with proftpd.
# UserPassword  download cli-crypt("password")
# AnonRequirePassword   on
  RequireValidShell off
  MaxClients3 "550 Too Many Users (Limit=%m)"
  User  ftp
  Group ftp
# you may not like the bandwidth control below
  RateReadBPS   2
  
DenyAll
  



  
AllowAll
  
  UserAlias anonymous ftp
  User  ftp
  Group ftp
  RequireValidShell off
  AllowStoreRestart on
  AllowOverwriteon
  AllowForeignAddress   on
  
AllowAll
  
  
DenyAll
  
# Reject all files with leading periods or dashes:
  PathDenyFilter "(^|/)[-.]"

# end of proftpd.conf




For your convinience, here's my /etc/logrotate.d/ftpd for Proftpd's logs:




# beginning of /etc/logrotate.d/ftpd
missingok

/var/log/xferlog {
  size=256k
  nocopytruncate
  postrotate
/usr/bin/killall -HUP syslogd
  endscript
}

/var/log/ftp {
  daily
  rotate 7
  postrotate
/usr/bin/killall -HUP syslogd
  endscript
}
# end of /etc/logrotate.d/ftpd






Re: login manager

2002-03-16 Thread Net Llama


--- zohar <[EMAIL PROTECTED]> wrote:
> I am using SUSE 7.1 .
> 
> Before I was able to go to command prompt from login screen but after
> some
> change done in control panel (I do not know what) but now the login
> window
> is been changed only to one line and also it has only Reboot and halt
> options. How can I set it back to the previous one where I was getting
> the
> way to go to command prompt.

Hitting Ctrl-Alt-F[1-6] doesn't work?

=

Lonni J. Friedman [EMAIL PROTECTED]

Linux Step-by-step help:   http://netllama.ipfox.com

 .

__
Do You Yahoo!?
Yahoo! Sports - live college hoops coverage
http://sports.yahoo.com/
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: trying to instll MPLayer in eServer 3.1.1

2002-03-16 Thread Net Llama

Keith,
What version of binutils do you have?  How did the ./configure go?  Any
errors?  Where did you get the SDL and SDL-devel packages that you have
installed?

-L

--- Keith Antoine <[EMAIL PROTECTED]> wrote:
> Yes I have read all the manual plus the faq and installed all that I
> could that is needed for 
> MPlayer but I am getting the following during 'make'. I have no idea
> whats causing the error,
> someone else might, SDL is in /usr/local/lib::
> 
> lrwxrwxrwx1 root root   19 Mar 16 08:13
> /usr/local/lib/libSDL-1.2.so.0 -> libSDL-1.2.so.0.0.3
> -rwxr-xr-x1 root root  1157876 Mar 16 08:13
> /usr/local/lib/libSDL-1.2.so.0.0.3
> -rw-r--r--1 root root  3997884 Mar 16 08:13
> /usr/local/lib/libSDL.a
> -rwxr-xr-x1 root root  759 Mar 16 08:13
> /usr/local/lib/libSDL.la-rw-r--r--1 root root 2518 Mar
> 16 08:13 /usr/local/lib/libSDLmain.a
> lrwxrwxrwx1 root root   19 Mar 16 08:13
> /usr/local/lib/libSDL.so -> libSDL-1.2.so.0.0.3
> 
> However it relates to esdaudio and I also have installed esound-0.2.8,
> however i have not been able to install
> mple-1.8.1, do not know if this is required though.
> 
> I am dead brained when it comes to programming of any sort.
> 
> help appreciated...
> 
>

> ma -lmad -lnsl-L/usr/lib -Wl,-rpath,/usr/lib -lSDL -lpthread  -laa
>   -Lvidix -lvidix -LGui -lgui
> /usr/lib/libSDL.a(SDL_esdaudio.lo): In function `Audio_Available':
> SDL_esdaudio.lo(.text+0x1c): undefined reference to `esd_open_sound'
> SDL_esdaudio.lo(.text+0x31): undefined reference to `esd_close'
> /usr/lib/libSDL.a(SDL_esdaudio.lo): In function `ESD_OpenAudio':
> SDL_esdaudio.lo(.text+0x452): undefined reference to `esd_play_stream'
> /usr/lib/libSDL.a(SDL_x11dga.lo): In function `X11_EnableDGAMouse':
> SDL_x11dga.lo(.text+0xc6): undefined reference to
> `XF86DGAQueryExtension'
> SDL_x11dga.lo(.text+0xea): undefined reference to
> `XF86DGAQueryVersion'
> SDL_x11dga.lo(.text+0x118): undefined reference to
> `XF86DGADirectVideo'
> /usr/lib/libSDL.a(SDL_x11dga.lo): In function `X11_CheckDGAMouse':
> SDL_x11dga.lo(.text+0x17e): undefined reference to
> `XF86DGAQueryDirectVideo'
> SDL_x11dga.lo(.text+0x1ab): undefined reference to
> `XF86DGADirectVideo'
> /usr/lib/libSDL.a(SDL_x11dga.lo): In function `X11_DisableDGAMouse':
> SDL_x11dga.lo(.text+0x1f9): undefined reference to
> `XF86DGADirectVideo'
> /usr/lib/libSDL.a(SDL_x11gamma.lo): In function `X11_SetGammaNoLock':
> SDL_x11gamma.lo(.text+0x13f): undefined reference to
> `XF40VidModeSetGamma'
> /usr/lib/libSDL.a(SDL_x11gamma.lo): In function `X11_GetGammaNoLock':
> SDL_x11gamma.lo(.text+0x250): undefined reference to
> `XF40VidModeGetGamma'
> /usr/lib/libSDL.a(SDL_x11modes.lo): In function
> `XF40VidModeGetModeInfo':
> SDL_x11modes.lo(.text+0x27): undefined reference to
> `XF40VidModeGetModeLine'
> /usr/lib/libSDL.a(SDL_x11modes.lo): In function `save_mode':
> SDL_x11modes.lo(.text+0xcb): undefined reference to
> `XF40VidModeGetViewPort'
> /usr/lib/libSDL.a(SDL_x11modes.lo): In function `restore_mode':
> SDL_x11modes.lo(.text+0x119): undefined reference to
> `XF40VidModeGetModeLine'
> SDL_x11modes.lo(.text+0x162): undefined reference to
> `XF40VidModeSwitchToMode'
> SDL_x11modes.lo(.text+0x1b4): undefined reference to
> `XF40VidModeSetViewPort'
> /usr/lib/libSDL.a(SDL_x11modes.lo): In function `set_best_resolution':
> SDL_x11modes.lo(.text+0x248): undefined reference to
> `XF40VidModeGetModeLine'
> SDL_x11modes.lo(.text+0x27a): undefined reference to
> `XF40VidModeGetAllModeLines'
> SDL_x11modes.lo(.text+0x32e): undefined reference to
> `XF40VidModeSwitchToMode'
> /usr/lib/libSDL.a(SDL_x11modes.lo): In function `get_real_resolution':
> SDL_x11modes.lo(.text+0x397): undefined reference to
> `XF40VidModeGetModeLine'
> /usr/lib/libSDL.a(SDL_x11modes.lo): In function `X11_GetVideoModes':
> SDL_x11modes.lo(.text+0x777): undefined reference to
> `XF40VidModeQueryExtension'SDL_x11modes.lo(.text+0x79b): undefined
> reference to `XF40VidModeQueryVersion'
> SDL_x11modes.lo(.text+0x7de): undefined reference to
> `XF40VidModeGetAllModeLines'
> /usr/lib/libSDL.a(SDL_x11modes.lo): In function `X11_EnterFullScreen':
> SDL_x11modes.lo(.text+0x10e1): undefined reference to
> `XF40VidModeLockModeSwitch'
> /usr/lib/libSDL.a(SDL_x11modes.lo): In function `X11_LeaveFullScreen':
> SDL_x11modes.lo(.text+0x1207): undefined reference to
> `XF40VidModeLockModeSwitch'
> make: *** [mplayer] Error 1

=

Lonni J. Friedman [EMAIL PROTECTED]

Linux Step-by-step help:   http://netllama.ipfox.com

 .

__
Do You Yahoo!?
Yahoo! Sports - live college hoops coverage
http://sports.yahoo.com/
___
L

login manager

2002-03-16 Thread zohar

I am using SUSE 7.1 .

Before I was able to go to command prompt from login screen but after some
change done in control panel (I do not know what) but now the login window
is been changed only to one line and also it has only Reboot and halt
options. How can I set it back to the previous one where I was getting the
way to go to command prompt.

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



trying to instll MPLayer in eServer 3.1.1

2002-03-16 Thread Keith Antoine

Yes I have read all the manual plus the faq and installed all that I could that is 
needed for 
MPlayer but I am getting the following during 'make'. I have no idea whats causing the 
error,
someone else might, SDL is in /usr/local/lib::

lrwxrwxrwx1 root root   19 Mar 16 08:13 /usr/local/lib/libSDL-1.2.so.0 
-> libSDL-1.2.so.0.0.3
-rwxr-xr-x1 root root  1157876 Mar 16 08:13 
/usr/local/lib/libSDL-1.2.so.0.0.3
-rw-r--r--1 root root  3997884 Mar 16 08:13 /usr/local/lib/libSDL.a
-rwxr-xr-x1 root root  759 Mar 16 08:13 
/usr/local/lib/libSDL.la-rw-r--r--1 root root 2518 Mar 16 08:13 
/usr/local/lib/libSDLmain.a
lrwxrwxrwx1 root root   19 Mar 16 08:13 /usr/local/lib/libSDL.so -> 
libSDL-1.2.so.0.0.3

However it relates to esdaudio and I also have installed esound-0.2.8, however i have 
not been able to install
mple-1.8.1, do not know if this is required though.

I am dead brained when it comes to programming of any sort.

help appreciated...


ma -lmad -lnsl-L/usr/lib -Wl,-rpath,/usr/lib -lSDL -lpthread  -laa   -Lvidix 
-lvidix -LGui -lgui
/usr/lib/libSDL.a(SDL_esdaudio.lo): In function `Audio_Available':
SDL_esdaudio.lo(.text+0x1c): undefined reference to `esd_open_sound'
SDL_esdaudio.lo(.text+0x31): undefined reference to `esd_close'
/usr/lib/libSDL.a(SDL_esdaudio.lo): In function `ESD_OpenAudio':
SDL_esdaudio.lo(.text+0x452): undefined reference to `esd_play_stream'
/usr/lib/libSDL.a(SDL_x11dga.lo): In function `X11_EnableDGAMouse':
SDL_x11dga.lo(.text+0xc6): undefined reference to `XF86DGAQueryExtension'
SDL_x11dga.lo(.text+0xea): undefined reference to `XF86DGAQueryVersion'
SDL_x11dga.lo(.text+0x118): undefined reference to `XF86DGADirectVideo'
/usr/lib/libSDL.a(SDL_x11dga.lo): In function `X11_CheckDGAMouse':
SDL_x11dga.lo(.text+0x17e): undefined reference to `XF86DGAQueryDirectVideo'
SDL_x11dga.lo(.text+0x1ab): undefined reference to `XF86DGADirectVideo'
/usr/lib/libSDL.a(SDL_x11dga.lo): In function `X11_DisableDGAMouse':
SDL_x11dga.lo(.text+0x1f9): undefined reference to `XF86DGADirectVideo'
/usr/lib/libSDL.a(SDL_x11gamma.lo): In function `X11_SetGammaNoLock':
SDL_x11gamma.lo(.text+0x13f): undefined reference to `XF40VidModeSetGamma'
/usr/lib/libSDL.a(SDL_x11gamma.lo): In function `X11_GetGammaNoLock':
SDL_x11gamma.lo(.text+0x250): undefined reference to `XF40VidModeGetGamma'
/usr/lib/libSDL.a(SDL_x11modes.lo): In function `XF40VidModeGetModeInfo':
SDL_x11modes.lo(.text+0x27): undefined reference to `XF40VidModeGetModeLine'
/usr/lib/libSDL.a(SDL_x11modes.lo): In function `save_mode':
SDL_x11modes.lo(.text+0xcb): undefined reference to `XF40VidModeGetViewPort'
/usr/lib/libSDL.a(SDL_x11modes.lo): In function `restore_mode':
SDL_x11modes.lo(.text+0x119): undefined reference to `XF40VidModeGetModeLine'
SDL_x11modes.lo(.text+0x162): undefined reference to `XF40VidModeSwitchToMode'
SDL_x11modes.lo(.text+0x1b4): undefined reference to `XF40VidModeSetViewPort'
/usr/lib/libSDL.a(SDL_x11modes.lo): In function `set_best_resolution':
SDL_x11modes.lo(.text+0x248): undefined reference to `XF40VidModeGetModeLine'
SDL_x11modes.lo(.text+0x27a): undefined reference to `XF40VidModeGetAllModeLines'
SDL_x11modes.lo(.text+0x32e): undefined reference to `XF40VidModeSwitchToMode'
/usr/lib/libSDL.a(SDL_x11modes.lo): In function `get_real_resolution':
SDL_x11modes.lo(.text+0x397): undefined reference to `XF40VidModeGetModeLine'
/usr/lib/libSDL.a(SDL_x11modes.lo): In function `X11_GetVideoModes':
SDL_x11modes.lo(.text+0x777): undefined reference to 
`XF40VidModeQueryExtension'SDL_x11modes.lo(.text+0x79b): undefined reference to 
`XF40VidModeQueryVersion'
SDL_x11modes.lo(.text+0x7de): undefined reference to `XF40VidModeGetAllModeLines'
/usr/lib/libSDL.a(SDL_x11modes.lo): In function `X11_EnterFullScreen':
SDL_x11modes.lo(.text+0x10e1): undefined reference to `XF40VidModeLockModeSwitch'
/usr/lib/libSDL.a(SDL_x11modes.lo): In function `X11_LeaveFullScreen':
SDL_x11modes.lo(.text+0x1207): undefined reference to `XF40VidModeLockModeSwitch'
make: *** [mplayer] Error 1
-- 
Keith Antoine (GANDALF) aka 'skippy'
18 Arkana St, The Gap, Queensland 4061 Australia PH:61733002161
Retired Geriatric, Sometime Electronics Engineer, Knowall, Brain in storage

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Partition sizes

2002-03-16 Thread Michael Scottaline

On Sat, 2002-03-16 at 19:14, Joel Hammer wrote:
> Just installed RH 7.1 and let the automatic installer do it as a server
> but with no graphical thingees (KDE, etc).  Here is the partition table
> it set up:
> 
> FilesystemSize  Used Avail Use% Mounted on
> /dev/hda8 251M   49M  189M  21% /
> /dev/hda1  53M  3.4M   47M   7% /boot
> /dev/hda6  13G   48k   11G   1% /home
> /dev/hda5  13G  424M   11G   4% /usr
> /dev/hda7 251M   16M  221M   7% /var
> 
> This seems odd, seeing as /opt and /tmp are on hda8, which is quite small, and
> /var, which can get quite big, is also a small partition. This seems
> odd. Does anyone know why Redhat does this?
===
Seems rather small for sure, but Redhat makes little use of /opt,
usually installing apps into /usr/local.  But even giving that, 189M
seems rather skimpy, especially in light of all of the space you have on
the drive 
Mike
-- 
"The surest way to corrupt a youth is to instruct him to hold in higher
regard those who think alike than those who think differently."

- -- Nietzsche

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Good linux compatible sound card

2002-03-16 Thread Brett I. Holcomb

Turtle Beach Santa Cruz worked out of the box for me.

Rick Sivernell wrote:

> ESS, SoundBlaster any

-- 
Brett I. Holcomb
[EMAIL PROTECTED]
AKA Grunt <><
Registered Linux User #188143
Remove R777 to email
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: compiling kde3

2002-03-16 Thread Keith Antoine

On Saturday 16 March 2002 07:46 pm, you wrote:

> The qt-copy module in cvs is there now, I updated a few minutes ago, but I
> understand that it was changed (again!) yesterday so maybe it was
> temporarily unavailable.  It is supposed to be very close to the Trolls'
> next release; 3.0.3.
>
> Have a nice evening.
> Pam

As I said in the cvs there wer no qt-copy but there was one in the kde-3.0rc2
folder. I grabbed this but was dated as the 9th March so its not an upto date 
one, otherwise I cannot see an very recent copy.

Also I had problems with kdepim and kdesdk, which are not that important, but 
was told that the pim was corrupt and sdk was not bz2.

Still not game to continue till I get the correct qt-copy.

-- 
Keith Antoine (GANDALF) aka 'skippy'
18 Arkana St, The Gap, Queensland 4061 Australia PH:61733002161
Retired Geriatric, Sometime Electronics Engineer, Knowall, Brain in storage

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Good linux compatible sound card

2002-03-16 Thread Rick Sivernell

ESS, SoundBlaster any
-- 
Rick Sivernell
Dallas, Texas  75287
972 306-2296
[EMAIL PROTECTED]
Caldera Open Linux eWorkStation 3.1
Registered Linux User

   .~.
  / v \
 /( _ )\
   ^ ^
In Linux we trust!
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



The SxS is "Project of the Week"

2002-03-16 Thread Douglas J Hunley

If you'll all take a moment to check 
http://www.linuxandmain.com/features/sxs.html you'll see that our little 
community has been chosen as "Project of the Week" by linuxandmain.com !
Kudos to all of you who help make this site what it is. This recognition 
belongs to all of you.
-- 
Douglas J Hunley (doug at hunley.homeip.net) - Linux User #174778
Admin: Linux StepByStep - http://www.linux-sxs.org
and http://jobs.linux-sxs.org

panic("Fod fight!");
2.2.16 /usr/src/linux/drivers/scsi/aha1542.c
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Partition sizes

2002-03-16 Thread Joel Hammer

Just installed RH 7.1 and let the automatic installer do it as a server
but with no graphical thingees (KDE, etc).  Here is the partition table
it set up:

FilesystemSize  Used Avail Use% Mounted on
/dev/hda8 251M   49M  189M  21% /
/dev/hda1  53M  3.4M   47M   7% /boot
/dev/hda6  13G   48k   11G   1% /home
/dev/hda5  13G  424M   11G   4% /usr
/dev/hda7 251M   16M  221M   7% /var

This seems odd, seeing as /opt and /tmp are on hda8, which is quite small, and
/var, which can get quite big, is also a small partition. This seems
odd. Does anyone know why Redhat does this?

Joel


___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Good linux compatible sound card

2002-03-16 Thread Joel Hammer

Can someone recommend a really nice, high quality sound card for linux?
Thanks,
Joel

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: compiling kde3

2002-03-16 Thread Keith Antoine

On Saturday 16 March 2002 07:46 pm, you wrote:
> On Friday 15 March 2002 6:40 am, Keith Antoine wrote:
> > Something just struck me, is it not there because they are yusing the
> > full qt-3.0.2 now rather than qt-copy. However where can one get the last
> > issued qt-copy from or is this academic now.
>
> The qt-copy module in cvs is there now, I updated a few minutes ago, but I
> understand that it was changed (again!) yesterday so maybe it was
> temporarily unavailable.  It is supposed to be very close to the Trolls'
> next release; 3.0.3.
>
> Have a nice evening.
> Pam

Hey this is wierd Pam, I just went to kde.org 
/pub/kde/unstable/CVS/snapshots/current and downloaded 20020313 but there was 
no qt-copy ?? Where is it supposed to be ?

-- 
Keith Antoine (GANDALF) aka 'skippy'
18 Arkana St, The Gap, Queensland 4061 Australia PH:61733002161
Retired Geriatric, Sometime Electronics Engineer, Knowall, Brain in storage

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: gentoo news and ramblings

2002-03-16 Thread Collins

On Sat, 16 Mar 2002 09:55:19 -0500 Bill Davidson <[EMAIL PROTECTED]>
wrote:> On Friday 15 March 2002 11:34 pm, Rick Sivernell wrote:
> > Collins
> >
> >Nice job, lots of good stuff. I love this xfce, and things made
> >by kde even work better. Sooner or later I will get around to
> >building a desceant IDE system for c++ java python & scripts. In
> >the process of some lower level stuff now. But this cillege
> >degree crap is cramping my real love, software development & my
> >wife.
> >
> > cheers
> 
> Do they teach you to spell in cillege
> 

I thank I fayulled that kourse 

-- 
Collins Richey - Denver Area - WWTLRD?
Gentoo_rc6-15 2.4.17 - xfce + sylpheed + mozilla
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: Alarm

2002-03-16 Thread Brett I. Holcomb

Don't feel bad !

Shawn Tayler wrote:

> On Fri, 15 Mar 2002 22:44:08 -0600, Brett I. Holcomb wrote:
> 
>>If you mean the KOrganizer then open it, go to Settings/Configure
>>Korganizer and uncheck "Start alarm daemons" or something similar.  Then
>>click OK and close KOrganizer.
> 
> DOH!
> 
> Man I feel real stupid right now..
> 
> stayler

-- 
Brett I. Holcomb
[EMAIL PROTECTED]
AKA Grunt <><
Registered Linux User #188143
Remove R777 to email
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: gentoo news and ramblings

2002-03-16 Thread Bill Davidson

On Friday 15 March 2002 11:34 pm, Rick Sivernell wrote:
> Collins
>
>Nice job, lots of good stuff. I love this xfce, and things made by
> kde even work better. Sooner or later I will get around to building a
> desceant IDE system for c++ java python & scripts. In the process of
> some lower level stuff now. But this cillege degree crap is cramping my
> real love, software development & my wife.
>
> cheers

Do they teach you to spell in cillege

Bill

___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: gentoo news and ramblings

2002-03-16 Thread Collins

On Fri, 15 Mar 2002 12:53:26 -0700 Collins <[EMAIL PROTECTED]> wrote:
> Well, I haven't sent out any gentoo "propaganda" in a while, so here
> goes.
> 
 
A few after thoughts:

1) Boy did I leave the typos in that one!  Those guys who complained
about one typo in the elx installer will send this directly to the plonk
file 

2) gentoo is still officially billed as a distro for sysadmins. 
Nevertheless, a lot of sheer newbies are trying it lately, mostly with
success.  If you have been lurking on this list for a while, know how to
partition a disk, and know how to add a user to your system and change
your password (or at least how to read the man files, since I can never
remember that trick very long), you can do this, too.

3) I'm currently using about 1.5 Gig out of a 5 Gig partition, and I
have gnome, kde, and OpenOffice, Netscape, and Mozilla installed (all
big hitters for space), so I have lots of room to grow.  gentoo leaves
the source (.tbz files) for all installs onboard, but you can remove
them manually, as I have done.  I would recommend 3-4 Gig for your
install.

Enjoy,
-- 
Collins Richey - Denver Area - WWTLRD?
Gentoo_rc6-15 2.4.17 - xfce + sylpheed + mozilla + oo641C
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.



Re: compiling kde3

2002-03-16 Thread Pam R

On Friday 15 March 2002 6:40 am, Keith Antoine wrote:
>

> Something just struck me, is it not there because they are yusing the full
> qt-3.0.2 now rather than qt-copy. However where can one get the last issued
> qt-copy from or is this academic now.

The qt-copy module in cvs is there now, I updated a few minutes ago, but I 
understand that it was changed (again!) yesterday so maybe it was temporarily 
unavailable.  It is supposed to be very close to the Trolls' next release; 
3.0.3.

Have a nice evening.
Pam
-- 
Linux Step by Step (UK mirror): http://www.pam.roberts.btinternet.co.uk/sxs/
___
Linux-users mailing list - http://linux-sxs.org/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.