From s.brennan@bigpond.com Thu Jun 25 03:57:28 1998
From: s.brennan@bigpond.com
To: users@lists.opensuse.org
Subject: [S.u.S.E. Linux] Mount Fat32 Partitions
Date: Thu, 25 Jun 1998 13:57:28 +1000
Message-ID: <03571094594250@domain2.bigpond.com>
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============3033283762370396279=="
--===============3033283762370396279==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
I have S.u.S.e 5.2 and I really would like to be able to mount a frie=
nds
Fat32 partition when he comes round. I have the updated kernel (2.0.34)
with suse patches already installed. I have tried patching the kernel
myself but I cant seem to get it to work. Can someone PLEASE explain how I
can do it... PROPERLY???
Cheers
Stephen Brennan
-
To get out of this list, please send email to majordomo(a)suse.com with
this text in its body: unsubscribe suse-linux-e
--===============3033283762370396279==--
From roberto@cbvcp.com Thu Jun 25 04:35:41 1998
From: roberto@cbvcp.com
To: users@lists.opensuse.org
Subject: Re: [S.u.S.E. Linux] Mount Fat32 Partitions
Date: Wed, 24 Jun 1998 21:35:41 -0700
Message-ID: <3591D39D.7CDD381B@cbvcp.com>
In-Reply-To: <03571094594250@domain2.bigpond.com>
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============6856551054960696037=="
--===============6856551054960696037==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
Stephen Brennan wrote:
>=20
> I have S.u.S.e 5.2 and I really would like to be able to mount a fr=
iends
> Fat32 partition when he comes round. I have the updated kernel (2.0.34)
> with suse patches already installed. I have tried patching the kernel
> myself but I cant seem to get it to work. Can someone PLEASE explain how I
> can do it... PROPERLY???
Yes, and it's so easy it's sickening. go to yast; adjustments of
installation; set target partitions/filesystems.
Then mount the drive as /whatever (just as long as 'whatever' isn't an
existing directory under root). for the type of partition, select
vfat. reboot, and it's there.
--=20
Aaron Seelye
http://revolution.3-cities.com/~roberto>
-
To get out of this list, please send email to majordomo(a)suse.com with
this text in its body: unsubscribe suse-linux-e
--===============6856551054960696037==--
From gecko@benham.net Thu Jun 25 16:17:35 1998
From: gecko@benham.net
To: users@lists.opensuse.org
Subject: RE: [S.u.S.E. Linux] Mount Fat32 Partitions
Date: Thu, 25 Jun 1998 09:17:35 -0700
Message-ID:
In-Reply-To: <03571094594250@domain2.bigpond.com>
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============1475958198740851633=="
--===============1475958198740851633==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
Unless there are some new SuSE patches (and I havn't looked...) you should NOT
patch the 2.0.34 kernel. The SuSE kernel was 2.0.33 with some of the patches
that ultimatly went into 2.0.34... so you'd be trying to install an already
installed patch.. so to speak.
On 25-Jun-98 Stephen Brennan wrote:
>=20
> I have S.u.S.e 5.2 and I really would like to be able to mount a frie=
nds
> Fat32 partition when he comes round. I have the updated kernel (2.0.34)
> with suse patches already installed. I have tried patching the kernel
> myself but I cant seem to get it to work. Can someone PLEASE explain how I
> can do it... PROPERLY???
----------------------------------
http://benham.net/index.html>
-----BEGIN GEEK CODE BLOCK-----
Version: 3.1
GCS d+(-) s:+ a29 C++$ UL++>++++ P+++$ L++>++++ E? W+++$ N+(-) o? K- w+++$(--)
O M-- V- PS-- PE++ Y++ PGP++ t+ 5 X R+ !tv b++++
DI+++ D++ G++>G+++ e h+ r* y+
------END GEEK CODE BLOCK------
----------------------------------
-
To get out of this list, please send email to majordomo(a)suse.com with
this text in its body: unsubscribe suse-linux-e
--===============1475958198740851633==--
From weissel@jupiter.ph-cip.uni-koeln.de Fri Jun 26 07:31:05 1998
From: weissel@jupiter.ph-cip.uni-koeln.de
To: users@lists.opensuse.org
Subject: Re: [S.u.S.E. Linux] Mount Fat32 Partitions
Date: Fri, 26 Jun 1998 09:31:05 +0200
Message-ID: <19980626093105.J22238@Tiger.uni-koeln.de>
In-Reply-To: <3591D39D.7CDD381B@cbvcp.com>
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============6926522728843275889=="
--===============6926522728843275889==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
Hi!
Trying to kill the keyboard, roberto(a)cbvcp.com produced:
> > I have S.u.S.e 5.2 and I really would like to be able to mount a =
friends
> > Fat32 partition when he comes round. I have the updated kernel (2.0.34)
> existing directory under root). for the type of partition, select
> vfat. reboot, and it's there.
I assume that you are right that vfat will deal with fat32 here ...=20
as root:
create a mountpoint (unless always you want to use /mnt), I'll call it
FAT32 here.
mkdir /FAT32
et permissions (should be automatic, but to be sure)
chmod 755 /FAT32
mount the partition: (/dev/whatever is the device, e.g. /dev/sda4
(SCSI-ZIP, primary partition 4 -- that's the default for preformatted
ones)
mount -tvfat /dev/whatever /FAT32
If you want to make it more permanent (or let users do the mount or ...)
just edit /etc/fstab, add a line:
/dev/whatever /FAT32 vfat noauto,user 0 0
^ ^ ^ ^ ^ ^
Device mountpoint | don't mount at | (parallel) fsck order=20
| boot, users may | (at boot), 0 =3D don't
| mount it |
Filesystem-type dump-frequency
(Dump is a backup-program)
(for more info, see man fstab)
Then any user can mount the drive with=20
mount FAT32
or mount /dev/whatever
No need to reboot!
-Wolfgang
--=20
PGP 2 welcome: Mail me, subject "send PGP-key".=20
If you've nothing at all to hide, you must be boring.
Unsolicited Bulk E-Mails: *You* pay for ads you never wanted.
Is our economy _so_ weak we have to tolerate SPAMMERS? I guess not.
-
To get out of this list, please send email to majordomo(a)suse.com with
this text in its body: unsubscribe suse-linux-e
--===============6926522728843275889==--