LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 09-30-2002, 03:16 PM   #46
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69

Ok, cool. I gave the wrong pass earlier, it's Jeremy with a capital J.

To access it GT:
You have too many options, here's 2:
Open up a console:
ftp masterc.no-ip.org
It will ask you for username:
lq
and then for Pass:
Jeremy
and then your are in. To list the files:
ls
and then you can copy them or whatever.

Another way:
use gftp and go to:
ftp://masterc.no-ip.org and login with the username and pass.

Cool
 
Old 09-30-2002, 05:29 PM   #47
lynch
Member
 
Registered: Nov 2000
Location: A Mid-Atlantic state
Distribution: SuSE 8.1,Knoppix 3.2,Mandrake 9.1
Posts: 388

Rep: Reputation: 30
They should be there now if you want to check and then close the account.I named them pmdisk-1.tgz and pmdisk-2.tgz.Everything looked OK from my end
GT,if you get them alright, they'llgunzip as folders-just open the folder and cp each set of files to a floppy. pmdisk-1-boot is the boot disk and pmdisk-2-app is the one you'll be asked for after DOS has loaded.
Man,I sure hope I didnt get you killed with my tardiness
lynch
 
Old 09-30-2002, 07:45 PM   #48
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
Ok cool, I will close the account, and move the files to the anonymous ftp folder so you don't have to worry about logging in to get them. If you need me to open it again, it won't be a problem lynch. So GT, to get these:

click disk 1 and disk 2

That should do it.

Cool
 
Old 09-30-2002, 07:55 PM   #49
GT I.N.C
Member
 
Registered: May 2002
Location: Australia, Sydney, St.Clair
Distribution: Rh 7.3
Posts: 836

Original Poster
Rep: Reputation: 30
OK there downloading now, thanks for both of your times....

Now i just gotta play around with this and see what happens
 
Old 09-30-2002, 08:46 PM   #50
adam_boz
Member
 
Registered: Jul 2002
Location: Santa Cruz, CA
Distribution: lfs
Posts: 538

Rep: Reputation: 30
I'm wondering if maybe those wierd partitions names are from scsi-emulation? Maybe that is messing stuff up? I could be TOTALLY wrong though....
 
Old 09-30-2002, 10:06 PM   #51
GT I.N.C
Member
 
Registered: May 2002
Location: Australia, Sydney, St.Clair
Distribution: Rh 7.3
Posts: 836

Original Poster
Rep: Reputation: 30
adam_boz what are you trying to say, if you know how to help me out, could you post some ideas up?
 
Old 09-30-2002, 11:07 PM   #52
adam_boz
Member
 
Registered: Jul 2002
Location: Santa Cruz, CA
Distribution: lfs
Posts: 538

Rep: Reputation: 30
I was just thinking that the "lun0" part of this reminded me of when I enabled "scsi-emulation" for my cd-writer, there was an option in the kernel for "probe all lun's" or something like that. I mean, that partition table looks NOTHING like the ide stuff that i'm used to (except for the ide part :-)

/dev/ide/host0/bus0/target0/lun0/part4

I was just thinking that maybe you enabled scsi-emulation for your hard drives on accident, or it was there already, and some of the configuration was wrong, or you couldn't do that with your hardware or partition type.

It is the only thing I can think of... maybe something to look in to, maybe not.

Either way, Good Luck

do you know how to check your kernel configuration?

if not: go to /usr/src/linux and type "make menuconfig" check out the scsi section and maybe the ide section and see if everything is looking o.k.... if you need more clarity on that, let us know.

Last edited by adam_boz; 09-30-2002 at 11:11 PM.
 
Old 10-01-2002, 01:48 AM   #53
moses
Senior Member
 
Registered: Sep 2002
Location: Arizona, US, Earth
Distribution: Slackware, (Non-Linux: Solaris 7,8,9; OSX; BeOS)
Posts: 1,152

Rep: Reputation: 50
The
/dev/ide/host0/bus0/target0/lun0/part4
is not from SCSI emulation, it's probably because he's running devfs,
which defaults to showing disks in this format.

/dev/hda4 is a symlink to /dev/ide/host0/bus0/target0/lun0/part4

Not that this helps solve his problem, just clears up that this is almost certainly NOT his problem. . .

GT:
can you post the results of:
cat /proc/filesystems
cat /proc/partitions

cd /usr/src/linux
make menuconfig
go to the filesystems option
go to the Native Language Support option
tell what you have checked there.
don't change anything.


Also, another possible solution is that you may not have support for
Windows Logical Disk Manager (Dynamic Disk) compiled into the kernel,
though I don't know if PM actually uses this type of partition. To compile it
in (it won't hurt), do the following:

cd /usr/src/linux
make menuconfig
go to File System
go to Partition Types
go to Windows Logical Disk Manager support
hit "y"
escape back out
save the configuration
make dep && make bzImage && make modules && make modules_install
cp arch/i386/boot/bzImage /boot/vmlinuz.WLDM
edit /etc/lilo.conf
add in
image = /boot/vmlinuz.WLDM
root = /dev/hdaX
label = Linux.WLDM
read-only

(Or however you want it if you care for it to be consistent with the rest of
your setup. hdX is your root partition).

lilo

if there are no errors, reboot. However, I seem to remember that RH has
some funky steps you have to go through to add a kernel to the LILO boot
manager, so you may need to double check the steps after making the
kernel. . .

Good luck,
Moses

Cheers,
Moses
 
Old 10-01-2002, 01:52 AM   #54
GT I.N.C
Member
 
Registered: May 2002
Location: Australia, Sydney, St.Clair
Distribution: Rh 7.3
Posts: 836

Original Poster
Rep: Reputation: 30
ok i'll do that right away moses...bear with me as you did ask for a few things and i may take a while trying to understand it all

Garry
 
Old 10-01-2002, 02:03 AM   #55
GT I.N.C
Member
 
Registered: May 2002
Location: Australia, Sydney, St.Clair
Distribution: Rh 7.3
Posts: 836

Original Poster
Rep: Reputation: 30
Code:
[root@localhost gt]# cat /proc/filesystems
nodev   rootfs
nodev   bdev
nodev   proc
nodev   sockfs
nodev   tmpfs
nodev   shm
nodev   pipefs
        ext2
nodev   devfs
nodev   devpts
nodev   usbdevfs
nodev   supermount
        vfat
Code:
[root@localhost gt]# cat /proc/partitions
major minor  #blocks  name     rio rmerge rsect ruse wio wmerge wsect wuse running use aveq

   3     0   19551168 ide/host0/bus0/target0/lun0/disc 20377 49496 533538 184880 9440 11863 172096 1706580 0 170220 1893930
   3     1   16571016 ide/host0/bus0/target0/lun0/part1 0 0 0 0 0 0 0 0 0 0 0
   3     2    2658726 ide/host0/bus0/target0/lun0/part2 20055 44748 518418 180410 9100 9866 152280 1682890 0 167730 1865740
   3     4          1 ide/host0/bus0/target0/lun0/part4 0 0 0 0 0 0 0 0 0 0 0
   3     5     257008 ide/host0/bus0/target0/lun0/part5 193 637 6640 3240 318 1987 19752 18980 0 5950 22250
   3     6      64228 ide/host0/bus0/target0/lun0/part6 129 4111 8480 1230 22 10 64 4710 0 1980 5940
there is no
cd /usr/src/linux


And i don't think i need to compile Windows Logical Disk Manager becasue this happened while i didn't have linux on it...i did have Red Hat 7.3, i formatted my linux partiton, planning to resize my fat32 partition to give more space for my linux one, and then this all happened....
 
Old 10-01-2002, 02:25 AM   #56
moses
Senior Member
 
Registered: Sep 2002
Location: Arizona, US, Earth
Distribution: Slackware, (Non-Linux: Solaris 7,8,9; OSX; BeOS)
Posts: 1,152

Rep: Reputation: 50
Quote:
> there is no cd /usr/src/linux
>
> And i don't think i need to compile Windows Logical Disk Manager
> becasue this happened while i didn't have linux on it...i did have Red Hat
> 7.3, i formatted my linux partiton, planning to resize my fat32 partition to
> give more space for my linux one, and then this all happened....

Right, but I thought you were in the recover what you can mode. If PM
has somehow munged your partition (for example, by making it fall under
the "Windows Logical Disk Manager" partition type), then you won't be
able to read the partition (correctly) under Linux unless you've got support compiled into the kernel. . .

Anyway, it looks like you don't have the kernel source installed (unless
there is a /usr/src/linux-2.x.xx). Unfortunately, the partition code must be
compiled in; it's not available as a module. If you want to try this route,
it may or may not be a solution. If it isn't, then you could end up spending
more time than it's worth on recompiling the kernel.

By the way, your partitions look fine, and you have VFAT support in your
kernel, which is good. I'm just guessing that perhaps PM has added
some bits to the partition table that causes your "fat32" partition to
appear to be some other beast.

Another "by the way", what is the command you issue to mount your
windows partition?

Cheers,
Moses
 
Old 10-01-2002, 02:57 AM   #57
GT I.N.C
Member
 
Registered: May 2002
Location: Australia, Sydney, St.Clair
Distribution: Rh 7.3
Posts: 836

Original Poster
Rep: Reputation: 30
ummm i posted it up in one of these posts, but i think it was
Code:
mount -t vfat /dev/hda1 /mnt/windows
 
Old 10-01-2002, 03:01 AM   #58
GT I.N.C
Member
 
Registered: May 2002
Location: Australia, Sydney, St.Clair
Distribution: Rh 7.3
Posts: 836

Original Poster
Rep: Reputation: 30
And the I.D for my windows partition was Partition Magic recovery (as i posted in an earlier post) but i used fdisk (linux) to change it to vfat...

Just thought i would let you know...
 
Old 10-01-2002, 03:41 AM   #59
moses
Senior Member
 
Registered: Sep 2002
Location: Arizona, US, Earth
Distribution: Slackware, (Non-Linux: Solaris 7,8,9; OSX; BeOS)
Posts: 1,152

Rep: Reputation: 50
Right. I just changed the type of one of my partitions to P.M. Rec. and
rebooted. It didn't make a difference, I could still mount the partition
(as VFAT).

Let's try one more thing in Linux before I start to wonder. . .

Try changing the partition type from FAT32 (ID b) to FAT32 LBA (ID c).
write this partition table, reboot, make sure your BIOS is detecting the
drive as an LBA disk, and let me know what you get. . .

Cheers,
Moses
 
Old 10-01-2002, 03:47 AM   #60
moses
Senior Member
 
Registered: Sep 2002
Location: Arizona, US, Earth
Distribution: Slackware, (Non-Linux: Solaris 7,8,9; OSX; BeOS)
Posts: 1,152

Rep: Reputation: 50
http://support.microsoft.com/default...EN-US;q314057&

I don't know if this will help or not. . .

--
Moses
 
  


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
qt trouble... /hme/usr SUSE / openSUSE 2 11-14-2005 03:17 PM
x trouble mithereal Debian 1 08-25-2005 12:56 PM
trouble% rawinn Linux - Software 3 02-27-2004 01:24 AM
trouble ahead, trouble behind....trouble with mplayer Goonie Linux - Software 3 07-02-2003 02:29 AM
Kernel Trouble (Not actually trouble though) chem1 Linux - General 4 10-01-2002 01:10 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 06:04 AM.

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