Linux-Setup Digest #57, Volume #21               Tue, 17 Apr 01 01:13:09 EDT

Contents:
  Re: My linux don't recognized the complete RAM mem ("Carlos Izcoa")
  Re: My linux don't recognized the complete RAM mem (David)
  Re: My linux don't recognized the complete RAM mem ("Carlos Izcoa")
  Re: little shell/script question (Chris Coyle)
  make dep error message (Bill Cyzwenki)
  Is tere any driver for Hp 5L printer ?? ("hushui")
  Re: BeOS + Linux + Windows 2000 - Triple boot trouble. (Steve Howie)
  Re: Is tere any driver for Hp 5L printer ?? (Alex)
  Re: HD Partitioning failure with Mdk7.2 (Stanislaw Flatto)
  Re: make dep error message (Bill Cyzwenki)
  Re: Daylight saving bug in Redhat Linux? (David Efflandt)
  Re: Is tere any driver for Hp 5L printer ?? (David Efflandt)
  Re: Modem trouble (David Efflandt)
  Re: 486 help??!! (Stephane)
  Re: Clock Drift (Stephane)
  Re: Any thoughts on a good Sparc Linux? (Stephane)
  Re: how do I change the $HOME variable? (Stephane)
  Re: How to change Display configuration for X? (Stephane)
  Can Oracle 8/8i be installed on Red Hat 7.0? (Dino Hsu)

----------------------------------------------------------------------------

From: "Carlos Izcoa" <[EMAIL PROTECTED]>
Subject: Re: My linux don't recognized the complete RAM mem
Date: Mon, 16 Apr 2001 21:31:53 -0400

I already check the BIOS but i don't know what is the memory hole!
i also did the  append="mem=64M" in the lilo.conf file without lucky.
please let me know what other thing i can do

"David" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]...
> Carlos Izcoa wrote:
> >
> > Actually after install the linux the the PROCINFO tell me that the
system
> > have 16meg of RAM.
> > but the computer have 64meg of RAM.
> > what can i do in order to make the linux recognize the total of RAM
> > Carlos Izcoa
> > Puerto Rico
> > [EMAIL PROTECTED]
>
>
> Check to make sure the BIOS isn't using the memory hole. If it is
> disable it and see if that correects it. If that doesn't do it then you
> need to add a line like this to /etc/lilo.conf  just after the
> "default="  line
>
>   append="mem=64M"
>
> --
> Confucius say: He who play in root, eventually kill tree.
> Registered with the Linux Counter.  http://counter.li.org
> ID # 123538
> Completed more W/U's than 99.164% of seti users. +/- 0.01%



------------------------------

From: David <[EMAIL PROTECTED]>
Subject: Re: My linux don't recognized the complete RAM mem
Date: Tue, 17 Apr 2001 01:35:13 GMT

Carlos Izcoa wrote:
> 
> I already check the BIOS but i don't know what is the memory hole!
> i also did the  append="mem=64M" in the lilo.conf file without lucky.
> please let me know what other thing i can do


After adding the line to lilo.conf did you run lilo again to update the
MBR?

-- 
Confucius say: He who play in root, eventually kill tree.
Registered with the Linux Counter.  http://counter.li.org
ID # 123538
Completed more W/U's than 99.164% of seti users. +/- 0.01%

------------------------------

From: "Carlos Izcoa" <[EMAIL PROTECTED]>
Subject: Re: My linux don't recognized the complete RAM mem
Date: Mon, 16 Apr 2001 21:50:02 -0400

Thanks to Peter and Davis
i allready find the 16m hole in the bios and disable it and now everything
is working perfect.
thank a lot,
see you soon,
Carlos

"Carlos Izcoa" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]...
> Actually after install the linux the the PROCINFO tell me that the system
> have 16meg of RAM.
> but the computer have 64meg of RAM.
> what can i do in order to make the linux recognize the total of RAM
> Carlos Izcoa
> Puerto Rico
> [EMAIL PROTECTED]
>
>



------------------------------

From: Chris Coyle <[EMAIL PROTECTED]>
Subject: Re: little shell/script question
Date: Mon, 16 Apr 2001 21:40:34 -0400

Mike wrote:
> 
> Greetings,
> 
> i like to format a lot of text files with one call of my script (lets assume
> cat is my script). I've done the following:
> 
> find * -type f | grep txt$ | xargs cat > ahugefile
> 
> The above command writes the contents of all files that end with txt into
> one file called 'ahugefile'.
> The problem is that i like to create a new file for each sourcefile.
> How do i have to modify the above command, that each sorcefile will be piped
> into a file with a different name than the
> sourcefile?
> 
> I hope someone knows...
> Thanks in advance for any help,
> Mike.

Mike,
I think you'd have to do that with a loop. Loops can be entered on the
command line
but you may be better off to write it into a script file.
But first, note that you can do the 'grep txt$' part as command args for
find,
like this:

  find * -type f -a -name '*txt'

Now your script could look like this: (assume bash)

  for f in $(find * -type f -a -name '*txt')
  do
    foobar $f > $f.foobar
  done

Substitute the name of your file processing script for foobar, etc.
Note also that if your files are all named like 'filename.txt' then
you can replace the .txt part like this:

  ...
  do
    foobar $f > $(basename $f .txt).foobar
  done

Hope that helps.

Chris Coyle

------------------------------

From: Bill Cyzwenki <[EMAIL PROTECTED]>
Subject: make dep error message
Date: Tue, 17 Apr 2001 01:53:15 GMT

I am trying to compile kernel 2.4.2 and during the 'make dep' step I got
numerous occurences of the error message "warning: pasting would not
give a valid preprocessing token".  See a portion of my the message
below.

What does this message mean and more important, how do I fix it?  It
also occured in a few other places after this one.

Also,  other then the info pages is there any other place that explains
how the "make" command works?

make -C block fastdep
make[4]: Entering directory `/usr/src/linux-2.4.2-K1/drivers/block'
gcc -D__KERNEL__ -I/usr/src/linux-2.4.2-K1/include -Wall
-Wstrict-prototypes -O2 -fomit-frame-pointer -fno-strict-aliasing -pipe
-mpreferred-stack-boundary=2 -march=i686 -E -D__GENKSYMS__ ll_rw_blk.c
| /sbin/genksyms  -k 2.4.2 >
/usr/src/linux-2.4.2-K1/include/linux/modules/ll_rw_blk.ver.tmp
mv /usr/src/linux-2.4.2-K1/include/linux/modules/ll_rw_blk.ver.tmp
/usr/src/linux-2.4.2-K1/include/linux/modules/ll_rw_blk.ver
gcc -D__KERNEL__ -I/usr/src/linux-2.4.2-K1/include -Wall
-Wstrict-prototypes -O2 -fomit-frame-pointer -fno-strict-aliasing -pipe
-mpreferred-stack-boundary=2 -march=i686 -E -D__GENKSYMS__ blkpg.c
| /sbin/genksyms  -k 2.4.2 >
/usr/src/linux-2.4.2-K1/include/linux/modules/blkpg.ver.tmp
mv /usr/src/linux-2.4.2-K1/include/linux/modules/blkpg.ver.tmp
/usr/src/linux-2.4.2-K1/include/linux/modules/blkpg.ver
gcc -D__KERNEL__ -I/usr/src/linux-2.4.2-K1/include -Wall
-Wstrict-prototypes -O2 -fomit-frame-pointer -fno-strict-aliasing -pipe
-mpreferred-stack-boundary=2 -march=i686 -E -D__GENKSYMS__ loop.c
| /sbin/genksyms  -k 2.4.2 >
/usr/src/linux-2.4.2-K1/include/linux/modules/loop.ver.tmp
mv /usr/src/linux-2.4.2-K1/include/linux/modules/loop.ver.tmp
/usr/src/linux-2.4.2-K1/include/linux/modules/loop.ver
gcc -D__KERNEL__ -I/usr/src/linux-2.4.2-K1/include -Wall
-Wstrict-prototypes -O2 -fomit-frame-pointer -fno-strict-aliasing -pipe
-mpreferred-stack-boundary=2 -march=i686 -E -D__GENKSYMS__ DAC960.c
| /sbin/genksyms  -k 2.4.2 >
/usr/src/linux-2.4.2-K1/include/linux/modules/DAC960.ver.tmp
DAC960.c:112:59: warning: pasting would not give a valid preprocessing
token
DAC960.c:114:54: warning: pasting would not give a valid preprocessing
token
DAC960.c:126:26: warning: pasting would not give a valid preprocessing
token
DAC960.c:131:63: warning: pasting would not give a valid preprocessing
token
DAC960.c:136:44: warning: pasting would not give a valid preprocessing
token
DAC960.c:137:67: warning: pasting would not give a valid preprocessing
token
DAC960.c:1069:47: warning: pasting would not give a valid preprocessing
token
DAC960.c:1182:58: warning: pasting would not give a valid preprocessing
token


Thank you



------------------------------

From: "hushui" <[EMAIL PROTECTED]>
Subject: Is tere any driver for Hp 5L printer ??
Date: Tue, 17 Apr 2001 10:56:24 +0800

printtool doesn't support it.
When use it print file ,it is not correct.



------------------------------

From: Steve Howie <[EMAIL PROTECTED]>
Crossposted-To: alt.os.beos,alt.os.linux,comp.sys.be.help
Subject: Re: BeOS + Linux + Windows 2000 - Triple boot trouble.
Date: 17 Apr 2001 03:01:48 GMT

In comp.sys.be.help Michael Smith <[EMAIL PROTECTED]> wrote:
> On Sun, 15 Apr 2001 17:53:35 -0700, "Groman" <[EMAIL PROTECTED]>
> wrote:

>>Hi.
>>I have a tiny problem. I want to triple boot between 3 OSes installed
>>on my PC: BeOS 5.0 Personal Edition, Win2000 Pro, and Redhat Linux 6.0(Yeah,
>>I know, old,
>>but I'll update it, as soon as I get some boot managing scheme working).
>  <snip>

> Here's a HOWTO on Windows 2000 & Linux:
> http://www.enterprisedt.com/publications/dual_boot.html

> Maybe some clues here:
> http://www.computing.net/beos/wwwboard/forum/108.html

> Thanks to some great help from this NG (yea Alan N.!) I
> got my Win98, BeOS & a superset of DeadRat 7.0 booting ...
> but it required editing of lilo.conf to see the correct Linux
> partition.  

> Unfortunately that won't work for you, because Windoze NT/2000
> REALLY wants to control the boot process.  So I think your main
> trouble will be configuring boot.ini to see your BeOS partition
> and boot from same.

heres what I did:

1. Slice up your disk using FDISK into 3 partitions

2. Install W2000. Reboot and test.

3. Install BeOS from CD-ROM - it'll find the next free partition
        - remember to install Bootman! 
        - create a bootable recovery floppy (NOT the rescue diskette)
          using 'makebootfloppy'. Reboot and test.

4. Install RedSplat - finds free partition for Leenox. 
        - NB You must install the SERVER version of Redsplat to
             have the choice of putting LILO int the Linux root. 
        - Don't put LILO in the MBR

5. Boot BeOS - it'll find ALL the partitions (even linux tmp and swap). Just 
select the ones you want to appear in the boot menu by running 
'bootman' in a terminal window, and editing your choices.

6. Reboot machine to make sure the three OS's all boot. 

Key here is to 

a) Install Bootman when u install BeOS and smear over that W2K boot manager. 
   - It'll recognize W2K, BeOS and Linux. 

b) Don't install LILO in the MBR. 

Scotty
-- 
Steve Howie                                     [EMAIL PROTECTED]
Netnews and Listserv Admin                      519 824-4120 x2556
University of Guelph                    
"If it's not Scottish it's CRRRRAAAAAAAPPPPPP!"

------------------------------

From: Alex <[EMAIL PROTECTED]>
Subject: Re: Is tere any driver for Hp 5L printer ??
Date: Mon, 16 Apr 2001 23:33:23 -0400

hushui wrote:
> 
> printtool doesn't support it.
> When use it print file ,it is not correct.

With what distribution?
I used RedHat6.0-6.2, Mandrake7.2, and SuSE7.0 and 7.1. I can't remember
if Debian and Slackware... I think they also support that printer.
All of them support HP5L right out of the box.

Alex.

------------------------------

From: Stanislaw Flatto <[EMAIL PROTECTED]>
Subject: Re: HD Partitioning failure with Mdk7.2
Date: Tue, 17 Apr 2001 13:53:25 +1000

OK, lets see if I can help?
If you rely on "drek"* to do the work FOR you that what happens.
a) Is there any information on second drive? If so, copy it to first drive.
b) Invoke in Windows MS-DOS prompt, call FDISK, change to second drive (menu
selection 5) and DELETE all partitions from it.
c) Reboot.
d) Install Linux directing it to /dev/hdb IDE1(second drive in our lingo). (If
it is slave on primary interface, otherwise /dev/hdc=master on secondary IDE2,
/dev/hdd=slave on secondary IDE3)

Have fun

Stanislaw.
Slack user from Ulladulla.
*) Ask any German speaker.






------------------------------

From: Bill Cyzwenki <[EMAIL PROTECTED]>
Subject: Re: make dep error message
Date: Tue, 17 Apr 2001 03:38:25 GMT

Is my problem caused by compileing with gcc instead of kgcc?  If so, what do
I need to change to compile using kgcc?

Bill Cyzwenki wrote:

> I am trying to compile kernel 2.4.2 and during the 'make dep' step I got
> numerous occurences of the error message "warning: pasting would not
> give a valid preprocessing token".  See a portion of my the message
> below.
>
> What does this message mean and more important, how do I fix it?  It
> also occured in a few other places after this one.
>
> Also,  other then the info pages is there any other place that explains
> how the "make" command works?
>
> make -C block fastdep
> make[4]: Entering directory `/usr/src/linux-2.4.2-K1/drivers/block'
> gcc -D__KERNEL__ -I/usr/src/linux-2.4.2-K1/include -Wall
> -Wstrict-prototypes -O2 -fomit-frame-pointer -fno-strict-aliasing -pipe
> -mpreferred-stack-boundary=2 -march=i686 -E -D__GENKSYMS__ ll_rw_blk.c
> | /sbin/genksyms  -k 2.4.2 >
> /usr/src/linux-2.4.2-K1/include/linux/modules/ll_rw_blk.ver.tmp
> mv /usr/src/linux-2.4.2-K1/include/linux/modules/ll_rw_blk.ver.tmp
> /usr/src/linux-2.4.2-K1/include/linux/modules/ll_rw_blk.ver
> gcc -D__KERNEL__ -I/usr/src/linux-2.4.2-K1/include -Wall
> -Wstrict-prototypes -O2 -fomit-frame-pointer -fno-strict-aliasing -pipe
> -mpreferred-stack-boundary=2 -march=i686 -E -D__GENKSYMS__ blkpg.c
> | /sbin/genksyms  -k 2.4.2 >
> /usr/src/linux-2.4.2-K1/include/linux/modules/blkpg.ver.tmp
> mv /usr/src/linux-2.4.2-K1/include/linux/modules/blkpg.ver.tmp
> /usr/src/linux-2.4.2-K1/include/linux/modules/blkpg.ver
> gcc -D__KERNEL__ -I/usr/src/linux-2.4.2-K1/include -Wall
> -Wstrict-prototypes -O2 -fomit-frame-pointer -fno-strict-aliasing -pipe
> -mpreferred-stack-boundary=2 -march=i686 -E -D__GENKSYMS__ loop.c
> | /sbin/genksyms  -k 2.4.2 >
> /usr/src/linux-2.4.2-K1/include/linux/modules/loop.ver.tmp
> mv /usr/src/linux-2.4.2-K1/include/linux/modules/loop.ver.tmp
> /usr/src/linux-2.4.2-K1/include/linux/modules/loop.ver
> gcc -D__KERNEL__ -I/usr/src/linux-2.4.2-K1/include -Wall
> -Wstrict-prototypes -O2 -fomit-frame-pointer -fno-strict-aliasing -pipe
> -mpreferred-stack-boundary=2 -march=i686 -E -D__GENKSYMS__ DAC960.c
> | /sbin/genksyms  -k 2.4.2 >
> /usr/src/linux-2.4.2-K1/include/linux/modules/DAC960.ver.tmp
> DAC960.c:112:59: warning: pasting would not give a valid preprocessing
> token
> DAC960.c:114:54: warning: pasting would not give a valid preprocessing
> token
> DAC960.c:126:26: warning: pasting would not give a valid preprocessing
> token
> DAC960.c:131:63: warning: pasting would not give a valid preprocessing
> token
> DAC960.c:136:44: warning: pasting would not give a valid preprocessing
> token
> DAC960.c:137:67: warning: pasting would not give a valid preprocessing
> token
> DAC960.c:1069:47: warning: pasting would not give a valid preprocessing
> token
> DAC960.c:1182:58: warning: pasting would not give a valid preprocessing
> token
>
> Thank you


