Re: [ilugd] unable to mount floopy from linux user side

2005-08-11 Thread Saurabh Nanda
 what I tries here : to put one entry in /etc/mtab file like this

You are not supposed to edit /etc/mtab. It is updated by mount
automatically each time a filesystem is mounted/unmounted.

 So please tell me from which file, I can make the system to mount the
 floopy from the user imdps account.

try the following command from user imdps:

imdps$ mount -tvfat /dev/fd0 /mnt/floopy

Nandz.
PS: FYI it's popularly known as a 'floppy'

-- 
http://nandz.blogspot.com

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Using Graphical Interface using ssh on networked machines

2005-08-11 Thread Saurabh Nanda
You could use something called SSH X Forwarding... I forget the exact
name right now.

The good-ol' method is:

host1$ xhost +host2
host1$ ssh host2

host2$ export DISPLAY=host1:0
host2$ gimp

Hope you get it... mail back if you want a detailed explanation.

Nandz.
-- 
http://nandz.blogspot.com

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Using Graphical Interface using ssh on networked machines

2005-08-11 Thread Vivek Kapoor
On Thu, August 11, 2005 11:21, [EMAIL PROTECTED] said:
 Hi

 One query regarding Xlib

 We are using Ubuntu on our very small network of 5 machines. We are
 learning to use the ssh command to access other machines on the network.
 However launching programmes remotely does not work - we get an error
 message as follows


 [EMAIL PROTECTED]:~$ gimp

 (gimp:12399): Gdk-WARNING **: locale not supported by Xlib

 (gimp:12399): Gdk-WARNING **: cannot set locale modifiers
 GIMP could not initialize the graphical user interface.
 Make sure a proper setup for your display environment exists.

try
$ ssh [EMAIL PROTECTED] -XC

this enables X forwarding and compression. should work

o--o
| vivek  *  [EMAIL PROTECTED]  *  http://exain.net |
|Registered Linux User: #305493|
o--o


___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Using Graphical Interface using ssh on networked machines

2005-08-11 Thread Abhijit Menon-Sen
At 2005-08-11 12:22:04 +0530, [EMAIL PROTECTED] wrote:

 The good-ol' method is:
 
 host1$ xhost +host2
 host1$ ssh host2
 
 host2$ export DISPLAY=host1:0
 host2$ gimp

Just do

host1$ ssh -X host2
host2$ gimp

(The xhost is unnecessary, and the export is wrong, but the idea is
exactly right. :)

-- ams

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Using Graphical Interface using ssh on networked machines

2005-08-11 Thread Saurabh Nanda
 (The xhost is unnecessary, and the export is wrong, but the idea is
 exactly right. :)

Eh? did I mess up something? Why is the export wrong?

Nandz.

-- 
http://nandz.blogspot.com

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Using Graphical Interface using ssh on networked machines

2005-08-11 Thread Abhijit Menon-Sen
At 2005-08-11 12:48:30 +0530, [EMAIL PROTECTED] wrote:

 Eh? did I mess up something? Why is the export wrong?

If you do this:

 host1$ xhost +host2
 host1$ ssh host2

 host2$ export DISPLAY=host1:0
 host2$ gimp

It might work (if the X server on host1 accepts TCP connections, which
is now becoming increasingly unlikely), but it wouldn't be using ssh X
forwarding, it would use a direct TCP connection to host1:6000.

If you want to use ssh to forward X traffic, you should let it set the
DISPLAY for you (and it'll set it to something like localhost:10.0).
Then it forwards data to the server so that it sees the connection as
being from (its) localhost, which is why the xhost is unnecessary.

-- ams

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


[ilugd] Awesome gizmo

2005-08-11 Thread Ankur Rohatgi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi All,
Stumbled across this completely awesome toy ,
http://www.projectblackdog.com/site/index.html . This has got to be in
I Got to have one those list .
- - Ankur.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFC+w7VbR7mO5apBYARAspfAKCvGhDJQkd7nzmqkkqIIbbcv1DRmwCgu5ab
45J2sDKrPoxxim82V9UpNZo=
=mJe9
-END PGP SIGNATURE-


___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Using Graphical Interface using ssh on networked machines

2005-08-11 Thread [EMAIL PROTECTED]
Thanks this works

regards
happily
ram

Abhijit Menon-Sen wrote:

At 2005-08-11 12:22:04 +0530, [EMAIL PROTECTED] wrote:
  

The good-ol' method is:

host1$ xhost +host2
host1$ ssh host2

host2$ export DISPLAY=host1:0
host2$ gimp



Just do

host1$ ssh -X host2
host2$ gimp

(The xhost is unnecessary, and the export is wrong, but the idea is
exactly right. :)

-- ams

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/

  


___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Using Graphical Interface using ssh on networked machines

2005-08-11 Thread Manish Popli
Hi.
When i tryed to open Xhost  by this command it says.
[EMAIL PROTECTED] ramesh]# xhost +devzone
xhost:  unable to open display 

