I need to install Oracle 9i or 10 on Red Hat Enterprise 4 and Debian I have heard the process is real buggy with the Oracle installation displaying numerous error messages which require updates from Oracle which I am told you can only get if you are Oracle support. Anyone out there with experience installing Oracle on Red Hat and Debian? Fred evil grin :> ------------------------------ Message: 5 Date: Sun, 19 Feb 2006 17:45:19 -0800 (PST) From: Kenneth Subject: Re: /dev/zero To: Main PLUG discussion list Message-ID: <20060220014519.22620.qmail@web50708.mail.yahoo.com> Content-Type: text/plain; charset=iso-8859-1 Ummm, only do that if you're trying to lose everything on hda... --- Kevin Brown wrote: > > The same thing happened with /dev/random > > what should I open it with? > > cat /dev/urandom > /dev/hda > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > evil grin :> > --------------------------------------------------- > PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us > To subscribe, unsubscribe, or to change you mail settings: > http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com ------------------------------ Message: 6 Date: Sun, 19 Feb 2006 19:39:09 -0700 From: Dennis Kibbe Subject: Re: uninstall red hat enterprise? To: Main PLUG discussion list Message-ID: <200602191939.10071.dennisk@linuxquestions.net> Content-Type: text/plain; charset="utf-8" On Sunday 19 February 2006 17:56, Cat Chapman wrote: > If you're dual-booting with Windows you could always use PartitionMagic. > It's pretty expensive, but you can find it on any filesharing service if > you're into that sort of thing. PMagic works great. Just format the > partition/drive that has RedHat on it and you're good. > But if Lilo/Grub's config was on RedHat's drive, that's another story... > > -Cat No need to resort to proprietary software. F/OSS tools are available to do the job. There are three things you want to do. 1. Remove the Red Hat partiton(s) 2. Resize the Windows Partition System Rescue CD can handle the first two and might have tools to: 3. Restore the original MBR. fdisk /mbr will do that and make the Primary DOS partition bootable. If you run into trouble Smart Boot Manager is your friend. If you have the Red Hat CDs this document on unistalling might help. http://tinyurl.com/k7cyo Dennisk ------------------------------ Message: 7 Date: Sun, 19 Feb 2006 19:51:19 -0700 From: Darrin Chandler Subject: Re: /dev/zero To: Main PLUG discussion list Message-ID: <43F92EA7.4080105@stilyagin.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Kenneth wrote: >Ummm, only do that if you're trying to lose everything on hda... > > >>>The same thing happened with /dev/random >>>what should I open it with? >>> >>> >>cat /dev/urandom > /dev/hda >> >> >>evil grin :> >> >> What he *meant* was: # dd if=/dev/random of=/dev/hda bs=512 count=1 which still provides a good lesson about /dev/random. :) -- Darrin Chandler | Phoenix BSD Users Group dwchandler@stilyagin.com | http://bsd.phoenix.az.us/ http://www.stilyagin.com/ | ------------------------------ Message: 8 Date: Sun, 19 Feb 2006 22:16:42 -0500 From: Mike Subject: Re: /dev/zero To: Main PLUG discussion list Message-ID: <200602192216.42472.bmike101@cox.net> Content-Type: text/plain; charset="iso-8859-1" For some reason I don't think that sounds like much of a good idea! On Sunday 19 February 2006 08:37 pm, Kevin Brown wrote: > > The same thing happened with /dev/random > > what should I open it with? > > cat /dev/urandom > /dev/hda > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > evil grin :> > --------------------------------------------------- > PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us > To subscribe, unsubscribe, or to change you mail settings: > http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss ------------------------------ Message: 9 Date: Sun, 19 Feb 2006 22:18:29 -0500 From: Mike Subject: Re: /dev/zero To: Main PLUG discussion list Message-ID: <200602192218.29319.bmike101@cox.net> Content-Type: text/plain; charset="iso-8859-1" for some reason I don't think I want to do that either. On Sunday 19 February 2006 09:51 pm, Darrin Chandler wrote: > Kenneth wrote: > >Ummm, only do that if you're trying to lose everything on hda... > > > >>>The same thing happened with /dev/random > >>>what should I open it with? > >> > >>cat /dev/urandom > /dev/hda > >> > >> > >> > >>evil grin :> > > What he *meant* was: > > # dd if=/dev/random of=/dev/hda bs=512 count=1 > > which still provides a good lesson about /dev/random. :) ------------------------------ Message: 10 Date: Sun, 19 Feb 2006 21:11:18 -0700 From: Mike Garfias Subject: Re: /dev/zero To: Main PLUG discussion list Message-ID: <20060220041118.GA15941@lizard.gilariver.net> Content-Type: text/plain; charset=us-ascii Its not a file, you don't open it. It is a device that spits out zeros (or random). Use dd if=/dev/zero of=/tmp/test bs=512 count=1024 then open /tmp/test with your favorite editor. You need to realize that things under /dev/ are NOT ordinary files. But unix is such that it represents everything as a file. There are four types of files: Ordinary Files (what you think of as a "file") Directories (yes, they're files too) Special Files (IO devices, terminals - think ttys, etc) Links - Symlinks & hardlinks (yes, they're "files" too!) You can't just treat them all as files, they are different. But, there are some very good reasons for representing them as files. For instance, if you wanted to listen to a wav, you could cat some.wav > /dev/mixer to send it to the mixer device. Same with a printer cat some.file.txt > /dev/lp/0 - you might not get what you expect, but it does work. Mike spoke forth with the blessed manuscript: > The same thing happened with /dev/random > what should I open it with? > > On Sunday 19 February 2006 06:44 pm, Gerard Snitselaar wrote: > > This piqued my interest: "What ?does this look > > > > > like," I thought. So I typed 'jpico /dev/zero' and guess what happened! > > > NOTHING. > > > > > > The enter went to the next line but nothing happened. No pretty colors > > > and prompt. > > --------------------------------------------------- > PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us > To subscribe, unsubscribe, or to change you mail settings: > http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss ------------------------------ Message: 11 Date: Sun, 19 Feb 2006 21:16:24 -0700 From: "A LeDonne" Subject: Re: Force user logout? To: "Main PLUG discussion list" Message-ID: <1d065ed40602192016r149d6a5fx7f4da933b2bfdd3f@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1 On 2/18/06, Kurt Granroth wrote: > On Feb 18, 2006, at 10:40 PM, Alan Dayley wrote: > > Let's say a user logged into a computer and set the screen saver > > password (My son did this against house rules to keep his siblings off > > the computer). This user is no longer available (He is now in > > bed). I > > don't know his password but I know the root password for the > > machine (Of > > course!). I want to force the user to logout so the machine can > > cleanly > > shutdown. > I suppose that depends on your definition of "clean" :-) > > # su > $ kill -9 -1 You could try kill at lower levels than -9 on the user's processes, including KDE. I've found kill -TERM (aka kill -3) to work in most cases. ------------------------------ Message: 12 Date: Sun, 19 Feb 2006 22:38:41 -0700 From: Mark Jarvis Subject: Re: Force user logout? To: Main PLUG discussion list Message-ID: <43F955E1.2090308@pvmail.maricopa.edu> Content-Type: text/plain; charset=us-ascii; format=flowed If you can pop up a terminal window and "su -" to root, you can type "init 6", and you'll get a nice, clean shutdown. -mj- A LeDonne wrote: > On 2/18/06, Kurt Granroth wrote: > >>On Feb 18, 2006, at 10:40 PM, Alan Dayley wrote: >> >>>Let's say a user logged into a computer and set the screen saver >>>password (My son did this against house rules to keep his siblings off >>>the computer). This user is no longer available (He is now in >>>bed). I >>>don't know his password but I know the root password for the >>>machine (Of >>>course!). I want to force the user to logout so the machine can >>>cleanly >>>shutdown. > > > >>I suppose that depends on your definition of "clean" :-) >> >># su >>$ kill -9 -1 > > > > You could try kill at lower levels than -9 on the user's processes, > including KDE. I've found kill -TERM (aka kill -3) to work in most > cases. > --------------------------------------------------- > PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us > To subscribe, unsubscribe, or to change you mail settings: > http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss > > ------------------------------ _______________________________________________ PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss End of PLUG-discuss Digest, Vol 8, Issue 65 ******************************************* --------------------------------------------------- PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us To subscribe, unsubscribe, or to change you mail settings: http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss