Linux-Misc Digest #728, Volume #27 Fri, 27 Apr 01 14:13:03 EDT
Contents:
Re: comprehensible help on backspace and delete... (Frank da Cruz)
Re: ATI Radeon X driver ? (Stephen Hui)
Re: bad pthreads (or some other error)? (Stephen Hui)
Re: linux for free? (Jan Schaumann)
Re: bad pthreads (or some other error)? (bert buchholz)
expect related in.telnetd problem in linux 6.2 (Seth D Ambrose)
Re: enlightenment keyboard shortcuts Q's: using the win key, using c+a+sh, conf
file? (Stephen Rank)
Re: Removing Linux (LFessen106)
telnet delay ("Lupus Yonderboy")
Re: linux for free? ([EMAIL PROTECTED])
Re: Problem Installing KDE 2.1 on RH 7.0 (Bill Piety)
sending input to serial console (Jonathan Magid)
Re: a question about vi? (Jim Cochrane)
Re: Removing Linux (Markku Kolkka)
Re: Emacs and color priniting (Stephen Rank)
Re: Modem test - (John Todd)
Multimonitor under Mandrake 8.0 (Brian)
Re: Multimonitor under Mandrake 8.0 ([EMAIL PROTECTED])
Re: Problem Installing KDE 2.1 on RH 7.0 ("Richard A. Bilonick")
Re: Multimonitor under Mandrake 8.0 ([EMAIL PROTECTED])
Re: linux for free? (Massimiliano Masi)
Re: Mandrake 8.0 Update (Lee Webb)
Re: linux to ntfs (Joshua Baker-LePain)
Re: How to override a exit file using vim ?? (Lee Webb)
----------------------------------------------------------------------------
From: [EMAIL PROTECTED] (Frank da Cruz)
Subject: Re: comprehensible help on backspace and delete...
Date: 27 Apr 2001 15:13:01 GMT
In article <[EMAIL PROTECTED]>,
Paul Kimoto <[EMAIL PROTECTED]> wrote:
: In article <9ca7om$phj$[EMAIL PROTECTED]>, dmayo wrote:
: > Could anyone point me to comprehensible help on how to fix the backspace
: > and delete keys?
:
: I use these, although you may not find them truly comprehensible:
:
: http://www.ibb.net/~anne/keyboard.html
: http://www.linuxdoc.org/HOWTO/Keyboard-and-Console-HOWTO-5.html
: http://www.linuxdoc.org/HOWTO/mini/BackspaceDelete/
:
Add this to the list. Hopefully it's a bit more comprehensible:
http://www.columbia.edu/kermit/backspace.html
- Frank
------------------------------
From: Stephen Hui <[EMAIL PROTECTED]>
Subject: Re: ATI Radeon X driver ?
Date: Fri, 27 Apr 2001 10:03:32 -0500
Hi, Peter,
I use RedHat 6.2 and XFree 4.0.2 with my Radeon 32 DDR. RH7.1 ships
with XFree 4.0.3, and I haven't installed 4.0.3 yet on my system (it is
sitting on my disk though) so I don't know if it will be any different.
In the xf86config file for 4.0.2 I had to explicitly tell it to use the
Radeon driver.
You could try looking at this document:
http://www.xfree86.org/4.0.3/ati.html
(It's been a long time since I last read through it, so I don't remember
exactly what XFree says about ATI cards, but I think I remember some
useful information there.)
Hope this helps.
Stephen.
Peter Fabian wrote:
>
> Hi,
>
> I installed the newest RedHat 7.1, but although it detects my ATI Radeon 32
> DDR vcard, I cannot get anything else than a blank screen. I kept looking
> around the net for a solution, but the only thing I got were complaints by
> other users of this video card. Is there anyone who could help me ?
>
> Thanks a lot
>
> -----
> Peter Fabian
> [EMAIL PROTECTED]
--
Stephen Hui, ARL:UT, Austin, TX
"Backups are for wimps. Real men upload their data to an
FTP site and have everyone else mirror it." - Linus Torvalds
------------------------------
From: Stephen Hui <[EMAIL PROTECTED]>
Subject: Re: bad pthreads (or some other error)?
Date: Fri, 27 Apr 2001 10:13:29 -0500
In your program, be sure to
#include <pthread.h>
and in your gcc command be sure to link against the library
gcc -o program program.c -lpthread
(that's a lower-case 'L' in '-lpthread'.)
That *should* do it.
Stephen.
fred smith wrote:
>
> bert buchholz <[EMAIL PROTECTED]> wrote:
> : Hi folks,
> <snip>
> : ... Also when trying to compile
> : something linked dynamically against pthread, I get a whole lotta errors
> : like as if the linker didn't even see the libs:
>
> : /usr/include/pthread.h:141: `pthread_t' was not declared in this scope
> : /usr/include/pthread.h:141: `__thread' was not declared in this scope
> : /usr/include/pthread.h:142: parse error before `*'
>
> These aren't linker errors, these are compiler errors. It's telling you
> that it has not seen a declaration of pthread_t. That means there's some
> #include directive missing from the code, or a broken include file.
>
> On my RH62 box pthread.h includes bits/pthreadtypes.h which in turn
> contains a typedef of pthread_t. It sounds as if something is wrong
> with that relationship on your system.
>
> : and so on... actually, it's not my program, but I don't wanna hack the code
>
> You may need to hack it just to fix whatever is busted in it.
>
> : and it worked before already, but when I tried to udgrade to glibc-2.2,
> : some things just didn't work anymore, so I removed it again, but I'm not
> : sure if I really got everything cleaned.
>
> Again: It's not a library problem, it's either a problem with your system
> include files, or a problem with the program.
>
> : Bert Buchholz
>
> --
> ---- Fred Smith -- [EMAIL PROTECTED] ----------------------------
> I can do all things through Christ
> who strengthens me.
> ------------------------------ Philippians 4:13 -------------------------------
--
Stephen Hui, ARL:UT, Austin, TX
"Backups are for wimps. Real men upload their data to an
FTP site and have everyone else mirror it." - Linus Torvalds
------------------------------
From: [EMAIL PROTECTED] (Jan Schaumann)
Subject: Re: linux for free?
Date: Fri, 27 Apr 2001 15:23:02 -0000
* wael fares wrote:
> hi all
> i would like to know a web site to download linux os for free
http://www.linuxiso.org
-Jan
--
Jan Schaumann <http://www.netmeister.org>
Well, you'll be happy to know I don't work very hard. Actually, I'm
bringing the plant down from the inside. -- Homer Simpson
------------------------------
From: bert buchholz <[EMAIL PROTECTED]>
Subject: Re: bad pthreads (or some other error)?
Date: Fri, 27 Apr 2001 17:41:50 +0200
Reply-To: [EMAIL PROTECTED]
Stephen Hui wrote:
> In your program, be sure to
>
> #include <pthread.h>
>
> and in your gcc command be sure to link against the library
>
> gcc -o program program.c -lpthread
>
> (that's a lower-case 'L' in '-lpthread'.)
>
> That *should* do it.
> Stephen.
Thanks, I solved the problem yesterday (I was aware of this -lpthread
stuff, but thanks anyway), I made a rather ugly hack (if you can call it a
hack :) ), but non the less it worked. But I'm still not sure, if the rest
of my libc is set up correctly... well, suppose I got to figure out the
next days.
Bert
------------------------------
From: Seth D Ambrose <[EMAIL PROTECTED]>
Subject: expect related in.telnetd problem in linux 6.2
Date: Fri, 27 Apr 2001 11:49:00 -0400
Howdy,
Anyone seen a problem with telnetd terminating in (redhat) linux 6.2
when used by expect?
We've ported our software to linux and in testing it I seem to have
stumbled onto an interesting problem with the os. I use expect to
automate my testing and intermittently I am unable to successfully spawn
a login. Expect gets the login: prompt but never sees the Password:
prompt. Then I see an "invalid spawn id" error, which indicates the
login process has disappeared. Expect_out(buffer) shows absolutely
nothing.
I have tailed /var/log/messages while reproducing this problem and each
time it occurs I see the following:
"Apr 25 14:09:21 cnr-test4-lnx-1 inetd[560]: pid 21466: exit status 1"
Telnetd has PPID 560, so this indicates to me that telnetd is crashing,
which would explain the invalid spawn id error, since the login process
terminates and effectively disappears.
I have tried disabling various authentication libs (cracklib etc) to no
avail.
If anyone can shed any light on the problem, offer advice, or is would
like to chat about using expect to test network software on linux 6.2
I'd love to hear from you.
Thanks much,
Seth Ambrose
Software Engineer
cisco Systems
------------------------------
From: Stephen Rank <[EMAIL PROTECTED]>
Subject: Re: enlightenment keyboard shortcuts Q's: using the win key, using c+a+sh,
conf file?
Date: 27 Apr 2001 16:59:06 +0100
"David Liu" <[EMAIL PROTECTED]> writes:
> I like the keyboard shortcuts in enlightenment, however, I'm runing into a
> few problems:
>
> 1. I can't use the WIN key for any shortcuts. For example, I would like WIN
> to open the menu (like windows)
Not sure about this. xev might help you to discover what
keysym/keycode (not sure which you need) it generates. ATM I'm on a
Happy Hacking keyboard, with nary an OS-specific feature in sight, so
I can't help you there. You might have to use xmodmap (with its
slightly arcane syntax) or xkeycaps (if you can persuade it to
cooperate) to assign it to a spare keysym/keycode and then assign that
to a useful function.
> 2. I tried setting keys to Ctrl + Alt + Shift + <some key>. They work while
> I'm in session, but as soon as I log out, they get changed to Ctrl + Shift.
> Even if I save the session.
Sounds like you're using an oldish version of Enlightenment (with the
conf tool that was kind-of replaced with menu options in later
versions). Not sure whether an upgrade would help or not, though.
The session thing seems a bit odd; is there an option to save settings
in the Enlightenment conf tool? I can't remember.
> 3. When I change settings, do they get stored in some conf file? That would
> be nice so that I could perform edits to import changes quickly instead of
> going through the GUI. I grepped on obvious strings, but I couldn't find a
> configuration file.
In the version I've got, keyboard shortcuts are in
~/.enlightenment/keybindings.cfg if it exists, otherwise in
/usr/share/enlightenment/config/keybindings.cfg (possible
dist-dependent; try `locate keybindings.cfg'), which you have to
modify by hand (well, with the editor of your choice).
All slightly vague, but perhaps you can use the above as a starting
point and take it from there.
Stephen
--
988386614
------------------------------
From: [EMAIL PROTECTED] (LFessen106)
Date: 27 Apr 2001 16:06:27 GMT
Subject: Re: Removing Linux
>Hi I have a problem. I have to uninstall Linux off of my computer. Right
>now i have Corel Linux on my D: drive and Windows 98 on my C: drive. When
>my computer boots it lilo starts up and asks if i want to go into linux or
>windows. I need to get linux off of my system since i'm giving this
>computer away.
I'd remove windows and leave Linux on there... Seriously, half an hour of
Linux instruction getting someone started will save you hundreds of tech calls
and reinstalls with windows.
------------------------------
From: "Lupus Yonderboy" <[EMAIL PROTECTED]>
Subject: telnet delay
Date: Fri, 27 Apr 2001 18:13:20 +0200
i have Slack 7.1 installed on a box in my LAN. when i telnet to that machine
from a windows box, there's a long delay (about 1 or 2 mins) before the
prompt appears. after i logged in and back out, sometimes, if i telnet again
after a short while, the prompt comes immediately. can somebody tell me why?
i've installed slack on many LANs before, but i've never come across this
problem.
thanks,
lupus
------------------------------
From: [EMAIL PROTECTED]
Subject: Re: linux for free?
Date: Fri, 27 Apr 2001 16:15:13 GMT
wael fares <[EMAIL PROTECTED]> writes:
> i would like to know a web site to download linux os for free
The canonical location is the FTP site ftp.kernel.org.
All official releases of the Linux OS going back fairly deeply into
the mists of time are available there.
--
(reverse (concatenate 'string "ac.notelrac.teneerf@" "454aa"))
http://www.ntlug.org/~cbbrowne/resume.html
"There's nothing worse than having only one drunk head."
-- Zaphod Beeblebrox
------------------------------
From: Bill Piety <[EMAIL PROTECTED]>
Subject: Re: Problem Installing KDE 2.1 on RH 7.0
Date: Fri, 27 Apr 2001 11:30:53 -0500
Richard A. Bilonick wrote:
> I went to www.kde.org and downloaded all the components for KDE (base,
> libs, etc., and arts, htdg, etc.) for Red Hat 7.0. I downloaded
> everything. I installed all the components simultaeously using rpm and
> there were no complaints or dependency problems.
>
> Howerver, when I logged out and then tried to come back into KDE, the
> KDE logon screen would reappear (and the block on the left with an image
> looked funny). When I went into another consol, I could see the error
> message from kdm:
>
> kdm: error while loading shared libraries: libmng.so.0 cannot load
> shared object file: No such file or directory.
>
> Now one of the things I installed was libmng. When I search for
> libmng.so.0, rpmfind also brings up libmng - howerver looking at what is
> provided it does not show libmng.so.0. And when I see if libmng.so.0 has
> been actually installed, it does not show up anywhere on the computer's
> file system. I don't understand what is going on here.
>
> So I then re-installed kde from RH 7.0 cd and got back my original KDE
> desktop. There was only one small problem. For som reason, the image for
> a folder can't be found, so all folders show as something with a
> question mark. I'm not sure how to fix that. (There were some error
> messages when KDE came back up and I'm sure it had to do with not
> finding the image file but I don't remember the exact message.)
>
> Any help would be greatly appreciated.
>
> Rick Bilonick
>
>
I've got KDE 2.1, libmng-0.9.3-0 and it does provide libmng.so.0. Also
running RH 7.0. It's placed under /usr/lib.
------------------------------
From: [EMAIL PROTECTED] (Jonathan Magid)
Subject: sending input to serial console
Date: Fri, 27 Apr 2001 16:06:04 +0000 (UTC)
Hi,
I'm using a Livingston Port Master terminal server to create a serial
console server for a bunch of linux machines. I'm using lilo to send the
boot information to the serial console, with these statements in the
lilo.conf:
serial=0,9600n8
append="console=tty0 console=ttyS0,9600n8"
This mostly works. I get all the boot output on the attached serial line,
but it doesn't allow me to input anything- if I type characters they echo
on the screen (they're transmitted fine), but hitting the tab key, for
example, at the lilo prompt does not pause lilo for input.
Is this normal? Or is there some way to have my input used by the serial
console?
thanks,
jem.
--
Unix Jack of All Trades
Email: jem@sunsite^H^H^H^H^H^H^Hmetalab^H^H^H^H^H^H^Hibiblio.org
------------------------------
From: [EMAIL PROTECTED] (Jim Cochrane)
Subject: Re: a question about vi?
Date: 27 Apr 2001 10:43:30 -0600
In article <9cbvmo$[EMAIL PROTECTED]>,
hushui <[EMAIL PROTECTED]> wrote:
> i use tin to read and post article to newsgroups.
>When I post article , I want to copy some part of other file.
>I use :e otherfile ,but everytime the editor of tin (maybe vi) want me to
>"No write since last change ,use ! to override "
>But I don't want to quit either of the two file .
>Why ??
>What can I do??
>Thank you
>
If you understand you correctly, you can do:
:n! otherfile %
This will force vi to read the other file, even if you've changed the
current file; the '%' tells vi that the "next" file after otherfile is the
current file. So when you're finished with otherfile, you can do:
:n
to go back to the original file (now the "next" file). Or, if you changed
otherfile and don't want to save it:
:n!
which again forces vi to go back to the original file.
>--
>
>Hi
> I am a linux guy from china.
>
--
Jim Cochrane
[EMAIL PROTECTED]
------------------------------
From: Markku Kolkka <[EMAIL PROTECTED]>
Subject: Re: Removing Linux
Date: 27 Apr 2001 19:35:35 +0300
Michael McConnell <[EMAIL PROTECTED]> writes:
> > Hi I have a problem. I have to uninstall Linux off of my computer. Right
> > now i have Corel Linux on my D: drive and Windows 98 on my C: drive. When
> > my computer boots it lilo starts up and asks if i want to go into linux or
> > windows. I need to get linux off of my system since i'm giving this
> > computer away. I know i have to format my D: drive but how do I do that, if
> > in Windows I don't see the D: drive? And how do i get lilo from starting up
> > when i boot?
>
> In Windows, go to a DOS box and do: fdisk /mbr
That will _not_ remove Linux, it just prevents booting it from the
hard disk (it's still usable with a boot floppy). You must remove the
Linux partitions using _Linux_ fdisk (or cfdisk) before clearing the MBR.
--
Markku Kolkka
[EMAIL PROTECTED]
------------------------------
From: Stephen Rank <[EMAIL PROTECTED]>
Subject: Re: Emacs and color priniting
Date: 27 Apr 2001 18:01:31 +0100
Ramin Sina <[EMAIL PROTECTED]> writes:
> Emacs has an option called global fonts that when you enable it in your C,
> C++ or TeX or whatever file, you can see the comments, functions, etc. in
> the file color coded for ease of use. Is there a way to print within emacs
> or preferably outside with lpr to a color printer the same color coded page?
You can't do this from outside Emacs: it's Emacs doing the
highlighting. Have a look at the FAQ (in XEmacs it's q5.3.3), which
directs you to the ps-print package.
HTH,
Stephen
--
988390822
------------------------------
From: [EMAIL PROTECTED] (John Todd)
Subject: Re: Modem test -
Date: 27 Apr 2001 16:46:06 GMT
If echo ath1 > /dev/ttyS1
does not work, you probably need to sort out permissions.
On Wed, 25 Apr 2001 19:02:52 -0400, DMcBee
<[EMAIL PROTECTED]> wrote:
>How do you invoke a dial tone from the modem from the command prompt? In
>dos, you'd use echo ath0 > com2 , but what to use in Linux? ath0 > ttys0 ?
>
> Thanks-
> Drew M
>
>
--
John E. Todd [EMAIL PROTECTED]
_______________________________
possibly posted on $5 XT clone.
Internet for All!
------------------------------
From: Brian <[EMAIL PROTECTED]>
Subject: Multimonitor under Mandrake 8.0
Date: Fri, 27 Apr 2001 17:30:08 -0000
I've been struggling with Linux for months now trying to get multimonitor
to work with my Matrox G400 Dualhead. I've followed what little
documentation I could find to no avail. My XF86Config is set up right,
to my knowledge, but I may be calling xinerama in the wrong way. I've
no way to tell since there seems to be no documentation on it. I'm
using KDE, if it makes any difference. I'd appreciate any help. Just a
link to a useful URL would be much appreciated. I've searched
Mandrakeforum, but there isn't anything useful. Just someone who
started using a G400 and then switched to an AGP+PCI combo.
Thanks!
--
Posted via CNET Help.com
http://www.help.com/
------------------------------
From: [EMAIL PROTECTED]
Subject: Re: Multimonitor under Mandrake 8.0
Date: Fri, 27 Apr 2001 17:38:13 GMT
Brian <[EMAIL PROTECTED]> wrote:
> I've been struggling with Linux for months now trying to get multimonitor
> to work with my Matrox G400 Dualhead. I've followed what little
> documentation I could find to no avail. My XF86Config is set up right,
> to my knowledge, but I may be calling xinerama in the wrong way. I've
> no way to tell since there seems to be no documentation on it. I'm
> using KDE, if it makes any difference. I'd appreciate any help. Just a
> link to a useful URL would be much appreciated. I've searched
> Mandrakeforum, but there isn't anything useful. Just someone who
> started using a G400 and then switched to an AGP+PCI combo.
> Thanks!
Well, I've gotten it running... It's not all that easy, as you're finding
out :-)
First things first. What isn't working for you? Dualhead (using two
monitors)? Xinerama (using two monitors as if they're one large display)?
Both?
There are a couple great resources... First is the DRI user's guide. It
has a brief section on the Matrox cards, including a couple notes about
dualhead...
http://dri.sourceforge.net/doc/DRIuserguide.html
Next is the Linux forum on the Matrox website.
http://forum.matrox.com/cgi-bin/mgaforum/forumdisplay.cgi?action=topics&forum=Linux&number=2&DaysPrune=30&LastLogin=
Anyway, I wish you the best of luck.
Adam
------------------------------
Date: Fri, 27 Apr 2001 12:43:14 -0400
From: "Richard A. Bilonick" <[EMAIL PROTECTED]>
Subject: Re: Problem Installing KDE 2.1 on RH 7.0
Thanks. I'll look at libmng-0.9.3-0.
Rick Bilonick
Bill Piety wrote:
> Richard A. Bilonick wrote:
>
> > I went to www.kde.org and downloaded all the components for KDE (base,
> > libs, etc., and arts, htdg, etc.) for Red Hat 7.0. I downloaded
> > everything. I installed all the components simultaeously using rpm and
> > there were no complaints or dependency problems.
> >
> > Howerver, when I logged out and then tried to come back into KDE, the
> > KDE logon screen would reappear (and the block on the left with an image
> > looked funny). When I went into another consol, I could see the error
> > message from kdm:
> >
> > kdm: error while loading shared libraries: libmng.so.0 cannot load
> > shared object file: No such file or directory.
> >
> > Now one of the things I installed was libmng. When I search for
> > libmng.so.0, rpmfind also brings up libmng - howerver looking at what is
> > provided it does not show libmng.so.0. And when I see if libmng.so.0 has
> > been actually installed, it does not show up anywhere on the computer's
> > file system. I don't understand what is going on here.
> >
> > So I then re-installed kde from RH 7.0 cd and got back my original KDE
> > desktop. There was only one small problem. For som reason, the image for
> > a folder can't be found, so all folders show as something with a
> > question mark. I'm not sure how to fix that. (There were some error
> > messages when KDE came back up and I'm sure it had to do with not
> > finding the image file but I don't remember the exact message.)
> >
> > Any help would be greatly appreciated.
> >
> > Rick Bilonick
> >
> >
> I've got KDE 2.1, libmng-0.9.3-0 and it does provide libmng.so.0. Also
> running RH 7.0. It's placed under /usr/lib.
------------------------------
From: [EMAIL PROTECTED]
Subject: Re: Multimonitor under Mandrake 8.0
Date: Fri, 27 Apr 2001 17:44:12 GMT
[EMAIL PROTECTED] wrote:
>
>http://forum.matrox.com/cgi-bin/mgaforum/forumdisplay.cgi?action=topics&forum=Linux&number=2&DaysPrune=30&LastLogin=
A better (well, shorter, anyway) URL is:
http://forum.matrox.com/cgi-bin/mgaforum/forumdisplay.cgi?action=topics&number=2&SUBMIT=Go
Adam
------------------------------
From: Massimiliano Masi <[EMAIL PROTECTED]>
Subject: Re: linux for free?
Date: Fri, 27 Apr 2001 17:43:44 GMT
Hi...
wael fares <[EMAIL PROTECTED]> hai scritto:
> hi all
> i would like to know a web site to download linux os for free
> thanks
ftp.suse.com
ftp.slackware.com
ftp.redhat.com(?)
ftp.turbolinux.com
ftp.?????? :))))
--
Massimiliano Masi - <[EMAIL PROTECTED]>
(whispered) ... anger is a gift ...
#ICQ uin: 92905138
------------------------------
From: [EMAIL PROTECTED] (Lee Webb)
Crossposted-To:
alt.os.linux,comp.os.linux.help,comp.os.linux.questions,comp.os.linux.setup
Subject: Re: Mandrake 8.0 Update
Date: 27 Apr 2001 18:01:42 GMT
Reply-To: [EMAIL PROTECTED]
On Thu, 26 Apr 2001 03:49:06 GMT, Ken Koch wrote:
> Just updated Mandrake 7.2 to 8.0, and having some troubles.
>
> And it did work. I was able to get in fine, looked about. It didn't seem as
> though anything was wrong, but there is. When I go to Control Center->Look
> N Feel->Font Manager, I get an error that says,
> libstdc++-libc6.1-2.so.3:cannot load shared object file: No such file or
> directory. I look for libc6 on my system, and I can't find it.
Ah yes. I had the same problem when trying to run kisdn.
Simply fixed by symlinking what *is* there:
$ rm libstdc++-libc6.1-2.so.3
$ ln -s /usr/lib/libstdc++-3-libc6.2-2-2.10.0.so libstdc++-libc6.1-2.so.3
It works fine for me.
Lee.
[ Never going to use Mandrake when Debian Woody is released. ]
------------------------------
From: Joshua Baker-LePain <[EMAIL PROTECTED]>
Subject: Re: linux to ntfs
Date: 27 Apr 2001 18:03:30 GMT
alik blochin <[EMAIL PROTECTED]> wrote:
> i have a PC with linux mandrake and Win2k
> and in Win2k: C, D, E with ntfs on D and E
> i want that a regular user on linux can access the D and E
> partition .
NTFS write support is *very* dodgy and will almost certainly trash your
filesystem. Read-only is fine.
> Currently only root can access them and when i perform
> chmod -R 755 /mnt/windows_d
> it returns that "Read Only file system"
> How could it be dine ?
Look at the uid, gid, and umask options on the mount man page in the
ntfs section. For the above permissions, you'd use a umask of '022'.
But again, the filesystem will still be read-only. Leave it that way.
--
Joshua Baker-LePain
Department of Biomedical Engineering
Duke University
------------------------------
From: [EMAIL PROTECTED] (Lee Webb)
Subject: Re: How to override a exit file using vim ??
Date: 27 Apr 2001 18:03:10 GMT
Reply-To: [EMAIL PROTECTED]
On 25 Apr 2001 12:31:55 GMT, hushui wrote:
> When using vim to edit a file,then :w t.txt.
> But since t.txt exits , the tips say "File exits (using ! to override )"
> How to use "!" commmand in vim ??
> Thank you
:w! t.txt
Lee.
------------------------------
** FOR YOUR REFERENCE **
The service address, to which questions about the list itself and requests
to be added to or deleted from it should be directed, is:
Internet: [EMAIL PROTECTED]
You can send mail to the entire list by posting to comp.os.linux.misc.
Linux may be obtained via one of these FTP sites:
ftp.funet.fi pub/Linux
tsx-11.mit.edu pub/linux
sunsite.unc.edu pub/Linux
End of Linux-Misc Digest
******************************