LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions
User Name
Password
Linux - Distributions This forum is for Distribution specific questions.
Red Hat, Slackware, Debian, Novell, LFS, Mandriva, Ubuntu, Fedora - the list goes on and on... Note: An (*) indicates there is no official participation from that distribution here at LQ.

Notices


Reply
  Search this Thread
Old 06-05-2004, 12:09 AM   #16
MacrossV
Member
 
Registered: Mar 2004
Distribution: FC1
Posts: 32

Rep: Reputation: 15

Well, I've have no clue about RAID drives, but to in order to restore your boot loader, do what everyone else said, just "repair" your linux system. I screwed up XP, reloaded it once again installed it's own bootloader without asking me. I ran the install again on Suse and told it to repair the system, and it simply restored my Grub.
 
Old 06-05-2004, 01:40 AM   #17
chriskar
LQ Newbie
 
Registered: May 2004
Location: greece
Distribution: suse 9.1 pro
Posts: 13

Original Poster
Rep: Reputation: 0
Thanks for your advice but visiting the site i understood that the program
is for multiple OS on the same hard disk . this is not my situation.
maybe i did not understood very well .
Anyway Sunday i will experiment everything and Monday morning i will inform all of you.
Thanks to all.
 
Old 06-05-2004, 05:02 AM   #18
fredrik9.1
LQ Newbie
 
Registered: Mar 2004
Location: Sweden
Distribution: Fedora Core 5
Posts: 3

Rep: Reputation: 0
Hmm... I think it might be a little unclear on how XOSL actually works on www.ranish.com, but it actually works on multiple drives as well. My old system has XOSL installed on two disks, and I've set it to boot on Suse 8.2 as default after 5s, unless you press ESC, in which case you in a GRUB-like fashion get to choose from booting to Suse 8.2, XP pro, or the floppy disk, or whatever bootable device you have set XOSL to boot on. However it will not boot directly into SuSE 8.2, but into the old linux boot loader. Bla bla.... well as I said I really recommend it in case the normal procedures fail.

Good luck tomorrow!
 
Old 06-07-2004, 02:09 AM   #19
chriskar
LQ Newbie
 
Registered: May 2004
Location: greece
Distribution: suse 9.1 pro
Posts: 13

Original Poster
Rep: Reputation: 0
HELLO , drowstar and to all of you.
trying to install xp on the second hard disk ( having linux on the first )
was impossible because whrn i placed the windows cd and i told windows to install itself on the second disk it told me that windows must put some
bootfiles to the first disk . i said OK but after this it told me that on the first disk
is something else and i must first format it and then install xp.
As you see i think that maybe it's not possible installing linux first and then
xp on separate disk .
what's your oppinion ??
the next step is to cancel linux and put xp on the first disk
and then trying to install linux on the second disk and when grub
go over mbr i will have a multiboot system or not ????
until now i understand the if you have 1 HARD DISK it's easy :
you put xp first then linux automatically make space and go after xp
and grub go over mbr .
NOW with 2 disk what ??
have you any idea what are the next steps to follow ????
 
Old 06-07-2004, 05:34 AM   #20
drowstar
Member
 
Registered: Apr 2004
Location: Germany
Distribution: Slackware, Gentoo, Fedora
Posts: 205

Rep: Reputation: 30
Hi chriskar,
your assessment seems correct.
Easiest way would be to remove linux, install xp (make sure it doesnt use the second disk as well; will probably not happen) and then reinstall linux. Linux will set grub up to allow you to boot either windows or linux.

Good luck, seems you will finally get the system you wanted all along.
- drowstar
 
Old 06-08-2004, 02:30 AM   #21
chriskar
LQ Newbie
 
Registered: May 2004
Location: greece
Distribution: suse 9.1 pro
Posts: 13

Original Poster
Rep: Reputation: 0
FINALLY I DID IT.Now i have a dualboot system .
what i did ?
i removed linux from first hard disk and installed xp first then
( having removed raid controller , this is all the secret , i could not making it
work with raid ) then i installed linux and it resized automatically my hard disk
giving 40 GB to windows and creating a swap of 1 GB and a root partition
of 79 GB .
The second disk was not touched and looking to the properties i see
that it is RAW what does it mean ????????????????????
now how can i use the second hard disk ?
i need to creat 3-4 partitios for my videos , mp3 fotos ecc and a partition
FAT 32 so linux can write and read also ?????????
what must i do ?
thanks to all .
 
Old 06-08-2004, 05:30 AM   #22
drowstar
Member
 
Registered: Apr 2004
Location: Germany
Distribution: Slackware, Gentoo, Fedora
Posts: 205

Rep: Reputation: 30
Hi chriskar,
congratulations!

The second disk was not touched and looking to the properties i see that it is RAW what does it mean ????????????????????
I am not 100% positive, but I assume, raw means that it was not touched.

now how can i use the second hard disk ? i need to creat 3-4 partitios for my videos , mp3 fotos ecc and a partition FAT 32 so linux can write and read also ?????????
There is probably a way in YAST2 to do this. If not, check out qtparted. You can use this tool to create all the partitions you want. If you do that using YAST, it will probably also add it to your configuration, so you can easily use them.
To use these new partitions, you need to adjust your configuration. A quick search turned up quite a few pages that go into great detail about how to adjust this configuration file. There is also good information available in the man or info pages: man fstab or info fstab. Again, there is probably a way you can do it with YAST. And it is probably much easier to use and better integrated.
However, if you are willing to trust me, this configuration should do the trick (add it to your /etc/fstab file; you need to be root):
Code:
#<device>	<mountpoint>	<filesystemtype>	<options>		<dump  fsckorder>

/dev/hdb1	/video		reiserfs		user,auto,exec		0  0
/dev/hdb2	/mp3		reiserfs		user,auto,exec		0  0
/dev/hdb3	/stuff		reiserfs		user,auto,exec		0  0
/dev/hdb4	/move		vfat			user,auto		0  0
Look at the code: first line is a comment, you can leave that one out

the first element in each line is the device:
/dev/hdb1 means: hd ((E)IDE drive), b (second one), 1 (first partition)

the second element is the folder you want that device to be at:
This is different from windows, where you are stuck with c:, d: and so on (IIRC, maybe you can skip letters). I assumed you would want top level folders named after what you want to store in them. You can of course adjust that to your own requirements.
You need to create these folders before you can use them as mount points: mkdir /video


the third element is the file system type:
adjust that to what file system you chose: ext2, reiserfs, ext3, vfat (fat32, I am not very sure about that), ... (see man fstab for more info)

the fourth are options:
user: a user can mount the partition, auto: its automatically mounted on boot, exec: you can run programs from this partition. You may need to give users access to these drives: chown :users /video

dont bother about the fifth:
they should be ok the way they are


When you have adjusted fstab to your needs, you can try if it works: mount -a
Of course, I will be glad to assist you, if you have further questions.

Good luck,
- drowstar
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
What is gtk2 and how did I blow up firefox bluemoose Linux - Software 7 11-10-2005 12:55 PM
How to blow away my Win2K Partition? normf Linux - General 3 10-31-2005 08:32 AM
Installing Fedora tries to blow away all existing partitions? stefanlasiewski Fedora 2 07-17-2004 05:49 PM
I Blow Up My Comp Suse Pro Killd Even Thing OMEGA-DOOM Linux - Newbie 6 07-13-2004 10:11 AM
Did the Internet blow up? crashmeister General 14 05-27-2002 02:49 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions

All times are GMT -5. The time now is 10:48 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration