LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 06-11-2006, 05:08 PM   #1
jesuscakes
Member
 
Registered: May 2006
Posts: 83

Rep: Reputation: 15
I have a SysV formatted HD and I need to access the files in either Windows or Fedora


I tried mounting it by adding this line to fstab then doing mount -a:

/dev/sdc4 /media/scsihd SysV rw,users,auto,umask=0222 0 0

but when I try to mount it I get this error:

mount: unknown filesystem type 'SysV'

I am relatively new so I have no idea how to proceed. I am assuming there are no SysV drivers installed or I need to edit the Fstab line to something other than SysV.

Please help.

Thanks.
 
Old 06-11-2006, 05:13 PM   #2
jesuscakes
Member
 
Registered: May 2006
Posts: 83

Original Poster
Rep: Reputation: 15
Okay I did more research and it seems SysV was a flavor of Unix this HD ran. I need to access the data on it for a backup and can't do so without mounting it in Linux so any help would be appreciated.
 
Old 06-11-2006, 05:24 PM   #3
jesuscakes
Member
 
Registered: May 2006
Posts: 83

Original Poster
Rep: Reputation: 15
Okay I am pretty sure it's an NFS filesystem after much trial and error. When I try to mount it now though I get this error:

mount: directory to mount not in host:dir format
 
Old 06-11-2006, 05:43 PM   #4
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,128

Rep: Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121
From my (limited) understanding NFS is a transport, not a (native) filesystem.
Try cfdisk on the disk - see what it thinks it is.

If you only need a backup, just use dd to get an image - it doesn't care about the underlying fs. Doesn't help if you need to read the data; but at least you'll have a backup.
 
Old 06-11-2006, 05:46 PM   #5
jesuscakes
Member
 
Registered: May 2006
Posts: 83

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by syg00
From my (limited) understanding NFS is a transport, not a (native) filesystem.
Try cfdisk on the disk - see what it thinks it is.

If you only need a backup, just use dd to get an image - it doesn't care about the underlying fs. Doesn't help if you need to read the data; but at least you'll have a backup.
I need to read the data as well. Time to go learn some more.

How do I use cfdisk to do what you said btw?

Last edited by jesuscakes; 06-11-2006 at 05:48 PM.
 
Old 06-11-2006, 05:51 PM   #6
jesuscakes
Member
 
Registered: May 2006
Posts: 83

Original Poster
Rep: Reputation: 15
Okay I just tried cfdisk /dev/sdc4 and it said no command found so I assume I don't have the RPM installed. I checked the package manager and realized it isn't there so I must ask you what the package is called? I noticed a cftools but am not sure if that is it.
 
Old 06-11-2006, 06:21 PM   #7
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,128

Rep: Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121
Been many years since I swore off all rpm-based distros, so I can't help. Probably util-linux or some such.
Try "fdisk /dev/sdc" (note these things use the device, not a partition). Use the "m" command to get a list of available commands. You'll want "p" - look for the id on the right, and probably "l" to decode it.
"q" to (safely) quit.
 
Old 06-11-2006, 06:29 PM   #8
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
You may have fdisk. Try "fdisk -l /dev/sdc"

If it is a filesystem that the kernel recognizes, you could try using "-t auto" in a mount statement.
According to the book "Unix Filesystems", System V Release 4 adopted the UFS file system derived from the BSD Fast File System. SVR4.1 included the VERITAS Filesystem (VxFS).

Also read through the boot logs. There may be a kernel message pertaining to this disk.

If it is VxFS, different systems using it differed enough to where one systems couldn't read a drive from another's. Here is a link to vxtools that may still help however, http://www.penguin.cz/~mhi/fs/vxfs/

Last edited by jschiwal; 06-11-2006 at 06:35 PM.
 
Old 06-12-2006, 03:29 PM   #9
jesuscakes
Member
 
Registered: May 2006
Posts: 83

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by jschiwal
You may have fdisk. Try "fdisk -l /dev/sdc"

If it is a filesystem that the kernel recognizes, you could try using "-t auto" in a mount statement.
According to the book "Unix Filesystems", System V Release 4 adopted the UFS file system derived from the BSD Fast File System. SVR4.1 included the VERITAS Filesystem (VxFS).

Also read through the boot logs. There may be a kernel message pertaining to this disk.

If it is VxFS, different systems using it differed enough to where one systems couldn't read a drive from another's. Here is a link to vxtools that may still help however, http://www.penguin.cz/~mhi/fs/vxfs/
I called the company today and they said it's most likely EAFS.

Is there any info on this file system? He said it's AFS but stupports longer file names so I assume the E stands for extended but I haven't uncovered anything about it yet.

Anyone know how to mount AFS or EAFS?
 
Old 06-13-2006, 01:06 AM   #10
jesuscakes
Member
 
Registered: May 2006
Posts: 83

Original Poster
Rep: Reputation: 15
I called the company today and they said it's most likely EAFS.

Is there any info on this file system? He said it's AFS but stupports longer file names so I assume the E stands for extended but I haven't uncovered anything about it yet.

Anyone know how to mount AFS or EAFS?
 
Old 06-13-2006, 01:45 AM   #11
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
The kafs kernel module might enable you to mount the partition read-only.

Install the kernel-source and read the /usr/src/linux/Documentation/filesystems/afs.txt file for instructions on how to use it.
 
Old 06-14-2006, 03:54 PM   #12
jesuscakes
Member
 
Registered: May 2006
Posts: 83

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by jschiwal
The kafs kernel module might enable you to mount the partition read-only.

Install the kernel-source and read the /usr/src/linux/Documentation/filesystems/afs.txt file for instructions on how to use it.
Where can I find kafs kernel module? It's not under the package manager.
 
Old 06-14-2006, 06:19 PM   #13
jesuscakes
Member
 
Registered: May 2006
Posts: 83

Original Poster
Rep: Reputation: 15
Where can I find kafs kernel module? It's not under the package manager.
 
Old 06-15-2006, 05:24 AM   #14
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
If kafs modules support was selected when the kernel was compiled, then load the kernel module:
sudo /sbin/modprobe kafs
 
  


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
Cannot access all files on windows share palinuxuser Linux - Networking 2 02-18-2006 06:00 AM
how to access windows shared files dagul_t Linux - Networking 4 07-07-2005 10:13 PM
access to windows files eltn10 Linux - General 3 09-30-2004 06:59 AM
Access files on windows xp from fedora core 2 velibos Linux - Newbie 1 08-05-2004 02:57 PM
how to convert windows formatted text files to *nix formatting? zero79 Linux - General 8 06-11-2004 03:00 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 07:45 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