------------------------------

From: [EMAIL PROTECTED] (David Efflandt)
Crossposted-To: comp.os.linux.help,comp.os.linux.misc
Subject: Re: Daylight saving bug in Redhat Linux?
Date: Tue, 17 Apr 2001 04:08:34 +0000 (UTC)
Reply-To: [EMAIL PROTECTED]

On Mon, 16 Apr 2001 11:22:46 -0400, Raymond Chui <[EMAIL PROTECTED]> wrote:
> Jean-David Beyer wrote:
> 
> Thank you very much!
> 
>>  On my system,
>> /etc/localtime is a copy of /usr/share/zoneinfo/EST5EDT , not a link.
>>
> 
> Can you do me a favor type
> 
> ls -lai /etc/localtime
> ls -lai /usr/share/zoninfo/EST5EDT
> 
> See if the inode number (the 1st column) is the same or not.
> If they are the same, then /etc/localtime is a hardlink (not symbolic
> link).
> If they are different, then /etc/localtime is a copy of a file.
> Thank you again.
> 
> --Raymond

It seems to vary.  These are 2 systems.  Mandrake 7.0 (copy):

$ ls -lai /usr/share/zoneinfo/CST6CDT
  32076 -rw-r--r--   3 root     root         1262 Sep  5  2000 