wat i have to do now ??

Thanks 
Manish Popli

On 8/11/05, Saurabh Nanda [EMAIL PROTECTED] wrote:
 You could use something called SSH X Forwarding... I forget the exact
 name right now.
 
 The good-ol' method is:
 
 host1$ xhost +host2
 host1$ ssh host2
 
 host2$ export DISPLAY=host1:0
 host2$ gimp
 
 Hope you get it... mail back if you want a detailed explanation.
 
 Nandz.
 --
 http://nandz.blogspot.com
 
 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
 


-- 
Manish Popli

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Using Graphical Interface using ssh on networked machines

2005-08-11 Thread [EMAIL PROTECTED]
Check out Abijit menon sen's mail
those commands work for me (ubuntu machines)

ram

to revise the command
host1$ ssh -X host2
host2$ - fire up the programme you want

Manish Popli wrote:

Hi.
When i tryed to open Xhost  by this command it says.
[EMAIL PROTECTED] ramesh]# xhost +devzone
xhost:  unable to open display 

wat i have to do now ??

Thanks 
Manish Popli

On 8/11/05, Saurabh Nanda [EMAIL PROTECTED] wrote:
  

You could use something called SSH X Forwarding... I forget the exact
name right now.

The good-ol' method is:

host1$ xhost +host2
host1$ ssh host2

host2$ export DISPLAY=host1:0
host2$ gimp

Hope you get it... mail back if you want a detailed explanation.

Nandz.
--
http://nandz.blogspot.com

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/





  


___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Using Graphical Interface using ssh on networked machines

2005-08-11 Thread Manish Popli
no  i m not able to do that can u tell me step by step..
i gotta this result.
.
[EMAIL PROTECTED] ramesh]# ssh -X devzone
ssh: devzone: Name or service not known

Manish Popli

On 8/11/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 Check out Abijit menon sen's mail
 those commands work for me (ubuntu machines)
 
 ram
 
 to revise the command
 host1$ ssh -X host2
 host2$ - fire up the programme you want
 
 Manish Popli wrote:
 
 Hi.
 When i tryed to open Xhost  by this command it says.
 [EMAIL PROTECTED] ramesh]# xhost +devzone
 xhost:  unable to open display 
 
 wat i have to do now ??
 
 Thanks
 Manish Popli
 
 On 8/11/05, Saurabh Nanda [EMAIL PROTECTED] wrote:
 
 
 You could use something called SSH X Forwarding... I forget the exact
 name right now.
 
 The good-ol' method is:
 
 host1$ xhost +host2
 host1$ ssh host2
 
 host2$ export DISPLAY=host1:0
 host2$ gimp
 
 Hope you get it... mail back if you want a detailed explanation.
 
 Nandz.
 --
 http://nandz.blogspot.com
 
 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
 
 
 
 
 
 
 
 
 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/
 


-- 
Manish Popli

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


[ilugd] CVS replication

2005-08-11 Thread Manish Popli
Hi,
Any one can tell me how to make replication between two CVS servers??


-- 
Manish Popli

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Using Graphical Interface using ssh on networked machines

2005-08-11 Thread [EMAIL PROTECTED]
well I am a novice too but will try and tell you

[EMAIL PROTECTED] ramesh]# ssh -X devzone

instead of devzone you will have to give the name of the target machine 
and its ip something like

[EMAIL PROTECTED] ramesh]# ssh -X [EMAIL PROTECTED] 


The target machine I guess has to be on your network thats enable for ssh

regards
ram

Manish Popli wrote:

no  i m not able to do that can u tell me step by step..
i gotta this result.
.
[EMAIL PROTECTED] ramesh]# ssh -X devzone
ssh: devzone: Name or service not known

Manish Popli

On 8/11/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
  

Check out Abijit menon sen's mail
those commands work for me (ubuntu machines)

ram

to revise the command
host1$ ssh -X host2
host2$ - fire up the programme you want

Manish Popli wrote:



Hi.
When i tryed to open Xhost  by this command it says.
[EMAIL PROTECTED] ramesh]# xhost +devzone
xhost:  unable to open display 

wat i have to do now ??

Thanks
Manish Popli

On 8/11/05, Saurabh Nanda [EMAIL PROTECTED] wrote:


  

