On Sun, May 06, 2012 at 02:54:42PM +, Camaleón wrote:
> On Sun, 06 May 2012 09:25:39 -0500, Martin McCormick wrote:
>
> (...)
>
> Nice to see you finally sorted the CD-R problem.
>
> > I still need to fix an entry in fstab to mount a FAT32
> > usb stick on a mount point called /flash. Si
On Sun, 06 May 2012 09:25:39 -0500, Martin McCormick wrote:
(...)
Nice to see you finally sorted the CD-R problem.
> I still need to fix an entry in fstab to mount a FAT32
> usb stick on a mount point called /flash. Since there are several
> possibilities of usb devices that will be plugge
A google search turned up the follwoing document:
http://www.reactivated.net/writing_udev_rules.html
I followed along and solved the problem decribed below.
emk
On Mon, 2005-07-04 at 13:31 -0400, Edward Kamau wrote:
> Hi
>
> I have a usb sd card reader a usb cruzer mini jump drive and a usb c
On Mon, Jul 04, 2005 at 10:36:06PM -0400, Carl Fink wrote:
> On Mon, Jul 04, 2005 at 04:52:11PM -0400, Roberto C. Sanchez wrote:
>
> > Incidentally, why put the mount points under / and not under /mnt or
> > /media?
>
> For those of us who like the command line, it makes for less typing.
Good po
On Mon, Jul 04, 2005 at 04:52:11PM -0400, Roberto C. Sanchez wrote:
> Incidentally, why put the mount points under / and not under /mnt or
> /media?
For those of us who like the command line, it makes for less typing.
--
Carl Fink [EMAIL PROTECTED]
If you
On Mon, Jul 04, 2005 at 01:31:03PM -0400, Edward Kamau wrote:
> Hi
>
> I have a usb sd card reader a usb cruzer mini jump drive and a usb cf
> card reader. I have created mount points for them as /cfcard /sdrive
> and /jdrive. AT the time I set them up this corresponded
> to /dev/sdb1, /dev/sdc1 a
Hi
I have a usb sd card reader a usb cruzer mini jump drive and a usb cf
card reader. I have created mount points for them as /cfcard /sdrive
and /jdrive. AT the time I set them up this corresponded
to /dev/sdb1, /dev/sdc1 and /dev/sdd1. So /etc/fstab looks like this:
/dev/
On Sun, 2003-01-12 at 09:25, Jan Trippler wrote:
> On Son, 12 Jan 2003 at 14:34 (+0100), ernst wrote:
> >
> > On Sat, 11 Jan 2003, Trey Sizemore wrote:
> >
> > > One more dumb question...how do I know my user ID?
> >
> > cat /etc/group |grep your_username
>
> Useless use of cat award ;-)
> grep
On Sun, 12 Jan 2003, Jan Trippler wrote:
> On Son, 12 Jan 2003 at 14:34 (+0100), ernst wrote:
> >
> > On Sat, 11 Jan 2003, Trey Sizemore wrote:
> >
> > > One more dumb question...how do I know my user ID?
> >
> > cat /etc/group |grep your_username
>
> Useless use of cat award ;-)
> grep your_use
On Son, 12 Jan 2003 at 14:34 (+0100), ernst wrote:
>
> On Sat, 11 Jan 2003, Trey Sizemore wrote:
>
> > One more dumb question...how do I know my user ID?
>
> cat /etc/group |grep your_username
Useless use of cat award ;-)
grep your_username /etc/group
But so you will not get the _user_ id. Try
On Sat, 11 Jan 2003, Trey Sizemore wrote:
> One more dumb question...how do I know my user ID?
cat /etc/group |grep your_username
/ernst
>
>
> On Sat, 11 Jan 2003 16:18:38 -0600, "Tom Hoover"
> <[EMAIL PROTECTED]> said:
>
>
> > On Sat, Jan 11, 2003 at 09:52:05AM -0500, Trey Sizemore wrote:
>
Now it appears that I have the drives identified correctly and setup in
/etc/fstab, but when I try to mount I get the following:
root@salmander:/home/trey# mount -t vfat /dev/sda1 /mnt/sda1
mount: No medium found
I know the card is good, and I even tried another card and got the same
result.
Any
This is the output of my /etc/fstab file. When booting, I noticed that
the screen said I had an error on line 15 (which is the line I just
added for the camera). Can you see what might be wrong? What is the
correct way to edit this file? I have noticed, based on line length
that columns don't l
On Sat, Jan 11, 2003 at 06:26:32PM -0500, Trey Sizemore wrote:
> One more dumb question...how do I know my user ID?
here are a few ways:
echo $UID
or
id -u
or
grep ^username: /etc/passwd | awk -F: '{print $3}'
:)
sean
msg23625/pgp0.pgp
Description: PGP signature
Trey Sizemore said:
> This is the output of my /etc/fstab file. When booting, I noticed
> that
> the screen said I had an error on line 15 (which is the line I just
> added for the camera). Can you see what might be wrong? What is the
> correct way to edit this file? I have noticed, based on
hiya,
On Sat, Jan 11, 2003 at 07:57:06PM -0500, Trey Sizemore wrote:
> /dev/camera /mnt/camera vfat user,no auto 0
> 0
did you mean for this to say user,noauto?
as for what to edit it with, i don't think there's a "right" editor
to use, so long as it doesn't do stupid
On Sat, Jan 11, 2003 at 06:26:32PM -0500, Trey Sizemore wrote:
> One more dumb question...how do I know my user ID?
grep trey /etc/passwd
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
One more dumb question...how do I know my user ID?
On Sat, 11 Jan 2003 16:18:38 -0600, "Tom Hoover"
<[EMAIL PROTECTED]> said:
> On Sat, Jan 11, 2003 at 09:52:05AM -0500, Trey Sizemore wrote:
> > 1. Are these assignments going to change each time I shut down and then
> > start up my machine (a
On Sat, Jan 11, 2003 at 09:52:05AM -0500, Trey Sizemore wrote:
> 1. Are these assignments going to change each time I shut down and then
> start up my machine (as far as how they are detected)? I asked because
> I am running a rather old machine that I leave on during the day, but
> then shut
Thanks for the assistance...two follow-up questions:
1. Are these assignments going to change each time I shut down and then
start up my machine (as far as how they are detected)? I asked because
I am running a rather old machine that I leave on during the day, but
then shut down at night.
2.
On Fri, Jan 10, 2003 at 11:05:18PM -0500, Trey Sizemore wrote:
> How can I tell how my USB devices are indentified in Linux? I want to
> be able to mount my Sandisk USB mass storage device to get pictures off
> my camera's CF card. I know through trial and error that my Zip 250 USB
> drive is see
How can I tell how my USB devices are indentified in Linux? I want to
be able to mount my Sandisk USB mass storage device to get pictures off
my camera's CF card. I know through trial and error that my Zip 250 USB
drive is seen as /dev/sda1 so I created a mnt/sda1 to access it. I have
several de
22 matches
Mail list logo