/usr/share/zoneinfo/CST6CDT
$ ls -lai /etc/localtime             
  96211 -rw-r--r--   1 root     root         1262 Oct  1  2000 
/etc/localtime


SuSE 7.1 (hard link):

> ls -lai /usr/share/zoneinfo/CST6CDT
 953520 -rw-r--r--    4 root     root         1279 Jan 19 00:16 
/usr/share/zoneinfo/CST6CDT
> ls -lai /etc/localtime
 953520 -rw-r--r--    4 root     root         1279 Jan 19 00:16 
/etc/localtime

-- 
David Efflandt  (Reply-To is valid)  http://www.de-srv.com/
http://www.autox.chicago.il.us/  http://www.berniesfloral.net/
http://cgi-help.virtualave.net/  http://hammer.prohosting.com/~cgi-wiz/

------------------------------

From: [EMAIL PROTECTED] (David Efflandt)
Subject: Re: Is tere any driver for Hp 5L printer ??
Date: Tue, 17 Apr 2001 04:56:13 +0000 (UTC)
Reply-To: [EMAIL PROTECTED]

On Tue, 17 Apr 2001 10:56:24 +0800, hushui <[EMAIL PROTECTED]> wrote:
> printtool doesn't support it.
> When use it print file ,it is not correct.