You could use something called SSH X Forwarding... I forget the exact
name right now.

The good-ol' method is:

host1$ xhost +host2
host1$ ssh host2

host2$ export DISPLAY=host1:0
host2$ gimp

Hope you get it... mail back if you want a detailed explanation.

Nandz.
--
http://nandz.blogspot.com

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/







  

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/





  


___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Hindi Websites with TTF fonts - failed in two options

2005-08-11 Thread [EMAIL PROTECTED]
Hi
I tried the various options and it still does not work
the sites I am trying to access are www.dainikjagran.com and 
www.amarujala.com - their fonts are available on the website itself.

I tried following the instructions as given by Vivek Kapoor , seen below 
but no progress.
I tried both as root and as user

tried the other option of making a local.conf file and that too does not 
work
my local.conf file is below:

?xml version=1.0?
!DOCTYPE fontconfig SYSTEM fonts.dtd
!-- /etc/fonts/local.conf file for local customizations --

fontconfig
dir/usr/X11R6/lib/X11/fonts/TTF/dir
dir/usr/share/fonts/hindi/dir
/fontconfig

I used gedit to edit and save
I wonder what I am missing ??


regards
ram


Vivek Kapoor wrote:

On Tue, August 9, 2005 12:23, [EMAIL PROTECTED] said:
  

in ubuntu no fiddling with local.conf is required. copy all the TTF fonts
to /etc/fonts
then in your home directory make a symlink of /etc/fonts as .fonts

$ cd ~
$ ln -s /etc/fonts .fonts

run fc-cache though usually its not required. it rebuilds the fonts cache

$ fc-cache -f

that's all. open your preferences-fonts and see if the font is listed.
you don't even need to logout. just shut down firefox and start it and it
will be there

  


___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Using Graphical Interface using ssh on networked machines

2005-08-11 Thread Vivek Kapoor
On Thu, August 11, 2005 16:00, Manish Popli said:
 no  i m not able to do that can u tell me step by step..
 i gotta this result.
 .
 [EMAIL PROTECTED] ramesh]# ssh -X devzone
 ssh: devzone: Name or service not known

 Manish Popli

devzone is the name of the host. if you don't have your dns configured or
/etc/hosts file is not updated and are not able to even ping devzone then
you will need to use the IP Address

read the ssh manpage by typing

man ssh

if your username is thomas and your machine's IP address is 192.168.1.1
then you will type

ssh [EMAIL PROTECTED] -XC

X parameter is used for forwarding and C is used for compression

it'll be better that you start working on your linux system and get
comfortable with it before attempting to do other more complicated things.
 cvs replication (as mentioned in one of your mails) would be something
difficult to achieve if you're not familiar with your machine

o--o
| vivek  *  [EMAIL PROTECTED]  *  http://exain.net |
|Registered Linux User: #305493|
o--o



___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Using Graphical Interface using ssh on networked machines

2005-08-11 Thread Raj Mathur
 Saurabh == Saurabh Nanda [EMAIL PROTECTED] writes:

Saurabh You could use something called SSH X Forwarding... I
Saurabh forget the exact name right now.

Saurabh The good-ol' method is:

Saurabh host1$ xhost +host2 host1$ ssh host2

No, you don't do that.

Saurabh host2$ export DISPLAY=host1:0 host2$ gimp

The idea of using ssh for X11 forwarding is that the server thinks
it's talking to localhost, the client thinks connections are coming
from localhost, and ssh manages the tunnelling between the two.  ssh
will automatically set the server-side DISPLAY to the appropriate
value.

The method you're describing is for a non-ssh (insecure, uncompressed)
remote display.

Regards,

-- Raju

Saurabh Hope you get it... mail back if you want a detailed
Saurabh explanation.

Saurabh Nandz.  -- http://nandz.blogspot.com

-- 
Raj Mathur[EMAIL PROTECTED]  http://kandalaya.org/
   GPG: 78D4 FC67 367F 40E2 0DD5  0FEF C968 D0EF CC68 D17F
  It is the mind that moves

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Awesome gizmo

2005-08-11 Thread vikram ranade
Very cool :).Limited functionality though.
Vikram Ranade

On 8/11/05, Ankur Rohatgi [EMAIL PROTECTED] wrote:
 
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 Hi All,
 Stumbled across this completely awesome toy ,
 http://www.projectblackdog.com/site/index.html . This has got to be in
 I Got to have one those list .
 - - Ankur.
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.2.4 (GNU/Linux)
 Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
 
 iD8DBQFC+w7VbR7mO5apBYARAspfAKCvGhDJQkd7nzmqkkqIIbbcv1DRmwCgu5ab
 45J2sDKrPoxxim82V9UpNZo=
 =mJe9
 -END PGP SIGNATURE-
 
 
 __
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Hindi Websites with TTF fonts - failed in two options

