Re: Redhat 8.0 Gui to CLI
Or just say init 3 Saves some reboot time :) Cheers, Patrick On Thu, 2003-01-16 at 00:50, Dave Sherman wrote: > On Wed, 2003-01-15 at 18:40, Jerry Roy wrote: > > Hi all, > > > > What file do I edit to change a Redhat 8.0 workstation to boot to the CLI instead >of X? > > Edit /etc/inittab, and look for the line that says something like this: > id:5:initdefault: > > Change the 5 to a 3, and reboot. -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
XFree86: how to make virtual resolution equal to Mode resolution?
Hello, I normally drive my monitor on 1280x1024 but when I want to watch a movie I tune it down to 800x600 or 640x480. Now I have not figured out how to make the virtual screen the exact same size as the resolution defined in Modes in XF86Config. Anyone have a clue? Configs like the example below don't work. There still is a virtual screen around my monitor. How do I get rid of that virtual screen? SubSection "Display" Depth16 Modes"640x480" Virtual 80 60 EndSubSection Many thanks, Patrick -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: XFree86: how to make virtual resolution equal to Moderesolution?
Thanks Neil. I'll give it a try. Cheers, Patrick On Fri, 2003-01-17 at 11:02, Neil Bird wrote: > Around about 16/01/2003 20:54, Patrick typed ... > > I normally drive my monitor on 1280x1024 but when I want to watch a > > movie I tune it down to 800x600 or 640x480. Now I have not figured out > > how to make the virtual screen the exact same size as the resolution > > defined in Modes in XF86Config. Anyone have a clue? Configs like the > > example below don't work. There still is a virtual screen around my > > monitor. How do I get rid of that virtual screen? > >Not quite certain what you're after, but I *think* what you want > isn't directly possible. > >If it helps, and I've understood you correctly, I have a somewhat > similar situation where I have a PC game for my son which I run under > wine*; it wants an 800x600 display. > >I have set up a second "Screen" section in XF86Config with 800x600 > res. Call it "small" or something. I then have a script which does > something like: > > export DISPLAY=:1.0 > X -screen small :1 & > xpid=$! > wine game > kill -INT $xpid > >[That's OTTOMH, may not be quite right] > >I've linked that onto my desktop and run *it* to start the game. > Guess you could do a similar thing with xine/ogle in there instead of wine. > > > * - get this: it runs fine on Linux under wine, but I can't make it work > when I'm natively booted into XP! > > -- > [neil@fnx ~]# rm -f .signature > [neil@fnx ~]# ls -l .signature > ls: .signature: No such file or directory > [neil@fnx ~]# exit > > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Setting up Shortcuts for all users on a system.
You can also define all needed resolutions in XF86Config and tell your students to use the --<+> key combination to wade through the available resolutions until they have found the desired one. Cheers, Patrick On Fri, 2003-01-17 at 11:07, Neil Bird wrote: > Around about 16/01/2003 20:40, Lucas Albers typed ... > > I am currently setting up my lab to use Redhat-8.0. > > Students like to change the resolution on the display monitor; as ever user > > prefers different resolutions. > > I would like to put a link on the desktop or on the start menu to the > > application to change resolution. > >I've wanted to do this in the past, but not enough to fully follow it > through. > >I don't think you can simplistically customise it, but my original > thought were to predefine several 'Screen' sections, each with a diff. > valid screen res., then customise the global gdm/xinit rc stuff to look > for a ~/.x-res file & issue a custom 'X -screen xxx' before running gnome. > >Even if you write a nice GUI conf. front-end, it'd never work in > 'real-tinme' though, as you'd have to log out and log in again to see > the effect. > > -- > [neil@fnx ~]# rm -f .signature > [neil@fnx ~]# ls -l .signature > ls: .signature: No such file or directory > [neil@fnx ~]# exit > > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
RE: XFree86: how to make virtual resolution equal to Mode resolution?
Hi Pavel, Yes I read about something called RandR that should be able to do this magic in the upcoming XFree86 4.3 release. I tried to install Phoebe2 last night but I bumped into some difficulties. Maybe it will succeed today and I'll then be able to have a look at this RandR thingy in early beta form. Cheers, Patrick On Tue, 2003-01-21 at 14:50, Pavel Rozenboim wrote: > It was discussed on this list before. Someone from RH answered that it isn't > possible in RH 8.0, but it will be possible with XFree86 4.3 which will be > available in 8.1. Or you may try rawhide XFree :) > > > -Original Message- > > From: Patrick [mailto:[EMAIL PROTECTED]] > > Sent: Mon, January 20, 2003 1:54 PM > > To: [EMAIL PROTECTED] > > Subject: Re: XFree86: how to make virtual resolution equal to Mode > > resolution? > > > > > > Thanks Neil. I'll give it a try. > > > > Cheers, > > Patrick > > > > > > On Fri, 2003-01-17 at 11:02, Neil Bird wrote: > > > Around about 16/01/2003 20:54, Patrick typed ... > > > > I normally drive my monitor on 1280x1024 but when I want > > to watch a > > > > movie I tune it down to 800x600 or 640x480. Now I have > > not figured out > > > > how to make the virtual screen the exact same size as the > > resolution > > > > defined in Modes in XF86Config. Anyone have a clue? > > Configs like the > > > > example below don't work. There still is a virtual screen > > around my > > > > monitor. How do I get rid of that virtual screen? > > > > > >Not quite certain what you're after, but I *think* what you want > > > isn't directly possible. > > > > > >If it helps, and I've understood you correctly, I have a > > somewhat > > > similar situation where I have a PC game for my son which I > > run under > > > wine*; it wants an 800x600 display. > > > > > >I have set up a second "Screen" section in XF86Config > > with 800x600 > > > res. Call it "small" or something. I then have a script > > which does > > > something like: > > > > > > export DISPLAY=:1.0 > > > X -screen small :1 & > > > xpid=$! > > > wine game > > > kill -INT $xpid > > > > > >[That's OTTOMH, may not be quite right] > > > > > >I've linked that onto my desktop and run *it* to start the game. > > > Guess you could do a similar thing with xine/ogle in there > > instead of wine. > > > > > > > > > * - get this: it runs fine on Linux under wine, but I can't > > make it work > > > when I'm natively booted into XP! > > > > > > -- > > > [neil@fnx ~]# rm -f .signature > > > [neil@fnx ~]# ls -l .signature > > > ls: .signature: No such file or directory > > > [neil@fnx ~]# exit > > > > > > > > > > > > > > -- > > Psyche-list mailing list > > [EMAIL PROTECTED] > > https://listman.redhat.com/mailman/listinfo/psyche-list > > > > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Messenger Popups
http://gaim.sf.net Cheers, Patrick On Fri, 2003-01-24 at 06:11, Buck wrote: > I have a problem in Windows that outside users are popping up ads from > windows messenger. I am wondering if there is a similar product in > RedHat that might be having the same problem. Or, is Red Hat safe from > that junk? > > Thank you, > > Buck > > > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
RE: I am ready to throw my mouse out the window!
Red Hat 8 automagically adds a USB mouse to your X configuration in case it was not plugged in during install (you used a PS/2 mouse during install or something). If you don't use it you can safely remove it. Cheers, Patrick On Fri, 2003-01-24 at 17:24, Buck wrote: > I don't know, install set it up that way. > > Buck > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > On Behalf Of Aaron Konstam > Sent: Friday, January 24, 2003 9:57 AM > To: [EMAIL PROTECTED] > Subject: Re: I am ready to throw my mouse out the window! > > On Thu, Jan 23, 2003 at 01:17:58PM -0500, Buck wrote: > > Boy, Linux is case sensitive. I didn't know that section existed. I > am > > still new to Linux. > > > > Section "InputDevice" > > Identifier "Mouse0" > > Driver "mouse" > > Option "Protocol" "IMPS/2" > > Option "Device" "/dev/psaux" > > Option "ZAxisMapping" "4 5" > > Option "Emulate3Buttons" "no" > > EndSection > > > > Section "InputDevice" > > Identifier "Mouse1" > > Driver "mouse" > > Option "Device" "/dev/mice" > > Option "Protocol" "IMPS/2" > > Option "Emulate3Buttons" "no" > > Option "ZAxisMapping" "4 5" > > EndSection > > > > > > Those are the only two sections that appear to be the mouse. > > > > Well, there is one more, at the top of the page: > > > > Section "ServerLayout" > > Identifier "Anaconda Configured" > > Screen 0 "Screeno" 0 0 > > InputDevice "Mouse0" "CorePointer" > > InputDevice "Mouse1" "SendCoreEvents" > > InputDevice "Keyboard0" "CoreKeyboard" > > EndSection > > > > I changed the screen resolution to 800 x 600 and now the mouse makes > it > > across the screen while still on the pad, but I still have to swing my > > hand all the way across the pad. > > > > My XP mouse moves across the screen with a movement of only 1.5 > inches. > > > > Thanks for the help > > > > Buck > Why are there two clausesr? Are you using two different mice? > -- > --- > Aaron Konstam > Computer Science > Trinity University > 715 Stadium Dr. > San Antonio, TX 78212-7200 > > telephone: (210)-999-7484 > email:[EMAIL PROTECTED] > > > > -- > Psyche-list mailing list > [EMAIL PROTECTED] > https://listman.redhat.com/mailman/listinfo/psyche-list > > > > > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: where is the malsync conduit?
If you mean the SyncMal plugin for jpilot check here: http://jasonday.home.att.net/code/syncmal/syncmal.html Cheers, Patrick On Mon, 2003-01-27 at 13:23, Ricardo Carrillo Cruz wrote: > Hi > > I want to synchronize my palm m125 with avantgo servers.I used > to sync my palm with jpilot,that included malsync plugin. > Is there any malsync conduit in gnome-pilot package¿? > > Thanks in advance,specially to those who helped me to set my > gnome-pilot conduits working > > - > Tu cuenta de correo gratuita Mixmail http://mixmail.ya.com > Ya.com ADSL, Router U.S. Robotics ¡Gratis! http://acceso.ya.com/adsl > > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Open Office & JRE 1.4.1
On Tue, 2003-01-28 at 13:47, Jean Francois Martinez wrote: > > Given how long OpenOffice takes to load and how slow it is at relatively > trivial tasks I shudder when thinking about a "complete" > openoffice and still more when thinking that the missing parts would > be i Java. Until the performance problems of openoffice (I am not > suggesting they are in openoffice problem, they could originate in > components used in openoffice) aren't solved, a complete openoffice is > more likely to deter people from using Linux than to attract them. > > > JFM Iirc OpenOffice.org version 1.0.2 enjoys significant speed increases compared to version 1.0.1. Cheers, Patrick -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Open Office & JRE 1.4.1
I have not yet seen a 1.0.2 srpm on rawhide or somewhere else. Truetype Fonts and the menus in 1.0.2 look quite good although I don't know if that should be classified as "supporting anti-aliasing". Get the tarball and the specfile from the 1.0.1-8 srpm on rawhide and give it a shot if you have a really fast box :) Cheers, Patrick On Tue, 2003-01-28 at 14:42, Jean-Eric Cuendet wrote: > > Iirc OpenOffice.org version 1.0.2 enjoys significant speed increases > > compared to version 1.0.1. > > Do you know of a RH8 build that has anti-aliasing? > -jec > > > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: NFS Install
I think this is what you do: 1) insert disc1 and cp -R /mnt/cdrom 2) insert disc2 and cp -R /mnt/cdrom 3) insert disc3 and cp -R /mnt/cdrom You need to overwrite TRANS.TBL with the one from disc3 because that one has all translations. Check the release notes or readme files on disc1. It is in there somewhere. Cheers, Patrick On Tue, 2003-01-28 at 17:06, Justin Clacherty wrote: > Does it need TRANS.TBL in the RedHat and RedHat/RPMS directories. There is > one on each disk so they overwrite each other. > > Justin. > > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: How best to enable/enter special characters via compose ordead keys?
Yeah, that's a tricky one. I remember that it took me ages to find an answer. Did you try #linuxnewbies on irc? I forgot how to do it other than that it has to do with this command: xmodmap -e 'keycode 113 = Multi_key' Do a google search on xmodmap and keycodes Hope this helps somewhat :) Cheers, Patrick On Wed, 2003-01-29 at 05:35, Randall J. Parr wrote: > How best to enable and/or enter special character in X apps > (gnome-terminal, xterm, ...) on Red Hat 8.0 via either compose key > sequences and/or dead keys? > > I have been googling and reading X docs but have not been able to get it > working. > > Thanks > > R.Parr > Temporal Arts > > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: How best to enable/enter special characters via compose ordead keys?
found a nice url here: http://www.uni-ulm.de/~s_smasch/X11/input8bit.html Cheers, Patrick On Wed, 2003-01-29 at 05:35, Randall J. Parr wrote: > How best to enable and/or enter special character in X apps > (gnome-terminal, xterm, ...) on Red Hat 8.0 via either compose key > sequences and/or dead keys? > > I have been googling and reading X docs but have not been able to get it > working. > > Thanks > > R.Parr > Temporal Arts > > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
NForce2 kernel support on RH8?
Hello, Recently I bough an Asus A7N8X Deluxe (nforce2 chipset), Athlon XP2100, 1Gig mem system and installed Phoebe3 for the fun of it. That sort of works. IDE performance sucks, the sound sort of works on only 2 channels and the second NVidia nic needs a binary driver (yuck). I decided to move back to RH8 and after installing it there is no sound support, IDE performance sucks even more than Phoebe3 and lm_sensors has no clue about nforce2 smbus chip so no monitoring rpms, voltages and temps with gkrellm :( Question: is there a rawhide srpm kernel that supports the nforce2 IDE chipset and can be rebuild and used on a RH8 system? Or do I need to build 2.4.21-pre5-ac3 with lm_sensors cvs which seems to support all this funky stuff? Thanks! Patrick -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Converting Outlook PST files...
On Fri, 2003-03-14 at 11:19, Neil Loffhagen wrote: > Thanks for that. Have now got my Outlook 2000 to connect to the IMAP server on the > redhat box and have started to move folders from the pst file to the IMAP server and > can see them from my Evolution client, but not my sylpheed client. > > What is disappointing or maybe it's the way the IMAP is set up, but can't create sub > folders (this is the same from Evolution ot Outlook 2000)? I can create loads of > individual folders, but if I want to create a folder underneath a created folder > will not let me? For example I'd like to have a folder structure like: > > inbox > linux > redhat > mandrake > debian > friends > john > paul > george > > I can create the linux and friends folders, but it won't let me create the redhat, > mandrake, debain, etc. sub-folders. > > Is there a way round this? Maybe with a different IMAP server or with different > settings? > > Part of the reasoning behind this exercise is that in time we will be moving from > Exchange 5.5 to a Linux based email server. Not sure which one yet. Mainly need to > have email and contacts, possibly calendering. Have looked at Samsung Contact, but > it dos not yet run on redhat 8.0. > > Thanks, > > Neil. > Hi Neil, I tried this a while back also and there are indeed some challenges. By far I am no expert but this is what I recall. First, I don't think that the uw-imap that comes default with RH supports folders in folders while the main folder contains email also. So this will not work with uw-imap: linux --> psychelist (which is a mbox file containing email) (dir) --> mandrake (which is a directory) | --> mandrakelist (which is a mbox file w/ email) Once you keep in mind that you can not have email files and directories in an uw-imap directory than you will overcome a major hurdle. What worked for me was making the directory tree with squirrelmail (these dirs live in your dir). Next in each directory use the touch command to create the mbox file. This worked for me: linux --> redhat (which is a directory) (dir) | --> touch psychelist (which is a mbox file w/ email) Next add this imap account to Evolution and you should be almost there. Subscribe to the proper folders. Copying email from a plain mbox file in Evolution to an imap folder didn't work for me. You had to select all the emails manually and then select copy and paste them into the imap folder. You can overcome these limitations by installing a more sophisticated imap server on your box. E.g. courier-imap. I looked into it but it seemed like I needed a degree in quantum hocus pocus to get it going There is a courier-imap, postfix howto out there. Try google and have something available to cool your brain :) If you want an easier way, have a look at libpst. Search on www.sf.net for libpst. It takes a pst file as input and generates mbox files according to its structure. You can then import those mbox files directly into Evolution. Problem is that you will not have your email on the imap server so not accessible through a web interface (squirrelmail). But off course you can copy the emails from Evolution to your imap server. Back to square 1 :) I used libpst a long time ago and then it didn't really handle attachments and dates correctly so make backups and test first. Finally, I don't know which imap server your company is going to use but you may want to have a look at samsungcontact.com (I've no affiliation). It's a full blown Exchange killer that runs on virtually any unix, linux (Red Hat 7.3 or Advanced Server, Suse and prolly others). Yes, it's commercialware but it beats the hell out of M$ pricing (way cheaper and first 5 users are free) and it has a sophisticated imap server that understands Outlook for 100% so you could have copied all your folders to it in a breeze. You will also still have all the workgroup/groupware functionality that you had with the Exchange & Outlook combo. Afaik this also applies to the commercial Insight Server product from bynari.net. Good luck! Patrick -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: changing the LANG setting so that man pages work
iirc env LANG=C is used for the csh shell and LANG=C export LANG is used for the bash shell Cheers, Patrick On Mon, 2002-10-21 at 22:17, Robert P. J. Day wrote: > On 21 Oct 2002, Jim Hayward wrote: > > > alias man='env LANG=C man' > > all right, i've seen folks setting local environment variables with > the "env" prefix and i have to ask, what is the difference between: > > $ env LANG=C command > $ LANG=C command > > or is there a difference? i've never needed the "env" shell command, > so what is it for, besides aesthetics? > > rday > > > > -- > Psyche-list mailing list > [EMAIL PROTECTED] > https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Firewall troubles under RH8
First try service iptables stop and make sure Apache does listen on an IP address other than 127.0.0.1. Then work your way back to a secure access solution. Cheers, Patrick On Tue, 2002-10-22 at 12:45, Kitesmurf wrote: > I'm using RH8 from a clean install. I've got Apache2 running and can > connect to it via localhost without any problem. However, as soon as I > try to connect to it via the computer's actual IP address, I get a > "Connection refused" error message. I checked the security/firewall > settings and turned it off; checked the hosts.allow/deny files but to no > use. Well, pretty new to Linux, so could anyone file me in what I'm > missing please? > > > > > > -- > Psyche-list mailing list > [EMAIL PROTECTED] > https://listman.redhat.com/mailman/listinfo/psyche-list
Re: xmms segfaults on startup (clean Install, up2date is up to date)
Maybe you forgot to install some library that xmms depends on? Have a look at ldd xmms and see what libraries xmms depends on. Do you have all those libs installed? Alternatively try strace xmms and see if the output gives you a clue. Cheers, Patrick On Tue, 2002-10-22 at 13:58, John BouAntoun wrote: > Hi guys, > > Just ran into a slight problem. > > Decided to do yet another clean install of the RH8.0 on my system. > > All went well. > > Updated all the packages tht up2date wanted to update (I kept the rpms on another >disk). > > Anyway I go to start xmms and it segfaults with the following message > > > [john@nkotb john]$ xmms > > Segmentation fault > > You've probably found a bug in XMMS, please visit > http://bugs.xmms.org and fill out a bug report. > > > I checked bugs.xmms.org and there does indeed seem to be somebody else who has >submitted a bug that says "segfaults on startup in red hat 8". But that bug has been >resolved as WORKSFORME, that is, the bug has been resolved because they coudln't >reproduce it. > > Has anyone else ran into this problem? And is there any use in me bugzilla-ing it in >the redhat bugzilla database? > > I just don't understand. It was working an hour ago, all I did was a new clean >install (formated the ext3 partition again) and updated all the packages (including >the kernel) that up2date wanted. > > Help here would be much appreciated > > John > > >
Re: Problems with XWindows
capslock is on? You did choose MD5 passwords and shadow passwords during the upgrade? You did not select NIS, Ldap etc as the authentication method? If you can log into a plain console as root, check your authentication method with authconfig and check the /etc/passwd, /etc/group, /etc/shadow, /etc/gshadow files Cheers, Patrick On Tue, 2002-10-22 at 15:42, Rimas wrote: > Hi folks, > > I have upgraded RH 7.3->RH 8.0 and now I cannot login wihr any user to the > KDE or Gnome. > > What can be a problem? > > Thank you > > > Rimas > > > > > -- > Psyche-list mailing list > [EMAIL PROTECTED] > https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Gnome-terminal font frustrations
Iirc the directory should be .fonts and not fonts ^^^ (dot) Cheers, Patrick On Fri, 2002-10-25 at 03:42, John P Verel wrote: > > On 10/24/02 20:59 -0400, John P Verel wrote: > > > > On 10/24/02 10:40 -0400, Nalin Dahyabhai wrote: > > > > > You can find it by grepping through /usr/X11R6/lib/X11/fonts/*/fonts.dir, > > > but I'll save you the trouble: > > > /usr/X11R6/lib/X11/fonts/misc/10x20-ISO8859-1.pcf.gz > > > > > > I'd suggest using 10x20.pcf.gz instead, though, as it contains the > > > information for all of the ISO8859 alphabets (-1 and -15 included) in a > > > single font file. > > Much obliged! Thanks. > Just tried it and does not seem to work: > > I created ~./fonts, copied both files shown above to it, gunzipped same. > File contents are now: > > total 528 > drwxrwxr-x2 john john 4096 Oct 24 21:37 . > drwx-- 111 john john 8192 Oct 24 21:36 .. > -r--r--r--1 john john25816 Oct 24 21:37 10x20-ISO8859-1.pcf > -r--r--r--1 john john 494552 Oct 24 21:34 10x20.pcf > > When I go to the gnome-terminal General tab, no new fonts show up. > > What did I do wrong? > > John > > > > -- > Psyche-list mailing list > [EMAIL PROTECTED] > https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Samba
Try turning off any proxy settings in your browser, activate swat in ntsysv and restart xinetd. Cheers, Patrick On Mon, 2002-11-04 at 08:16, Steven Rubenstein wrote: > I run the "Samba Configuration Tool" (which runs /usr/bin/htmlview) and get > > Could not connect to host 127.0.0.1 (port 901) > > Seems like I had this working a while ago. Is there something simple > I'm missing? > > SJR > > > > -- > Psyche-list mailing list > [EMAIL PROTECTED] > https://listman.redhat.com/mailman/listinfo/psyche-list
Re: type1 fonts like AARELBI_.PFB
Little script to convert to lowercase attached. Please check the script before using and do not forget to do a chmod u+x ./convert_lowercase.sh Cheers, Patrick On Fri, 2002-11-08 at 05:39, Jim Christiansen wrote: > > Well, I just can't seem to get type1 fonts to register if they are in full > caps like ... > > AAABBB__.24 > AAABBB__.48 > AAABBBI_.24 > AAABBBI_.48 > AAABBBI_.PFB > AAABBBI_.PFM > AAABBB__.PFB > AAABBB__.PFM > AAABBEY_.24 > AAABBEY_.48 > AAABBEY_.PFB > AAABBEY_.PFM > AAABBI__.24 > AAABBI__.48 > AAABBI__.PFB > AAABBI__.PFM > AAABOB__.24 > AAABOB__.48 > AAABOBI_.24 > AAABOBI_.48 > AAABOBI_.PFB > AAABOBI_.PFM > AAABOB__.PFB > AAABOB__.PFM > > -- > Psyche-list mailing list > [EMAIL PROTECTED] > https://listman.redhat.com/mailman/listinfo/psyche-list #!/bin/sh # # delete spaces from filenames # for i in *.[Tt][Tt][Ff]; do mv "$i" `echo $i | tr -d ' '`; done # # delete & from filenames # for i in *.*; do mv "$i" `echo $i | tr -d '&'`; done # # delete ! from filenames # for i in *.*; do mv "$i" `echo $i | tr -d '!'`; done # # delete underscores from filenames # # for i in *.*; do mv "$i" `echo $i | tr -d '_'`; done # # delete minus signs in filenames # for i in *.*; do mv "$i" `echo $i | tr -d '-'`; done # # now convert all files to lowercase # for i in *.[Tt][Tt][Ff]; do mv "$i" `echo $i | tr '[A-Z]' '[a-z]'`; done # # end #
Re: Problem with rebuilding rpm database
In /var/lib/rpm delete __db.00{1,2,3} and try again. Cheers, Patrick On Sat, 2002-11-09 at 19:07, Dusan Djordjevic wrote: > Hi all, > > I have problem with rebuilding database. I had a problem with > installation of a rpm and i killed a process. Since rpm database became > unusable i tried to rebuld rpm database (rpm -rebulddb). But process > doesn't do anything. It made a directory /var/lib/rpmrebuilddb.25695 > which is empty, and process doesn't look like it works anything. Any > idea ? > -- > Eng. Dusan Djordjevic (RHCE) > > > > -- > Psyche-list mailing list > [EMAIL PROTECTED] > https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Psyche FAQ (was: Re: Problem with rebuilding rpm database)
On Sun, 2002-11-10 at 06:14, Brian K. Jones wrote: > On Saturday 09 November 2002 6:17 pm, Joe Klemmer wrote: > > On Sat, 2002-11-09 at 13:11, Patrick wrote: > > > > I have problem with rebuilding database. I had a problem with > > > > installation of a rpm and i killed a process. Since rpm database became > > > > unusable i tried to rebuld rpm database (rpm -rebulddb). But process > > > > doesn't do anything. It made a directory /var/lib/rpmrebuilddb.25695 > > > > which is empty, and process doesn't look like it works anything. Any > > > > idea ? > > > > > > In /var/lib/rpm delete __db.00{1,2,3} and try again. > > > > I definitely nominate this for the FAQ. > > I think something like this belongs in the FAQ, but these kinds of answers > piss me off, because they fail to explain *why* you need to do this. I sent that answer. Unfortunately I do not know why. Just how to solve it. If you had read the bugzilla entry and another link both in another answer then iirc there is not even an answer from Red Hat as to why this is happening. Or I did not understood it :) If this > can be explained, I'd love to add it in with the explanation. > > I think there's a lot of this that goes on in the interest of peoples' time > and brevity and stuff, but in the end I think the choice is basically: give > users a fish and they'll eat for a day, *teach* them to fish, and they'll eat > forever. > > Answers like this are just 'giving fish'. This is fine on a list where you > just want an answer FAST and to hell with why, but I think an FAQ should > strive for a little bit more. > Cheers, Patrick
Re: Vaio sound
Paul, Although the answer is simple (a couple of links found on google), you may have to do some fiddling to get this to work: http://www.dynalabs.de/mxp/vaio/ http://www.shallowsky.com/vaiotricks.html http://www004.upp.so-net.ne.jp/t-kinjo/vaio/index_e.html http://www.stevebarr.com/cgi-bin/cgiwrap/barrst/goto.pl?c1vnlinks Cheers, Patrick On Sun, 2002-11-10 at 08:21, Paul H Upton wrote: > Hi guys new to the list so apologies if this has been asked before. > > I have got a Sony Vaio PCG-Z600LEK and need to get the jogdail working so that I can >adjust volume and screen brightness. > > I also need to get apm working so that when I shut the lid the unit goes into >standby > > I am a Linux convert from Windows XP so plain and simple answers are the order of >the day here > > Paul > > --- > Outgoing mail is certified Virus Free. > Checked by AVG anti-virus system (http://www.grisoft.com). > Version: 6.0.417 / Virus Database: 233 - Release Date: 08/11/2002 >
Re: running java program at startup
You could try to start it from within Gnome's (if you use that) Sessions menu --> Startup Programs. Cheers, Patrick On Mon, 2002-11-11 at 23:59, Stephen Mah wrote: > Trying to run this configuration utility as a part of starting X. > > java file.jar & > > running this manually works, but if I add this to the .bashrc, it will > not run unless I have a konsole window open. > > any ideas? > > > > > -- > Psyche-list mailing list > [EMAIL PROTECTED] > https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Oracle Collaboration suite on RH8
Neil, Have a look at http://www.samsungcontact.com Cheers, Patrick On Thu, 2002-11-14 at 18:16, Neil Loffhagen wrote: > Hi, > > Someone on the list suggested Oracle Collaboration suite as a > replacement for Exchange 5.5. > > > I find it very interesting that in going to the Oracle site > and then to their web store, in trying to find a UK price for the suite > I'm told the following: > > Operating System not Supported > The operating system that you are using is not supported by this > application. In order to co-navigate, you need either Windows > 98/NT/2000/XP/ME or Macintosh OS 9 (Netscape 4.5+ browser only) > > Anyway, I was wondering if anyone has had practical experience of making > the transition? I've looked at the Oracle site and it all looks good on > paper, but is it really as good in reality and easy (or at least fairly > easy) to make the transition? > > Or would anyone recommend another replacement for Exchange? I'm trying > to persuade those in control of the money that rather than replace the > old existing NT 4.0 box that runs Exchange 5.5 with Windows 2000 and > Exchange 2000 we should put in RH8 and run a mail server of some type, > whether sendmail, postfix or another. I'm not which would be best. > This is only for a small company with 1 server and 14 clients. > > Thanks, > > Neil. -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: EXT3 errors -- is this drive dying?
If your disk supports S.M.A.R.T get smarttools. Check freshmeat.net for its whereabouts. With smarttools you should be able to get a detailed report on what is going on with the life expectancy of your disk. Cheers, Patrick On Tue, 2002-11-19 at 04:38, Peter Blomgren wrote: > I'm seeing EXT3 errors: > > kernel: hda: dma_intr: status=0x51 { DriveReady SeekComplete Error } > kernel: hda: dma_intr: error=0x40 { UncorrectableError }, LBAsect=81156390, >sector=21233872 > kernel: end_request: I/O error, dev 03:06 (hda), sector 21233872 > kernel: EXT3-fs error (device ide0(3,6)): ext3_get_inode_loc: unable to read inode >block - inode=1325185, block=2654234 > kernel: EXT3-fs error (device ide0(3,6)) in ext3_reserve_inode_write: IO failure > kernel: EXT3-fs error (device ide0(3,6)) in ext3_new_inode: IO failure > kernel: hda: dma_intr: status=0x51 { DriveReady SeekComplete Error } > kernel: hda: dma_intr: error=0x40 { UncorrectableError }, LBAsect=81156390, >sector=21233872 > kernel: end_request: I/O error, dev 03:06 (hda), sector 21233872 > kernel: EXT3-fs error (device ide0(3,6)): ext3_get_inode_loc: unable to read inode >block - inode=1325186, block=2654234 > kernel: EXT3-fs error (device ide0(3,6)) in ext3_reserve_inode_write: IO failure > kernel: EXT3-fs error (device ide0(3,6)) in ext3_new_inode: IO failure > > Is this drive dying, or can it be saved? (Kernel 2.4.18-14) > > -- > \Peter. > >/"\ | Peter Blomgren >\ / ASCII ribbon campaign | Assistant Professor > X against HTML mail | San Diego State University >/ \ and postings | http://terminus.sdsu.edu/ > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Unremovable File
The "t" at the end is the sticky bit iirc. Remove that with: chmod o-t carctl and then you can rm it. Cheers, Patrick On Sun, 2002-12-01 at 22:14, LaJchon McRight wrote: > ls -l cardctl produces > > ?-wxrw-rwt53199348647150934865028638 Dec 311969 > cardctl > > > Thomas Molina wrote: > > >On Sun, 1 Dec 2002, LaJchon McRight wrote: > > > > > > > >>Thanks for the suggestion. Gave chattr a try but still unable to delete > >>the file. Is there any other possible way to delete a file when the > >>permissions have ben scrambled? > >> > >> > > > > > > > > > >I've not heard that before. What does ls -l show? > > > > > > > > > > > > > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
sendmail & trusted-users weirdness
Hi, I added a username to /etc/mail/trusted-users, next added define(`confCT_FILE', `-o /etc/mail/trusted-users') to sendmail.mc, then did m4 /etc/mail/sendmail.mc > /etc/mail/sendmail.cf and restarted sendmail. Yet, if I send out an email with evolution 1.2 I still see in the headers of the recipient's email the warning: X-Authentication-Warning: myhost: user set sender to some_other_email_address using -f In /etc/mail/sendmail.mc I have: define(`confCT_FILE', `-o /etc/mail/trusted-users') In /etc/mail/sendmail.cf I see: # # Trusted users # # # this is equivalent to setting class "t" Ft-o /etc/mail/trusted-users Troot Tdaemon Tuucp Any ideas? Many thanks, Patrick -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: sendmail
Look in /etc/mail/sendmail.mc and make sure the following line has "dnl" in front of it. Like this. dnl # DAEMON_OPTIONS(`Port=smtp,Addr=127.0.0.1, Name=MTA')dnl Then remake sendmail.cf by following the instructions at the start of the sendmail.mc file and don't forget to restart sendmail. If you had looked in the release notes, you would have known... Cheers, Patrick On Sun, 2002-12-08 at 13:29, Samuel A. Fineberg wrote: > I know I am probably missing something obvious, but I am having > trouble setting up a sendmail server on rh 8.0. I have the server set > up and configured, and sendmail is running in daemon mode. However, > whenever a system tries to attach to port 25 of my machine it gets a > "connection refused." If I try to attach to port 25 of "localhost" it > does work, but if it doesn't work if I try to attach to my real IP > address from the host itself or any other hosts. It seems to me that > there is something preventing external connections to port 25, but I > can't figure out what's doing it. > > Thanks, > Sam -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: RH Frontend for Windows
Try vmware. Cheers, Patrick On Mon, 2002-12-09 at 17:17, Alberto M. R. Davila wrote: > Dear All, > > I am looking for a graphical frontend to run RH in Windows > machines... I know Tarantella but would like to know if there is > any freeware I could use ? Any suggestions ? > > Thanks, Alberto > > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: RH Frontend for Windows
Now I think of it, you can probably also use vnc or tightvnc. Users will need to login to a box running RH though. Cheers, Patrick On Mon, 2002-12-09 at 18:22, Alberto M. R. Davila wrote: > Thanks ! > > We have a windows world here, then I wanted to have my linux server used > by the users with Windows machines, that way... they dont need to install > RH in each machine... > > vmware is shareware I will give it a try, if anyone know about a freeware, > please kindly let me know. > > Cheers, Alberto > > > At 08:56 AM 12/9/02 -0800, you wrote: > > >--- "Alberto M. R. Davila" > ><[EMAIL PROTECTED]> wrote: > > > Dear All, > > > > > > I am looking for a graphical frontend to run RH in > > > Windows > > > machines... I know Tarantella but would like to know > > > if there is > > > any freeware I could use ? Any suggestions ? > > > >I'm not sure about freeware, but I might recommend > >vmware. Just out of curiousity, why would you want to > >run linux inside of windows, and not the other way > >around? > > > > > >= > >Kevin C. McConnell --RHCE-- > > > >__ > >Do you Yahoo!? > >Yahoo! Mail Plus - Powerful. Affordable. Sign up now. > >http://mailplus.yahoo.com > > > > > > > >-- > >Psyche-list mailing list > >[EMAIL PROTECTED] > >https://listman.redhat.com/mailman/listinfo/psyche-list > > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Fail to boot RH8-cd on an IBM A31P laptop
It may be that the A31P does not boot from images bigger than 1.44Mb. iirc the RH8 boot cd (cd#1) has a boot image bigger than 1.44Mb. Your problem is similar to mine with a Toshiba Tecra 8000. It will only boot 1.44Mb images. Sigh, pretty annoying stuff. You will have to make a boot floppy. Or bug IBM to put some brains in their bios :) Cheers, Patrick On Wed, 2002-12-18 at 09:10, Stephan Deckers wrote: > I recently got an IBM A31P laptop from my boss and want > to install RH8.0 on it. I already installed Windows XP > professional and Windows XP Home editon, and I can boot > the XP cd without any problems. Trying to boot the RH8 cd > fails, and the Windows boot menu appears. It seems like the > bootloader is searching the CD, because I can see some > activity. I burned the RH8 cd's a couple of weeks ago, and > installed RH8 on my previous laptop, an IBM A31M, to see > if it would give any problems. Booting from the RH8-cd #1 > and installing Linux didn't give any problem. > > If I boot from the CD on a Dell precision 220 workstation it > boots without a problem. > > Is there a problem with the A31P BIOS ? I searched the web > (especially the IBM.com) but I can't find anything pointing > to that. > > I am able to boot from a RH6.2 cd. Why can I boot from > a RH6.2 cd and not from a RH8 cd ? > > Has anyone experienced the same ? > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Oxygen VX1 firmy 3DLabs on linux?
Hi, Check: http://www.xfree86.org/4.2.0/Status3.html#3 >From a little Google research: I think the VX1 has a Glint R3 processor so it should work. This driver is already included in XFree86 in RH8. Don't know about RH7.3 Cheers, Patrick On Fri, 2002-12-20 at 13:19, ZbyszekP wrote: > Hello psyche-list, > > I need info about drivers for Oxygen VX1 firmy 3DLabs video card on > linux or this card works property on RH > > -- > Best regards, > ZbyszekP mailto:[EMAIL PROTECTED] > > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Another redhat-config-date problem
Hi, Last week I briefly turned on ntp in redhat-config-date to check the skew of my clock. Then I switched back when I saw that the clock was correct. Since then the time jumps to current time + 1 hour. Every time I set the clock to the right time, it jumpes back to current + 1 hour. What is causing this and how do I kill this behavior. Thanks, Patrick -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: RH8 on Toshiba Tecra 8000
Hi Oli, I installed 7.3 and 8.0 on a Tecra 8000 from cd and nfs. Never had any problems except for getting the sound going. Check on www.laimbock.com and search for tecra and you will find an article describing how to get it going. I did have to use boot floppies as booting from cd doesn't work on my Tecra. If you have more questions I'll be happy to try and answer them. Cheers, Patrick On Sun, 2002-12-22 at 15:34, Olafur Sigurgeirsson wrote: > Anyone installed RH8 on Toshiba Tecra 8000 laptop ?? > It always crashes when doing post install in mine, tried text mode, CD > install, ftp installyou name it. > I dont have the screen dump here, but it looks like a kernel crash. > So if anyone have done this successfully please let me know. > Older RedHat and Mandrake never had any problems on this laptop. > > BR > Oli > > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: The Strange Case Of The Installed Yet Uninstalled Package
http://sourceforge.net/projects/whichcd/ Cheers, Patrick On Fri, 2003-01-03 at 18:10, Lionel Barrow wrote: > I just went to www.sourceforge.net and did a search and came up with 0 > zero results. Do you have a direct link? > > One other thing, I noticed that you are both a MCSE and RHCE. How much > do you use either in your day to day business? I am most interested in > RHCE as I have been thinking about becoming certified. Thanks in > advance. > > Salty1 > > > > On Fri, 2003-01-03 at 12:17, Jesse Keating wrote: > > On Friday 03 January 2003 06:02, Lionel Barrow uttered: > > > This might be off topic slightly but you mentioned a whichcd command. I > > > tried running it just now and apparently it is not installed. What > > > package did you get the whichcd command from? > > > > It's a 3rd party tool, found at sourceforge. -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Unable to boot - Stuck at "GRUB"
You can define device swaps in grub.conf with the map command. Check info grub, the manpages etc. A quick Google gave e.g. this link: https://listman.redhat.com/pipermail/valhalla-list/2002-June/003173.html Cheers, Patrick On Mon, 2003-01-06 at 09:47, Neil Bird wrote: > Around about 05/01/2003 21:39, Tommy McNeely typed ... > > [root@cookies root]# grub-install --recheck /dev/sda > >Hmm. I had a problem when I first set up grub under RH8 in that I > boot my ABit mobo from an ATA66 I/F (IDE 3 of 4). > >When I boot from CD (to install/rescue), /dev/hda -> (hd0) and my > boot drive hde -> (hd1). But when I set my BIOS to boot from 'EXT' > (ATA66, hde), it swapped the order, so that hda->(hd1) and hde->(hd0). > >This meant that for install & rescue, grub sees the 'wrong' mappings, > and the boot grub fails (as the boot drive is no longer correct). I > finally figured this out after various 'find's inside the boot grub, and > just changed the grub.conf nos. to the 'swapped' versions. > >However, it does mean (I think) that I have to run grub [shell] by > hand, and do init/setup manually too. > > >How *should* I be running grub-install, and can I fiddle this > device.map to make it work more straightforwardly? > > -- > [neil@fnx ~]# rm -f .signature > [neil@fnx ~]# ls -l .signature > ls: .signature: No such file or directory > [neil@fnx ~]# exit > > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: rawrite
I am not sure if RH supports Pentium class computers. Please check the hardware compatibility list on redhat.com if a P75 is supported at all. Cheers, Patrick On Tue, 2003-01-07 at 13:13, Gerard Zwart wrote: > Hi folks, > > This will be my first time installing RH. > I was told to take and old P75 or so, with 64Mb. > > And so I did, unfortunately it is too old to boot up from CD. > No problem I thought, I make a bootbable flop, and this was described > in the readme also. > > But here comes my poblem, after 5 different floppy's and 3! Differente > stations on 3 different PC's I keep on getting the message "Controller > Failed" > > This is what I do: > > Rawrite > and then enter image location and name : > g:\images\boot.img > target: a: > then I put a fres formatted flop in the station and > press ENTER > after a while about 3 minutes being busy, I get this > message : " Controller has failed" > > Anybody knows what is happening, how to solve this, or any other > ways to make a bootable diskette. > > Thx in advance and chers to all. > > Gerard > Netherlands > [EMAIL PROTECTED] > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: rawrite
Sorry, my mistake. Must have confused it with something else. Cheers, Patrick On Wed, 2003-01-08 at 01:28, Dennis Gilmore wrote: > i installed on a p166 the other day. its fairly slow and i didnt install > x but it installed. it will be used as a mail server. why would they > not support pentium class proccessors? > > Dennis > > On Wed, 2003-01-08 at 12:13, Patrick wrote: > > I am not sure if RH supports Pentium class computers. Please check the > > hardware compatibility list on redhat.com if a P75 is supported at all. > > > > Cheers, > > Patrick > > > > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
RE: Stupid question??
Did you try looking for the specs of your monitor on the Net. If you find them, you can use those values. Cheers, Patrick On Thu, 2003-01-09 at 12:20, Gerard Zwart wrote: > Ok,a lot of settings there, what calues should I give for hsync (Hz) en > vsync (khz)?? > The refresh rate could go to 75 Herz > > > -Oorspronkelijk bericht- > Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Namens Dusan Djordjevic > Verzonden: donderdag 9 januari 2003 12:56 > Aan: [EMAIL PROTECTED] > Onderwerp: Re: Stupid question?? > > > > * ddcprobe returned bogus values: > > ID: None > > Name: None > > HorizSync: None > > VertSync: None > > It cannot properly determine monitor. Try > > redhat-config-xfree86 --help > > which will list all options. Try setting some of them manually. > -- > Eng. Dusan Djordjevic (RHCE) > > > > -- > Psyche-list mailing list > [EMAIL PROTECTED] > https://listman.redhat.com/mailman/listinfo/psyche-list > > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: PHP 4.3 rpms
Try the rawhide directory on ftp.redhat.com. If they are not there, you will have to slap them together yourself. Cheers, Patrick On Wed, 2003-01-08 at 22:51, Nadim Bitar wrote: > Where can i download the php 4.3 rpms (php,php-mysql,php-ldap ...) > thanks > > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: 2 questions
On Thu, 2003-01-09 at 08:14, Rigoberto de la Cruz wrote: > 1. I have downloaded some archives from the list. this > archives are in mbox file format (right?), so the > question is: what program is best to read the file? > less?? if so, then it's a pain to go thru each > message. > Iirc mbox is a pretty standard mailer format so you should be able to read them properly. I know you can read them with Eurora on Windows and probably on several mail apps on Linux. > 2. when I connect to the web thru my modem, i get a > very solw conection. the downloads are way slower > compared to when I'm running linux. is there anyway to > check at what speed I connected? Is it a mozilla > problem? what should I do to check my settings? by the > way, the modem is not a winmodem > I think you can check it in /var/log/messages. Alternatively, if you use Gnome, you can install the "Modem Light" applet in the Gnome taskbar. That should give you some additional info. > > thanks in advance, > > Rigo > Cheers, Patrick -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Space
Hi, Why not make/do the presentations with OpenOffice on RH8? If there are bugs in OpenOffice/RH8 that keep you from doing this, wait for a couple more weeks and get the upcoming 1.0.2 release. Perhaps this release will solve your problems. Cheers, Patrick On Thu, 2003-01-09 at 15:48, Ekow Oppon wrote: > Hi Guys, > Had compaq Armada M700. Partitioned for Linux and Windows 98. > Probably gave very little (over 2 GB or les) to the Win98. > Chunk of the partition went to RH8.0. Unfortunately, Cannot > run excel and MSWord/Powerpoint simultaneously because WIN98 > runs out of memory. > The question is can I squueze some of the hard drive out of > my RH partition so that I can re-install Win98 and get more > memory. I have come too far to re-install RH8.0 again. > > Just as a matter of interest... Need windows mostly for presentations > outside my box. Realized that staroffice/openoffice ppt misbehaves when > loaded on windows. > Your imput much appreciated. > > > "A man who won't die for something is not fit to live" > Dr Martin Luther King Jr. > ### > # Dr. Ekow Oppon # > # Dept of Human Genetics # > # Univ. of Cape Town. Med. School # > # Observatory. 7925. # > # South Africa. # > #Tel +27 21 4066506 Cell +27 83 3404277 Fax +27 21 4480906 # > **# > > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
RE: Stupid question??
Which model? d2835a, d2835s, d2836a (don't know if these are the only ones). Check the label on the back and check this url: http://www.monitor.support.hp.com/monitorsupport/level4/142mmb134en.pdf It may be the manual for your monitor and it cuold have the values you are looking for. Horizontal: 30-69kHz Vertical: 50-160Hz ONLY use these values (you can blow up your monitor if they are wrong!) if you are sure that these values REALLY belong to YOUR monitor. Use at own risk. Cheers, Patrick On Thu, 2003-01-09 at 16:01, Gerard Zwart wrote: > Yes I did try, couldn't find. It's a HP Ultra VGA 1280 17' > > Any ideas where to look? > > > -Oorspronkelijk bericht- > Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Namens Patrick > Verzonden: donderdag 9 januari 2003 17:56 > Aan: [EMAIL PROTECTED] > Onderwerp: RE: Stupid question?? > > > Did you try looking for the specs of your monitor on the Net. If you find > them, you can use those values. > > Cheers, > Patrick > > > On Thu, 2003-01-09 at 12:20, Gerard Zwart wrote: > > Ok,a lot of settings there, what calues should I give for hsync (Hz) > > en vsync (khz)?? The refresh rate could go to 75 Herz > > > > > > -Oorspronkelijk bericht- > > Van: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED]] > > Namens Dusan Djordjevic > > Verzonden: donderdag 9 januari 2003 12:56 > > Aan: [EMAIL PROTECTED] > > Onderwerp: Re: Stupid question?? > > > > > > > * ddcprobe returned bogus values: > > > ID: None > > > Name: None > > > HorizSync: None > > > VertSync: None > > > > It cannot properly determine monitor. Try > > > > redhat-config-xfree86 --help > > > > which will list all options. Try setting some of them manually. > > -- > > Eng. Dusan Djordjevic (RHCE) > > > > > > > > -- > > Psyche-list mailing list > > [EMAIL PROTECTED] > > https://listman.redhat.com/mailman/listinfo/psyche-list > > > > > > > > -- > Psyche-list mailing list > [EMAIL PROTECTED] > https://listman.redhat.com/mailman/listinfo/psyche-list > > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: slow bootup
It's probably a name resolving issue of (iirc) your hostname (check with command hostname). If sendmail can't contact the configured dns server to resolve your hostname, it will wait (hang if you like) until the dns query times out. This can occur when you use dialup to the Net with a modem and you have the ISP's dns server configured as your dns but you are not online so the ISP's dns server can not be contacted. Which makes sense during boot-up. You may want to put your hostname + ip address in /etc/hosts. Make sure /etc/host.conf says "order hosts, bind" (without the quotes). Alternatively check your dns settings and /etc/resolv.conf Cheers, Patrick On Fri, 2003-01-10 at 15:50, Anton Piatek wrote: > When booting, my machine takes ages to start sendmail and smclient... > can anyone help me diagnose why..? where are the config/log files for > these services, and why would they take 90 seconds or more each to > start? > > i have a static ip on the network so i dont understand why sendmail > should take so long > -- > Anton Piatek | [EMAIL PROTECTED] > | > [EMAIL PROTECTED]| Dept of Mathematics, > | Imperial College, > 07900-951-627 | London, UK > --- > Wise men speak when they have something to say. > Fools speak when they have to say something. - Plato > > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Firewall
Have a look at http://firestarter.sf.net The version for Gnome2 seems to come along quite nicely. Cheers, Patrick On Wed, 2003-01-15 at 17:22, vasyl wrote: > Hi, All! > I'm using RedHat 8.0 and i want to use a Firewall? Where should i beginn? > Thanks! > Vasyl > > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: playing a DVD using freshrpms rpms
Iirc, RH8 uses OSS sound drivers so when ogle tries to access alsa it crashes because there is no alsa active on RH8. Try using OSS sound drivers or playing without sound to see if it works then. Cheers, Patrick On Sat, 2002-10-05 at 13:09, Robert P. J. Day wrote: > > i'm trying to play a DVD using the freshrpms RPMs, > and here's how far i get. > > based on the dependencies, i've installed: > > libdvdcss > libdvdread > alsa-lib > ogle > ogle_gui > > when i brought up ogle and tried to open and play a DVD, > i did in fact get the first several seconds of DVD content > (the obligatory FBI warning, blah blah), followed by an abort, > with the xterm output of ... > > > Build: Linux 2.4.18-14 #1 Wed Sep 4 12:13:11 EDT 2002 i686 athlon Sun Sep 29 >11:26:27 EDT 2002 mmx Xv oss alsa > Runtime: Linux 2.4.18-14 #1 Wed Sep 4 13:35:50 EDT 2002 i686 i686 > Note[ogle_ctrl]: ogle 0.8.5 > Debug[ogle_ctrl]: Started /usr/lib/ogle/ogle_gui with pid 18258 > Debug[ogle_ctrl]: Started /usr/lib/ogle/ogle_nav with pid 18259 > Debug[ogle_ctrl]: Started /usr/lib/ogle/ogle_mpeg_ps with pid 18260 > Debug[ogle_ctrl]: Started /usr/lib/ogle/ogle_vout with pid 18261 > Debug[ogle_vout]: CLK_TCK: 100 > Debug[ogle_nav]: Opening DVD at "/dev/dvd" > libdvdread: Using libdvdcss version 1.2.2 for DVD access > libdvdread: Using libdvdcss version 1.2.2 for DVD access > Debug[ogle_nav]: sending audio demuxstream 7 > Debug[ogle_nav]: oid: bd, ost: 80, nid: bd, nst: 87 > Debug[ogle_nav]: sending subp demuxstream 31 > Debug[ogle_mpeg_ps]: newid private: > Debug[ogle_mpeg_ps]: oldid private > > libdvdread: Attempting to retrieve all CSS keys > libdvdread: This can take a _long_ time, please be patient > > libdvdread: Get key for /VIDEO_TS/VIDEO_TS.VOB at 0x0159 > libdvdread: Elapsed time 1 > libdvdread: Get key for /VIDEO_TS/VTS_01_0.VOB at 0x01d9 > libdvdread: Elapsed time 0 > libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x0222 > libdvdread: Elapsed time 0 > libdvdread: Get key for /VIDEO_TS/VTS_02_0.VOB at 0x0024f54f > libdvdread: Elapsed time 0 > libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x00251264 > libdvdread: Elapsed time 1 > libdvdread: Get key for /VIDEO_TS/VTS_03_0.VOB at 0x0025ac14 > libdvdread: Elapsed time 0 > libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x0025ac62 > libdvdread: Elapsed time 1 > libdvdread: Get key for /VIDEO_TS/VTS_04_0.VOB at 0x0025cf34 > libdvdread: Elapsed time 0 > libdvdread: Get key for /VIDEO_TS/VTS_04_1.VOB at 0x0025cf82 > libdvdread: Elapsed time 0 > libdvdread: Get key for /VIDEO_TS/VTS_05_0.VOB at 0x0025da67 > libdvdread: Elapsed time 1 > libdvdread: Get key for /VIDEO_TS/VTS_05_1.VOB at 0x0025dab5 > libdvdread: Elapsed time 0 > libdvdread: Get key for /VIDEO_TS/VTS_06_0.VOB at 0x0026e310 > libdvdread: Elapsed time 1 > libdvdread: Get key for /VIDEO_TS/VTS_06_1.VOB at 0x0026e35e > libdvdread: Elapsed time 0 > libdvdread: Get key for /VIDEO_TS/VTS_07_0.VOB at 0x00279e6a > libdvdread: Elapsed time 1 > libdvdread: Get key for /VIDEO_TS/VTS_07_1.VOB at 0x00279eb8 > libdvdread: Elapsed time 1 > libdvdread: Get key for /VIDEO_TS/VTS_08_0.VOB at 0x002a31bb > libdvdread: Elapsed time 0 > libdvdread: Get key for /VIDEO_TS/VTS_08_1.VOB at 0x002a3209 > libdvdread: Elapsed time 0 > libdvdread: Get key for /VIDEO_TS/VTS_09_0.VOB at 0x002c9745 > libdvdread: Elapsed time 1 > libdvdread: Get key for /VIDEO_TS/VTS_09_1.VOB at 0x002c9793 > libdvdread: Elapsed time 0 > libdvdread: Get key for /VIDEO_TS/VTS_10_0.VOB at 0x002cd076 > libdvdread: Elapsed time 1 > libdvdread: Get key for /VIDEO_TS/VTS_10_1.VOB at 0x002cd0c4 > libdvdread: Elapsed time 0 > libdvdread: Get key for /VIDEO_TS/VTS_11_0.VOB at 0x002d4801 > libdvdread: Elapsed time 1 > libdvdread: Get key for /VIDEO_TS/VTS_11_1.VOB at 0x002d484f > libdvdread: Elapsed time 0 > libdvdread: Get key for /VIDEO_TS/VTS_12_0.VOB at 0x002d9d1b > libdvdread: Elapsed time 1 > libdvdread: Get key for /VIDEO_TS/VTS_12_1.VOB at 0x002d9d69 > libdvdread: Elapsed time 0 > libdvdread: Get key for /VIDEO_TS/VTS_13_0.VOB at 0x0032ab70 > libdvdread: Elapsed time 1 > libdvdread: Get key for /VIDEO_TS/VTS_13_1.VOB at 0x0032abbe > libdvdread: Elapsed time 0 > libdvdread: Found 13 VTS's > libdvdread: Elapsed time 12 > Debug[ogle_ctrl]: _new stream bf, 0 > Debug[ogle_ctrl]: _new stream e0, 0 > Debug[ogle_ctrl]: Started /usr/lib/ogle/ogle_mpeg_vs with pid 18266 > Debug[ogle_mpeg_vs]: Using MMX accelerated media functions > ## video_stream:req cap > video_dec: shmid: 31359035 > video_dec: data_buf shmid: 31293497 > ## video_stream:got cap and stream > vs: get ouput buffer > Debug[ogle_
About the Menu Editor
Hi, Iirc work is in progress to get RH8 users out of the woods with a shiny brand spanking new Menu Editor. Is there an ETA for this much wanted app? Any cvs repositories where I can have a look? It would be really cool if the menu editor can be called from kickstart with parameters so sysadmins can roll out systems that come preconfigured with the menu layout they need. Cheers, Patrick
Re: Problem with ISO 3
Hi, I had something similar. Downloaded iso #3 with a correct md5sum but had to burn it a couple of times with my plextor 24/10/40. The cdwrite was successful only after I had taken a brand new cdrw disk and set the plextor to write at 2x. So the previously used erased cdrw disk would not work. Perhaps there was an issue with that cdrw disk but I am not sure. I verified the correct write by successfully copying every file on the mounted cdrw disk to a harddisk. OS was RH7.3 and I used xcdroast. Cheers, Patrick On Tue, 2002-10-08 at 03:11, Balandar Magister Officiarum wrote: > > >On Mon, 07 Oct 2002 19:17:49 -0500, Balandar Magister Officiarum wrote: > > > > > Where did you download your ISO's from? For some reason I have been > > > unable to burn a cd correctly once. Every time I run media check it > > > says Fail. Even when I run it on different computers. Are there any > > > programs out there that can test whether you burn a cd correctly or > > > not? Maybe something that changes all 0's to 1's or every other bit > > > and then scans the cd for errors? > > > >Did you verify your downloaded ISO images with md5sum[.exe] and > >compare the MD5 fingerprints with those in the MD5SUMS file? > > > > Yes. They all show as correct, but for some reason I cannot burn an iso > without it having some problem or another. > > Wonder if anyone has the Plexwriter 40/12/40A... >
Re: rpm --rebuild ?
Nick Try rpmbuild --rebuild Cheers, Patrick On Tue, 2002-10-08 at 16:59, Nick Lomonte wrote: > > Hi all, > > As usual, first thing I do after a new RedHat install is install the > nvidia drivers. However this time, I can't rebuild the kernel rpm. > > [root@aardvark nick]# rpm --rebuild > --rebuild: unknown option > > What the heck am I missing? That's quit puzzling. I have the kernel > source installed. Anything else I need? > > > > > > > > -- > Psyche-list mailing list > [EMAIL PROTECTED] > https://listman.redhat.com/mailman/listinfo/psyche-list
Re: kernel compile questions
On Mon, 2002-10-14 at 03:42, Jack Bowling wrote: > cp /usr/src/linux-2.4.19/System.map /boot/System.map-2.4.19 > rm -f /boot/System.map > ln -s System.map-2.4.19 System.map Iirc RH selects the proper System.map automagically at boot depending on the kernel it used so no need to do the rm -f ... & ln -s ... > > Try that. > > jb > > -- > Jack Bowling > mailto: [EMAIL PROTECTED] Cheers, Patrick
Redhat 8.0, PHP, Apache 2 and MySQL
Hello, I have seen some people on the list trying to get PHP, MySQL, and Apache 2 working together on Redhat 8.0. I have it all running together on many boxes. I wrote a guide at: http://www.patrickservices.com/software/guides/guides.html if anyone is interested. I wrote this mainly for myself, but others may be able to use it. Mark Patrick Patrick Computer Services -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Redhat 8.0, PHP, Apache 2 and MySQL
Keith, I like to compile Apache and PHP from source because it allows me to easily remove and add modules. It just gives me tighter control on what is and is not included in the compiled software. As an example, I sometimes need to include Informix support in PHP and a clean compile from source is the best way (for me) to do it. Once I have my script setup with correct paths and such, it is a snap to recompile things exactly the way I want them. - Mark Mark Patrick wrote: > Hello, > I have seen some people on the list trying to get PHP, MySQL, and Apache > 2 working together on Redhat 8.0. I have it all running together on many > boxes. > > I wrote a guide at: > http://www.patrickservices.com/software/guides/guides.html if anyone is > interested. I wrote this mainly for myself, but others may be able to > use it. Mark, Your guide is very detailed and helpful. However, I was wondering why you recompiled all the packages from source? Other than the upgrade of PHP to 4.3 from 4.2.2, were there some options you needed that were not in the default Red Hat packages? I have that mix running on several servers using the default Red Hat packages. Best Regards, Keith -- LPIC-2, MCSE, N+ We drive on this highway of fire Got spam? Get spastic http://spastic.sourceforge.net Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Samba books
O'reilly has a good Samba book, and you can download it compleetly in PDF from theire site Patrick Op di 21-01-2003, om 13:06 schreef Jason Dale: > Hi all : > > Does anyone have an excellent Samba book to recommend ? > ( A tutorial / reference book all in one ) > > I am considering getting that Linux Samba server admin book > from the Craig Hunt Library. > > Any suggestions ? > > Regards , Jason -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg.gz Registered Linux User #44550 http://counter.li.org signature.asc Description: Dit berichtdeel is digitaal gesigneerd
RE: RPM stops responding
Brian Sounds like the RPM db is corrupted. Try to rebuild the RPM db using instructions at: http://www.rpm.org/hintskinks/repairdb/ >> Hello, >> >> I just tried to rpm -e my MySQL 3.x rpms in preparation for MySQL 4 >> when I ran into a bit of trouble. >> >> After trying to # rpm -e mysqlclient9-3.23.22-6 I ended up having to >> kill -9 the process after 15 minutes since it seemed to stop >> responding. >> >> Now every time I try any rpm query/update/delete, the process goes into >> sleep mode and has to be terminated with a kill -9. The output of ps >> does not show any "rpm" commands running, and lsof shows the following >> rpm-related files in use when rpm isn't stuck in sleep mode: >> >> /usr/lib/python2.2/site-packages/rpm404module.so >> /usr/lib/librpm-4.0.4.so >> /usr/lib/librpmdb-4.0.4.so >> /usr/lib/librpmio-4.0.4.so >> >> Any ides how I can get rpm responding once more? I'd like to avoid a >> reboot, if at all possible. >> >> Best regards, >> Brian Curtis Mark Patrick Patrick Computer Services P.O. Box 1466, Stafford, VA 22555 Phone: (866) 761-7450 EMail: [EMAIL PROTECTED] Homepage: http://www.patrickservices.com/software/software.html -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Setting up a file server
You need to edit your smb.conf file /etc/samba/smb.conf with your favorite editor. It's documented, and if not, you can use 'info smb.conf' for more information on what should go in the appropriate places. Patrick On Wed, 2003-01-22 at 17:45, Buck wrote: > I am trying to setup Linux as a file server for a home network > called "wildlife". Deer is my HP 9900 running Windows XP PRO and Tiger > is an HP 6545 running Windows XP Pro. Both of these computers are > networked in the workgroup called "Wildlife". My third computer is a > Compaq Presario 5000 running Red Hat Linux 8.0, but I didn't have > opportunity to give it a workgroup or name. I would like to call it > "Penguin" and put it on wildlife too, but I haven't figured that one out > yet. > > I installed Linux as a server on the Compaq and had it install > Gnome, Networking and System Management at the same time. When I boot > the Compaq it comes up to the Gnome desktop. I found services and > started SMB which now loads every time I boot the computer. When I > look at Microsoft Windows Network in Deer, it shows two workgroups -- > wildlife and Mygroup. When I look at wildlife, I get Deer and Tiger. > But when I look at Mygroup, it takes a long time to tell me "Mygroup is > not accessible. You might not have permission to use this network > resource. Contact the administrator of this server to see if you have > access permissions. The network path was not found." > > I created a folder under /home/buck called shared and placed a > file in it. I set all the sharing properties to Read Write and Execute. > I still get the same message when I try to access it. I looked for a > way to change the password for "buck", the user name I use to sign onto > deer to see if that would allow me to have access to Penguin, but I > can't see a way to do that in Gnome and I don't have access to the > command line. > > Thank you all again for your help. > > Sincerely, > > Buck > > > > > > > > -- > Psyche-list mailing list > [EMAIL PROTECTED] > https://listman.redhat.com/mailman/listinfo/psyche-list -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: hostname
/etc/sysconfig/network Op vr 17-01-2003, om 18:51 schreef Steve Sykes: > This is a very stupid question, I have read the man page, but it doesn't > seem to agree with what I am seeing. > Where is hostname set? I have my net setup for dhcp, the > server/gateway(windows) has the hosts file but the ip addresses and > names don't agree with it. > > I even tried shutting off all computers, booting the dhcp/gateway then > bringing up the others one at a time. This didn't work either, one of > the computers has the correct ip but the wrong hostname. > > Can someone point me where to look? > > -- > Regards, > > Steve Sykes > Field Engineer, Harris Corporation > Abu Dhabi, UAE > Red Hat 8.0 > Registered Linux User #94482 http://counter.li.org -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg.gz Registered Linux User #44550 http://counter.li.org signature.asc Description: Dit berichtdeel is digitaal gesigneerd
Battery on Laptop
Hi, I'm having trouble to work with my laptop, in windows i can work for about 3 hours on battery but in Linux 1,5 hours. Are there some sugertions to work longer with the battery. Patrick -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg Registered Linux User #44550 http://counter.li.org -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Battery on Laptop
I'm using kernel 2.4.18-24.7, with RH 7.3. I have found a linux user website with almost the same laptop a Acer Aspire 1300LC. There was suggestion for using the NoflushD deamon and rtdvs. Is this a good idee? Op wo 05-02-2003, om 04:51 schreef Bret Comstock Waldow: > Hi, > > I searched and located this discussion of differing battery > technologies, and some aspects of using them in laptops: > http://www.laptopsagain.com/laptop_battery_tips.htm > > It doesn't address Linux specific power saving issues, but might help > with battery aging issues and with the perennial "always discharge them > completely" discussion. > > You haven't mentioned which linux kernel you are using, from which > distribution, on which laptop. Tools available in one aren't available > in another, alternatives may not be implemented in your model of laptop, > etc. Could you tell us that sort of thing to start? > > Meaning no criticism by this, notice that with what you've told us so > far, about all anyone could tell you is "go read" 8-) > > If you can provide more specific information, someone might provide more > specific answers. > > Cheers, > Bret -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg Registered Linux User #44550 http://counter.li.org -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
S3 video drivers
Hi, i have downloaded the S3 twistervideo driver for XFree86 4.1.0 X Server, it contains two files: s3switch savage_drv.o but i have no idee what to do with those files , there is no readme with it. Patrick -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg Registered Linux User #44550 http://counter.li.org -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Battery on laptop - solution question
Hi, Last week i ask a question about the working time with battery and linux. I got some url's . I found a website of a debian user that have the same Laptop model Acer. Aspire 1304. I need Athlon PowerNow! support for AMD mobile AMD Athlon(tm) XP 1800+ It suggest to use RTDVS, but it looks dangerous. http://kabru.eecs.umich.edu/rtos/energyaware.html Has one on the list experiance whit this ? Patrick -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg Registered Linux User #44550 http://counter.li.org signature.asc Description: Dit berichtdeel is digitaal gesigneerd
PGP
Hi, I have search the website of gnupg.org and Ximain.org but found no answer, and have tried the evolution list -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
PGP
Hi, I have search the website of gnupg.org and Ximain.org but found no answer, and have tried the evolution list -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
PGP
Hi, I have search the website of gnupg.org and Ximain.org but found no answer, and have tried the evolution list -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Sorry, but evolution screws my emails to this list
-- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
PGP
Hi, I have search the website of gnupg.org and Ximain.org but found no answer, and have tried the evolution list -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Empty mails
Hi, sorry if my mails are empty, but its only on this list. The mail in my send items looks fine. Patrick -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg Registered Linux User #44550 http://counter.li.org signature.asc Description: Dit berichtdeel is digitaal gesigneerd
Digital signature
Hi, I have search the website of gnupg.org, ximain.org, but found no answers. I have a friend who send me e-mails digital signed with pgp 8.0 from outlook on a Windows 200 or XP pc. I have his public key imported into ggp 1.2.1 (can send hem encrypted messages), but i can't check his digital signature. My computer RH 7.3 and evolution 1.2.1 and gpg 1.2.1 I have tried the evolution list but no answers. Patrick -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg Registered Linux User #44550 http://counter.li.org signature.asc Description: Dit berichtdeel is digitaal gesigneerd
Re: PGP
I dit a cut and paste from a early message and then send it to this list. As you could see it turn up several times empty or some text was gone Retyping the text just put it fine on the list Patrick Op di 11-02-2003, om 15:11 schreef Piero Calucci: > On Tue, 2003-02-11 at 14:44, Patrick Marquetecken wrote: > > Hi, > > > > I have search the website of gnupg.org and Ximain.org but found no > > answer, and have tried the evolution list > > so what's the question? > > btw Evolution does not screw *my* emails to this list ... what did you > do with it ? > > Piero -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg Registered Linux User #44550 http://counter.li.org signature.asc Description: Dit berichtdeel is digitaal gesigneerd
Re: Digital signature
> Hi, > > Outlook doesn't support OpenPGP. Period. There are ugly hacks (by PGP > and others) that include the signed and encrypted messages in the body > of the message, but that invites new problems. He uses pgp 8.0 not openpgp. > > I just select the content, paste it to a file, and then verify/decrypt. It's a idee > > And evolution doesn't screw my emails either... Well it dit. I dit a cut and paste from a older mail into a new one and it ended empty on this list, not once but several times !! I send some e-mails to friends as test and the were good. It was just that e-mail to this list, wy ?? When i typed it over it went well. > > Rui -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg Registered Linux User #44550 http://counter.li.org signature.asc Description: Dit berichtdeel is digitaal gesigneerd
Re: Digital signature
> I'm talking about the functionality, not a specific program :) Is there a way to use signed messages between the platforms ?, i would like to use it in our company. > > > > I just select the content, paste it to a file, and then verify/decrypt. > > It's a idee > > > > > > And evolution doesn't screw my emails either... > > Well it dit. I dit a cut and paste from a older mail into a new one and > > it ended empty on this list, not once but several times !! > > I send some e-mails to friends as test and the were good. It was just > > that e-mail to this list, wy ?? > > When i typed it over it went well. > > I don't know... I never experienced such weird behaviour... are you sure > you're only using stable versions of software (system, X, ... and > evolution)? I never uses unstable version my knowledge is not good enough to play around. RH 7.3 and Evolution 1.2.1 I must say i have rebooted my computer after the problems, and hope its a one time event, it never happend before. > > Rui -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg Registered Linux User #44550 http://counter.li.org signature.asc Description: Dit berichtdeel is digitaal gesigneerd
Re: Digital signature
The little time i have used Kmail i dit not found any problems. > Has anyone noticed that Kmail doesn't handle pgp/gpg signed/encyphered mail > "correctly"? It doesn't do it using mime headers, it just drops it into the > mail stream. Is there a correction for this in the works? > -- > << MCT >> Michael C Tiernan [EMAIL PROTECTED] > Now a Free Agent http://world.std.com/~mtiernan > > Sometimes when I get direction from management I have to stop, take a deep > breath, and ask myself what MacGyver would do in a situation like this. -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg Registered Linux User #44550 http://counter.li.org signature.asc Description: Dit berichtdeel is digitaal gesigneerd
Re: Digital signature
I are right, I think that the whole *nix OS and software discussions are all related to personal favor. Patrick > So i think my whole ramble is about using the client that best suites your > needs. For me, it's Kmail. For the next person, it might be Evo, and for > Joe-bob, it might be mutt. > > -- > Jesse Keating RHCE MCSE > For Web Services and Linux Consulting, Visit --> j2Solutions.net > Mondo DevTeam (www.mondorescue.org) > > Was I helpful? Let others know: > http://svcs.affero.net/rm.php?r=jkeating -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg Registered Linux User #44550 http://counter.li.org signature.asc Description: Dit berichtdeel is digitaal gesigneerd
Re: bind: Setting up DNS on a small home network
You could use webmin to configure your DNS Patrick Op wo 12-02-2003, om 14:58 schreef Diego, Emil: > Hello all, > > Does anyone know of any good documentation for installing and > configuring bind on RH 8.0 for a small home network. I have setup DHCP > successfully, so I am not completely green, but the DNS configuration looks > like greek to me. Any info would be appreciated. > > Thanx > > Emil -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg Registered Linux User #44550 http://counter.li.org signature.asc Description: Dit berichtdeel is digitaal gesigneerd
Re: Redhat 8.0 and 2Gb RAM
What kind of power supply do you have? For a configuration like this, I will put a 400W or 460W AMD approved power supply in the box. I have seen symptons like yours with a smaller power supply on similar configurations. My system has been stable for months since putting in a NMB 460W in it. > It is all PC 3200, in other words all 400MHz. I made sure I got the same > memory to avoid compatibility problems. > So, I have 4 dimms of 512Mb, PC3200. > Dimi. > > At 01:30 PM 2/17/2003 -0600, you wrote: > >Dimitri Deserranno wrote: > >>DDR Corsair memory CMX512-3200 (2 dimms) > >> > >>added: DDR Corsair memory CMX512-3200C2 400MHz (2 new dimms) > > > >I coulda sworn that I read on anandtech.com that DDR400 isn't stable > >unless it's the only DIMM in the motherboard. I think that's your > > problem. > > > >>DDR Corsair memory CMX512-3200 (2 dimms) > > > >Is this also a DDR 400 dimm, or is it DDR333 or DDR266? > > > >>ASUS A7M266-D (AMD MP recommended) (with original BIOS) > > > >Is your bios set to auto detect memory speeds? Have you tried setting it > >to 133 (DDR266)? > > > >Tom > > > > > > > >-- > >Psyche-list mailing list > >[EMAIL PROTECTED] > >https://listman.redhat.com/mailman/listinfo/psyche-list > > -- > Dimitri Deserranno, PhD candidate > > Department of Biomedical Engineering - Case Western Reserve University > Email: [EMAIL PROTECTED] > > Department of Cardiovascular Medicine - Cleveland Clinic Foundation > Phone: (216) 444 - 5315 > Email: [EMAIL PROTECTED] -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: samba printer & CUPS (was Re: redhat-config-printer: I can'tconfigure a working printer!)
i believe that the print job can not be written in the spool dir. Not enough privileges. Patrick Op do 20-02-2003, om 17:37 schreef Thomas Robinson: > Thanks to every body for their input. I've switched over to CUPS and got > at least one of my printers working (the local one). That was too easy. > For some reason redhat-config-printer will not work on my system. > > New Question. Does anyone know how to get a samba printer working on > cups? /etc/samba/smb.conf has: > >printcap name = cups >load printers = yes >printing = cups > > # service smb restart > > Here's what cups reports about the printer status: > > Description: HP2000C > Location: HADES > Printer State: idle, accepting jobs. > Device URI: smb://HADES/HP2000C > > When I try and print a test page I get: > > Forbidden > You don't have permission to access the resource on this server. > > Any clues? > > Thanks, > > t. > > On Wed, 2003-02-19 at 19:55, Craig White wrote: > > On Wed, 2003-02-19 at 05:29, Thomas Robinson wrote: > > > On Tue, 2003-02-18 at 15:36, Craig White wrote: > > > > On Tue, 2003-02-18 at 07:32, Thomas Robinson wrote: > > > > > On Tue, 2003-02-18 at 14:02, Tim Waugh wrote: > > > > > > On Tue, Feb 18, 2003 at 01:22:02PM +, Thomas Robinson wrote: > > > > > > > > > > > > > Hmmm...I just looked in /var/spool/lpd/hplj4 and found the lpq.0 file: > > > > > > > there is an error message in there: > > > > > > > > > > > > > > ---8<--- > > > > > > > Status: IF filter 'mf_wrapper' filter msg - 'error closing *main::STDOUT > > > > > > > at /usr/sbin/lpdomatic line 812, line 672.' at 13:02:58.929 > > > > > > > ---8<--- > > > > > > > > > > - > > > > This is from my /etc/printcap...also an HP LaserJet 4 > > > > > > > > lp|felix:\ > > > > :ml#0:\ > > > > :mx#0:\ > > > > :sd=/var/spool/lpd/lp:\ > > > > :af=/var/spool/lpd/lp/lp.acct:\ > > > > :sh:\ > > > > :lp=/dev/lp0:\ > > > > :lpd_bounce=true:\ > > > > :if=/usr/share/printconf/util/mf_wrapper: > > > > > > > > and ls -al /var/spool/lpd/lp > > > > drwx--2 lp lp 4096 Feb 16 20:35 . > > > > drwxr-xr-x4 root root 4096 Jun 1 2000 .. > > > > -rw---1 lp lp 33117 Oct 25 2001 acct > > > > -rw---1 lp lp147 May 16 2002 > > > > cfA622barney.azapple.com > > > > -rw---1 lp lp 0 May 27 2001 control.lp > > > > -rw---1 lp lp 0 May 15 2002 control.pr > > > > -rw---1 lp lp 42122 May 16 2002 > > > > dfA622barney.azapple.com > > > > -rw---1 lp lp515 May 16 2002 hfA622 > > > > -rw---1 lp lp 0 Feb 18 08:25 lock.pr > > > > -rw---1 lp lp 0 May 27 2001 log > > > > -rw---1 lp lp 0 May 15 2002 lp > > > > -rw---1 lp lp 160449 Feb 16 20:30 lp.acct > > > > -rw---1 lp lp 3141 Feb 16 00:26 lpq.0 > > > > -rw---1 lp lp688 Oct 2 23:49 mf.cfg > > > > -rw---1 lp lp 17475 Oct 2 23:49 > > > > Postscript-69120.foo > > > > -rw---1 lp lp 0 May 27 2001 status > > > > -rw---1 lp lp 1036 May 15 2002 status.lp > > > > -rw---1 lp lp 6861 Feb 16 20:35 status.pr > > > > -rw---1 lp lp 6 May 15 2002 unspooler.lp > > > > -rw---1 lp lp 6 Feb 16 20:30 unspooler.pr > > > > -rw---1 lp lp483 Oct 2 23:49 VOLATILE > > > > > > > > HTH > > > > > > > > Craig > > > > > > Craig, > > > > > > My set-up looks like yours; all except the name/alias of the printer. > > > You say yours works fine? Is there something else I'm missing? I still > > > get the error message in lpq.0 when I print. Can you check your lpq.0 > > > output by chance? > > > > > -- > > cat /var/spo
Lucent pcmcia
Hi, on my laptop i can only use my Lucent orinoco wireless pcmcia card as eth0. I configure it as netwave_cs. After running up2date i can not longer us neat to change my settings. Can anyone help me to change my setting to the wright card. System RH 7.3 USERCTL='no' DHCP_HOSTNAME='' BOOTPROTO='dhcp' HWADDR='00:02:2d:3b:e9:85' DEVICE='eth0' TYPE='Wireless' Device=eth0 ONBOOT='yes' PEERDNS='yes' CHANNEL='1' MODE='Managed' KEY='s:x' RATE='11Mb/s' IPADDR='' GATEWAY='' DOMAIN='' NAME='' NETMASK='' ESSID='' -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg Registered Linux User #44550 http://counter.li.org -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
PCMCIA network at boot
Hi, I'm trying to get my Lucent Orinoco to activate at boot time. It wont work, my network it tries to load it before pcmcia. With a script works it. My system RH 7.3 /etc/sysconfig/network-scripts/ifcfg-eth0 USERCTL='no' DHCP_HOSTNAME='' BOOTPROTO='dhcp' HWADDR='00:02:2d:3b:e9:85' DEVICE='eth0' TYPE='Wireless' Device=eth0 ONBOOT='yes' PEERDNS='yes' CHANNEL='1' MODE='Managed' KEY='s:' RATE='11Mb/s' IPADDR='' GATEWAY='' DOMAIN='' NAME='' NETMASK='' ESSID='any' /etc/modules.conf alias eth0 orinoco_cs Any advice would be fine Patrick -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg Registered Linux User #44550 http://counter.li.org -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Kernel rebuild
Hi, I'm quit new to compiling kernel and must recompile the kernel to activate my new network card and other. If i execute make menuconfig and recompile the kernel do i get the same result as the kernel .rpm from RH? Patrick -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg Registered Linux User #44550 http://counter.li.org -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Re: Kernel rebuild
Thanks, if i choose for module types are they automatic activated or do i have to do it? Patrick [EMAIL PROTECTED] wrote: >On Mon, 2003-03-10 at 03:01, Patrick Marquetecken wrote: >> Hi, >> >> I'm quit new to compiling kernel and must recompile the kernel to >> activate my new network card and other. >> If i execute make menuconfig and recompile the kernel do i get the same >> result as the kernel .rpm from RH? >copy the redhat kernel config file to get the same result as the rpm. >If you're using the same version of kernel-source of course, then you >can make menuconfig. If you're not, then you have to do a make >oldconfig first. The redhat kernel config is in /boot/config- >for the ones you've installed, and /configs for all the >others. > >HTH, >-- >Iain Buchanan >I don't want people to love me. It makes for obligations. > -- Jean Anouilh > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Digital camera question
Pavel, I have also a digital camera, and yes is a USB mass device, i could mount it as /dev/sdax, i think you must play with the file type for mounting it, it could be vfat ore something. Patrick [EMAIL PROTECTED] wrote: >Hi, > >I have Samsung digimax 410 camera. It can be connected to PC with USB cable. >According to the /var/log/messages it is recognized as USB mass storage >device and usb-storage and some scsi related modules (sg, sd_mod and >probably some others) are loaded. I see its listing in >/proc/bus/usb/devices. I read somewhere on internet that I should be able to >"just" mount it as scsi device. I tried to mount /dev/sd[a-d][1-4] as well >as /dev/sd[a-d] devices, but always got an error that it is not valid block >device. Do I need some camera specific driver? If not, how so I find the >right device to mount? Does anyone have any experience with this camera? > >Thanks, > Pavel. > > > >-- >Psyche-list mailing list >[EMAIL PROTECTED] >https://listman.redhat.com/mailman/listinfo/psyche-list > -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Mounting of vfat
hi, Whats the best way for mounting a vfat partition? I need to give several users RW on this disk. Must i give the parameters in /etc/fstab ? Patrick -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg.gz Registered Linux User #44550 http://counter.li.org pgp0.pgp Description: PGP signature
Re: two interface cards
I don't quite know why you are doing what you are doing, but if you want to push packets back to an interface, I would recommend using different subnets on the individual interfaces. What is the desired path of the packets? L2 switch? L3 router? Your Linux box can act as a bridge (same function as an L2 switch), so you need to set up your problem with the correct parameters. There are fail over scenarios with two NICs in the same subnet,sometimes with the same address, but that is a specialized condition. Please be more specific about your objectives. Cheers, Patrick On Wed, 2003-07-23 at 22:26, nauman ahmed wrote: > i am doing a project in which there are two network interface cards > configured in my red hat 8.0 machine 192.168.0.1 and 192.168.0.2 i > want thatt when i send packet from my > one card(192.168.0.1) to other(192.168.0.2) then these packets do > not reach the other card internally but rather externally i.e they > get out from my first intyer face caed take a trip of the outside > network and then my other inter face card" how could i achieve this??? > > if u don,t know the answer please tell me an appropiate mailing list > where i should > put up this question > thankyou > noma > > > __ > Do you Yahoo!? > Yahoo! SiteBuilder - Free, easy-to-use web site design software -- Psyche-list mailing list [EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/psyche-list
mounting of USB-stick
Hi, I use a USB-stick for sensitive data on my laptop. So in /etc/fstab i placed a line: /dev/sda /mnt/usb ext3 when my laptop boot i get a error: mount: /dev/sda is not a valid block device but at the end of the boot process the stick is mounted anyway. Is there a way to do it better. Thanks in advance Patrick -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg.gz Registered Linux User #44550 http://counter.li.org signature.asc Description: Dit berichtdeel is digitaal gesigneerd
login
Hi, How do i switch from text login to graphical ? TIA Patrick -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg.gz Registered Linux User #44550 http://counter.li.org signature.asc Description: Dit berichtdeel is digitaal gesigneerd
RE: mouting of USB-stick
I dit a fdisk, created a new primary partition, mkfs and changed the entry in etc/fstab to: /dev/sda1 /mnt/usb ext3 but i still have the same error at boot time mount: dev/sda1 is not a valid block device and still the device is mounted. If i manualy mount the USB-stick there is no error -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg.gz Registered Linux User #44550 http://counter.li.org signature.asc Description: Dit berichtdeel is digitaal gesigneerd
Re: mouting of USB-stick
Yes is a storage device, and start a 32 megs. I'm posting to this, because even with the error message the device is mounted Wy? I have looked into the bootlogs an kudzu mount it after the error messge. Jan 2 15:30:23 gondolin mount: mount: dev/sda is not a valid block device jan 2 15:30:23 gondolin rc.sysinit: Mounting local filesystems: failed jan 2 15:30:23 gondolin rc.sysinit: Enabling local filesystem quotas: succeeded jan 2 15:30:24 gondolin rc.sysinit: Enabling swap space: succeeded jan 2 15:30:24 gondolin rc.sysinit: Initializing firewire controller (ohci1394): succeeded jan 2 15:30:27 gondolin kudzu: Updating /etc/fstab succeeded Op do 02-01-2003, om 20:39 schreef Robert P. J. Day: > On Thu, 2 Jan 2003, Javier Gostling wrote: > > > On Thu, Jan 02, 2003 at 02:24:57PM -0500, Robert P. J. Day wrote: > > > > > ok, i have to ask ... what's a USB "stick"? i have a laptop to which > > > i attach, on occasion, a USB zip drive and a CF card via a PCMCIA/CF > > > adapter. the devices that they show up as: > > > > > > zip drive:/dev/sda4 > > > CF card: /dev/hdc1 > > > > > > when you're plugging in one of these devices, take a look at > > > the tail end of /var/log/messages -- the device name typically > > > shows up there. > > > > I presume it's an USB memory stick reader device. > > is that the proprietary sony storage device? or whose? > > rday -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg.gz Registered Linux User #44550 http://counter.li.org signature.asc Description: Dit berichtdeel is digitaal gesigneerd
Printer install
Hi, I have USR8000 broadband router, it has a internal printserver. It work fine for windows and macintosh, but i can't get it to work on my RH8 i have followd the instructions but choosed LPD /support/faqs/networking/printserver-mac.html any advice is welcom Patrick -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg.gz Registered Linux User #44550 http://counter.li.org signature.asc Description: Dit berichtdeel is digitaal gesigneerd
remote X display fails on RH8
Hi, On my RH8 i must start Xprograms of my Solaris 8box. With RH7.3 i had no problem. I have stopt iptables on the Linux box xhost +solarisbox rlogin to the solaris box DISPLAY=ip export ip then start the program, but nothing happens, not even a error message. Patrick -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg.gz Registered Linux User #44550 http://counter.li.org signature.asc Description: Dit berichtdeel is digitaal gesigneerd
RE: remote X display fails on RH8
it's a typo its export DISPLAY i've used the solution of Tommy and used the FQDN for xhost and everything works fine again. Patrick Op do 09-01-2003, om 19:32 schreef Pavel Rozenboim: > > -Original Message- > > From: Patrick Marquetecken [mailto:[EMAIL PROTECTED]] > > Sent: Thu, January 09, 2003 8:00 PM > > To: Psyche redhat > > Subject: remote X display fails on RH8 > > > > > > Hi, > > > > On my RH8 i must start Xprograms of my Solaris 8box. > > With RH7.3 i had no problem. > > I have stopt iptables > > on the Linux box xhost +solarisbox > > > > rlogin to the solaris box > > DISPLAY=ip > > export ip > Do you mean 'export DISPLAY' ? > > Also I think display setting should be ip: (usually 0) > > > > then start the program, but nothing happens, not even a error message. > > > > Patrick > > > > > > > > -- > > Knowledge in a databank,is like food which is in a deepfreeze. > > Nothing comes out better than what is initially put in. > > > > PGP Key: http://users.pandora.be/rivendell/marquetp.gpg.gz > > Registered Linux User #44550 > > http://counter.li.org > > -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg.gz Registered Linux User #44550 http://counter.li.org signature.asc Description: Dit berichtdeel is digitaal gesigneerd
Gaim and MSN
Hi, i have just installed Gaim 0.59.1 from the RH8 cd's but i can't find out how to connect to MSN. The website of says it possible, do i need a extra plugin ore so? but i can't find it. Patrick -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg.gz Registered Linux User #44550 http://counter.li.org signature.asc Description: Dit berichtdeel is digitaal gesigneerd
Re: Gaim and MSN
Works great, thanks alot Op zo 12-01-2003, om 20:05 schreef Scott Kindley: > On Sun, 2003-01-12 at 13:58, Patrick Marquetecken wrote: > > Hi, > > > > i have just installed Gaim 0.59.1 from the RH8 cd's but i can't find out > > how to connect to MSN. The website of says it possible, do i need a > > extra plugin ore so? but i can't find it. > > > > Patrick > > Prior to logging in click "plugins" then load the "libmsn" plugin from > the list. > > Then click "accounts" prior to signing on and setup your information. -- Knowledge in a databank,is like food which is in a deepfreeze. Nothing comes out better than what is initially put in. PGP Key: http://users.pandora.be/rivendell/marquetp.gpg.gz Registered Linux User #44550 http://counter.li.org signature.asc Description: Dit berichtdeel is digitaal gesigneerd
HTTP, FTP, and SSH services (connection refused errors)
Hello everyone, Any idea why I cant connect to HTTP, FTP, or SSH remotely on my Redhat 8.0 machine? I have the firewall disabled for the time being, rebooted and still no connection allowed. Keep getting connection refused errors at above ports. Local network systems can use the services properly, just not remotes (out of our domain). Remotes can, however, ping the machine successfully. Anyone have any ideas where to look? I have racked my brain on this for two days. All help is greatly appreciated. Mark Patrick -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list