So what is incorrect?  If your Linux is so old that it does not list the 
5L set it up for hplj4 600 dpi.  The 4 and 5L should use the same PCL 
commands.

Note: Do NOT set it as HPLJ4L which is really smoothed 300 dpi that worked
with earlier hplj3 drivers.

-- 
David Efflandt  (Reply-To is valid)  http://www.de-srv.com/
http://www.autox.chicago.il.us/  http://www.berniesfloral.net/
http://cgi-help.virtualave.net/  http://hammer.prohosting.com/~cgi-wiz/

------------------------------

From: [EMAIL PROTECTED] (David Efflandt)
Crossposted-To: 
alt.linux,comp.os.linux.hardware,comp.os.linux.help,comp.os.linux.redhat
Subject: Re: Modem trouble
Date: Tue, 17 Apr 2001 05:03:56 +0000 (UTC)
Reply-To: [EMAIL PROTECTED]

On Mon, 16 Apr 2001 15:01:46 +0200, Krstanovic <[EMAIL PROTECTED]> wrote:
> I have Rockvell 56k ISA modem.It works on IRQ#3 and COM2 port under Win Me
> and DOS,but will not work under Red Hat 7
> Help me to configure it.Without the modem Linux is not so useful,in my
> opinion :)
> Thanx!

Does ttyS01 show up in your boot messages?  If so, try connecting minicom 
to /dev/ttyS1 and see if it responds to AT commands.

If not, then maybe it is a PnP modem and you need to:

pnpdump > /etc/isapnp.conf
Then edit that file for your port and irq.

-- 
David Efflandt  (Reply-To is valid)  http://www.de-srv.com/
http://www.autox.chicago.il.us/  http://www.berniesfloral.net/
http://cgi-help.virtualave.net/  http://hammer.prohosting.com/~cgi-wiz/

------------------------------

From: [EMAIL PROTECTED] (Stephane)
Subject: Re: 486 help??!!
Reply-To: [EMAIL PROTECTED]
Date: Tue, 17 Apr 2001 01:22:24 +0200

Le Mon, 16 Apr 2001 01:12:48 GMT, E J A ecrit:
>You can try peanut linux or an ancient distro.  I don't know if you can make
>an FTP install such as Redhat for
>an old machine.

Yes, I made an FTP install with a RedHat 4.2. 

>In the case of Redhat, you get bootnet.img and use the dos program rawrite to
>write a network bootable
>floppy and find an appropriate FTP site and do the installation.
>
>Miguel wrote:
>
>> [posted and mailed]
>>
>> well i have an old 486 with 8mb ram and a 4go Hd and i wanna know which is
>> the best way to install linux. i dont have any cdrom drive but im on adsl.
>

For this kind of computer, I'm not sure  that Linux is the best way,
it's more easy to use a BSD with a old Computer. OpenBSD or FreeBSD, you
can make an FTP install.

If you want really Linux, the Slackware, RedHat and Debian can do that.


Stephane TOUGARD


------------------------------

From: [EMAIL PROTECTED] (Stephane)
Subject: Re: Clock Drift
Reply-To: [EMAIL PROTECTED]
Date: Tue, 17 Apr 2001 01:35:58 +0200

Le 13 Apr 2001 14:06:46 -0700, Martin Shepherd A ecrit:
>> 
>> 0 0 * * * /sbin/clock -w
>
>Or alternatively put this in your crontab
>
>0 0 * * * /sbin/hwclock --adjust
>
>if you want to use /etc/adjtime (see the man page for hwclock(8)).
>Note that /sbin/clock is just a symbolic link to /sbin/hwclock (at
>least under RedHat 7.0).

RedHat is not Linux and Linux is not Unix.

On a Slack 7

ocean:/sbin$ ls clock -la
-rwxr-xr-x   1 root     bin          9976 Aug  1  1999 clock*
ocean:/sbin$ ls -la hwclock 
-rwxr-xr-x   1 root     bin         31780 Aug  1  1999 hwclock*
ocean:/sbin$ 