2005-08-11 Thread Vivek Kapoor
On Thu, August 11, 2005 16:11, [EMAIL PROTECTED] said:
 Hi
 I tried the various options and it still does not work
 the sites I am trying to access are www.dainikjagran.com and
 www.amarujala.com - their fonts are available on the website itself.


i went to dainikjagran.com, downloaded the font and copied it to .fonts
folder in my home directory. then i restarted firefox. the site didn't
work. however, when i made a test html page and used Jagran as the font
face it worked without problems.

it seems the issue is with the website as if you look at the HTML they're
using something called pfr. i'm not sure what it is, maybe it downloads
the font from the internet and is viewable only on the internet explorer.

as for the font installation, the simplest is to create a .fonts folder in
the home directory, copy all the required fonts in that directory and
you're done. but you'll need to repeat this process for all users. hence i
suggested to put everything in /etc/fonts and make a symlink of /etc/fonts
to .fonts. this is using gnome 2.x series only and right now it works
without a hitch on my ubuntu hoary and breezy.

o--o
| vivek  *  [EMAIL PROTECTED]  *  http://exain.net |
|Registered Linux User: #305493|
o--o


___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] CVS replication

2005-08-11 Thread Raj shekhar
in infinite wisdom Manish Popli spoke thus on 08/11/05 16:01:
 Hi,
 Any one can tell me how to make replication between two CVS servers??

If you are interested in distributed source code management (scm), have 
a look at bazaar (http://bazaar-ng.org/) or arch or monotone.  I have 
not used them myself, but they were strong contenders to replace 
bitkeeper as the chose for scm when BitKeeper pulled off its support.
-- 
Raj ShekharY!IM : lunatech3007
blog : http://rajshekhar.net/blog  home : http://rajshekhar.net
Disclaimer : http://rajshekhar.net/disclaimer

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


[ilugd] unable to mount floopy from linux user side

2005-08-11 Thread Yudhi
Thanx Nandz,

I have already tried this 

imdps$ mount -tvfat /dev/fd0 /mnt/floopy

but the result which this command shows is:
you must be root to mount.

And my problem is I am being able to mount the floopy and read its
contents as superuser by simply using the command mount /mnt/floppy,
but not from the user side like in my case imdps.

Any comments please???


Message: 1
Date: Thu, 11 Aug 2005 12:18:55 +0530
From: Saurabh Nanda [EMAIL PROTECTED]
Subject: Re: [ilugd] unable to mount floopy from linux user side
To: The Linux-Delhi mailing list ilugd@lists.linux-delhi.org
Message-ID: [EMAIL PROTECTED]
Content-Type: text/plain; charset=ISO-8859-1

 what I tries here : to put one entry in /etc/mtab file like this

You are not supposed to edit /etc/mtab. It is updated by mount
automatically each time a filesystem is mounted/unmounted.

 So please tell me from which file, I can make the system to mount the
 floopy from the user imdps account.

try the following command from user imdps:

imdps$ mount -tvfat /dev/fd0 /mnt/floopy

Nandz.
PS: FYI it's popularly known as a 'floppy'

--
http://nandz.blogspot.com

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] unable to mount floopy from linux user side

2005-08-11 Thread Sudev Barar
On 8/12/05, Yudhi [EMAIL PROTECTED] wrote:
 imdps$ mount -tvfat /dev/fd0 /mnt/floopy
 
 but the result which this command shows is:
 you must be root to mount.
Two options:
1. Put the mount on automount in fstab ???
2. Change the permission for /dev/floppy to 777 so that everyone is
able to mount this device. Or move the ownership to a group which is
allowed to mount this.
-- 
Sudev Barar
Learning Linux

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] unable to mount floopy from linux user side

2005-08-11 Thread Vivek Kapoor
On Fri, August 12, 2005 9:42, Yudhi said:
 Thanx Nandz,

 I have already tried this

imdps$ mount -tvfat /dev/fd0 /mnt/floopy

 but the result which this command shows is:
 you must be root to mount.

no need to do all this. just add users in your fstab options pertaining
to /mnt/floppy.

for e.g.
/dev/fd0  /mnt/floopy  auto  noauto,users,kudzu 0 0

then mount it using
$ mount /mnt/floppy

read the man pages, its written there very clearly
$ man fstab
$ man mount

o--o
| vivek  *  [EMAIL PROTECTED]  *  http://exain.net |
|Registered Linux User: #305493|
o--o


___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/