With OpenBSD

[~] > locate hwclock

Tue Apr 17 -- 01:34:40
clipper

 [~] > 



Stephane TOUGARD


------------------------------

From: [EMAIL PROTECTED] (Stephane)
Subject: Re: Any thoughts on a good Sparc Linux?
Reply-To: [EMAIL PROTECTED]
Date: Tue, 17 Apr 2001 01:30:00 +0200

Le 12 Apr 2001 19:01:41 GMT, User Rdkeys Robert D. Keys A ecrit:
>I have a couple spare Sparc sun4c and sun4m boxes that I was thinking
>of trying a Linux on.  I come from a BSD background, and have not been
>following the Linux sparc threads.  I see there are a Debian, Slackware,
>SUSE, and Redhat varieties available.  Are any of these better suited to
>a desktop or server environment, or is there any consensus as to which
>might be better for various reasons.  No flames or OS wars needed, just
>some honest comparative insights beyond the usual install guide hypes.
>I was thinking of setting up an IPX as a desktop, and a Classic as a
>small server on the home net with the BSD boxes.  Thanks in advance
>for any suggestions or insights.

I use a SparcStation 5 with OpenBSD. Before to use OBSD, I Used Linux on
SparcStation 2, NetBSD on a SparcStation IPX and 5, the Linux distro was
a RedHat 5.1 and a Debian.

Linux was not so reliable than *BSD on Sparc, the second one works on a
Sun 4M like Sun OS, Linux works like a PC :-(. I had a lot of seg fault
and reboot with Linux.

Perhaps the 2.2 Kernel is better on 4M, I do not know, I did not try.

Stephane TOUGARD


>
>Thanks
>
>Bob
>

------------------------------

From: [EMAIL PROTECTED] (Stephane)
Subject: Re: how do I change the $HOME variable?
Reply-To: [EMAIL PROTECTED]
Date: Tue, 17 Apr 2001 01:47:39 +0200

Le Mon, 9 Apr 2001 17:02:39 -0400, Gregory Davis A ecrit:
>That's pretty much it.  I want to put my /root/ directory in /home/ to make 
>/home/root/ and have all my home directories one separate partition.  It 

It's a very bad idea, very very bad. 

In the future you may have trouble with your computer and you perhaps
won't be able to mount the /home directory. 

>follows then that I change the value for root's home directory.  But I do 
>not know where to do this.  My guess is somewhere in /etc/ there is a 
>user-data file that sets the home for each user there.  Would be nice if it 
>had an obvious name like that.

If you want to read and modify the database of users for your system,
you may type 

# vipw

as root.

>
>Greg



Stephane TOUGARD

------------------------------

From: [EMAIL PROTECTED] (Stephane)
Subject: Re: How to change Display configuration for X?
Reply-To: [EMAIL PROTECTED]
Date: Tue, 17 Apr 2001 01:48:31 +0200

Le Fri, 06 Apr 2001 18:32:55 GMT, Afonso Sam A ecrit:
>My TNT2 display adapter on my linux box(RH7) dead, I replaced it with
>spare Matrox G200. That is ok to start up the linux box. but fail to
>start up the X. I did tried to reconfigure the X display with
>Xconfigurator. but it prompted that there was no module for the
>detected MGA  G200. 
>What can I do to reactive the X?

xf86config


Stephane TOUGARD

>
>Afonso Sam
>

------------------------------

From: Dino Hsu <[EMAIL PROTECTED]>
Crossposted-To: comp.databases.oracle.server;
Subject: Can Oracle 8/8i be installed on Red Hat 7.0?
Date: Tue, 17 Apr 2001 13:06:34 +0800

Dear all,

Steven said, "DO NOT USE RedHat 7, Use RedHat 6.2 instead", while
Bradley said he just put Oracle 8 on an RH7 system at work.
I am a little confused, which statement is right? 
If both are right, I would make guesses as follows:
1.Oracle 8i works on RH7, but Oracle 8 doesn't. (or vice versa)
2.Oracle 8 or 8i didn't work on RH7 at first, but fixed later. The 8i
R3 version I have is already 8.1.7.1.0, not 8.1.7.0.0 any more.
Hope those who know this can give complete information. In short, I
would only try 8i R3 on RH7, I can forget about other versions.
Thanks.

Dino

On Sun, 15 Apr 2001 16:06:20 GMT, Steve Bradley
<[EMAIL PROTECTED]> wrote:

>Told you it was an insultingly simple question...but I just put Oracle 8 on 
>an RH7 system at work, and the installer worked perfectly for me. 
>
>Have you tried this:
>
>mount -t iso9660 -o exec /dev/cdrom /mnt/cdrom
>
>The 'exec' option permits execution of binary files.  It's a common 
>problem.  Also, if your system is automounting CD's (my RH7 system doesn't) 
>you should add the exec switch to your /etc/fstab:
>
>/dev/cdrom     /mnt/cdrom    auto   noauto,exec,user,ro 0 0
>
>That way when it automounts it'll have the ability to execute binaries.
>
>Steve
>
>
>Dino Hsu wrote:
>
>> 
>> Steve,
>> 
>> Sure it is perfectly possible for me to neglect some basics because I
>> am a beginner in Linux, or Unix in general. But I have thought of the
>> mount issue and have done some experiments. I tried to manually umount
>> and mount back the CD-ROM with:
>> mount -t iso9660 /dev/cdrom /mnt/cdrom
>> I made a conclusion later that Linux will automatically mount CD-ROM
>> (and floppy disk as well) when one is inserted in X window.
>> I wish those who have experience with Oracle 8 or 8i versions on Linux
>> Intel could kindly share their knowledge.
>> 
>> By the way, there are some anomalies in my X window. For example, I
>> CANNOT edit any text files but I can view them; when I edit, nothing
>> comes out, no errors, no messages. I am wondering what the editor
>> (like NOTEPAD in MS-WIN?) is in X window, I have not seen it yet. My
>> version is gdm in Red Hat 7.0.
>> 
>> Regards,
>> Dino
>> 
>> 

On Thu, 8 Feb 2001 11:51:50 +0100, "Steven Brangers"
<[EMAIL PROTECTED]> wrote:

>DO NOT USE RedHat 7
>Use RedHat 6.2 instead
>
>Steven Brangers.
>
>Dino Hsu <[EMAIL PROTECTED]> wrote in message
>news:[EMAIL PROTECTED]...
>> Dear all,
>>
>> I have just downloaded Linux version of Oracle servers from
>> otn.oraclce.ocm as follows:
>> 1.Oracle8051EE_Intel: 167,291KB, Oracle 8.0.5 Enterprise Edition for
>> Linux
>> 2.oracle8161_tar.tar: 281,909KB, Oracle 8.1.6 Enterprise Edition for
>> Linux
>> 3.linux817ee.tar: 85,534KB, Oracle 8.1.7 Enterprise Edition for Linux
>>
>> I know Windows NT server and Oracle server, but I don't know much
>> about Linux or Unix, so I wonder:
>> 1.Can I write these 3 files into one CD-ROM?
>> 2.How can I install the servers in Linux (Red Hat 7.0)?
>> 3.After the Oracle server is installed on Linux, I also want to
>> connect to it from Windows 98 on another PC.
>>
>> Please kindly advise, thanks in advance.
>>
>> Regards,
>> Dino
>


------------------------------


** FOR YOUR REFERENCE **

The service address, to which questions about the list itself and requests
to be added to or deleted from it should be directed, is:

    Internet: [EMAIL PROTECTED]

You can send mail to the entire list by posting to comp.os.linux.setup.

Linux may be obtained via one of these FTP sites:
    ftp.funet.fi                                pub/Linux
    tsx-11.mit.edu                              pub/linux
    sunsite.unc.edu                             pub/Linux

End of Linux-Setup Digest
******************************

Reply via email to