Re: [vox-tech] Can a User Write To Windows Partition?

2004-12-11 Thread Robert G. Scofield
On Saturday 11 December 2004 18:24, Ken Bloom wrote:

> Here's an fstab entry I have on 2.6:
>
> /dev/hda6   /home/bloom/vfat vfat
> defaults,uid=1000,gid=1000,fmask=177,dmask=077 0 2
>
> Note that in a real fstab file, that would all be on one line.
>
> This gives me rw--- on files and rwx-- on directories. Note that
> you need x on directories in order to cd to them

I might try an entry like that.  But consider the entry below for my home 
directory:

/dev/hdb7/homereiserfs   acl,user_xattr1 2

I don't know what "acl,user_xattr" means.  But what if I added that entry to 
my Windows partition.  Do you think that would work without ruining 
something?

Thank you.

Bob

___
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech


[vox-tech] Request for help: CVS modifications for accelerating software development

2004-12-11 Thread J. Patrick Bedell

Hello,
   I am writing to the list in hopes of finding talented hackers here in
the Davis area that I can learn from.  I am in the early stages of an
effort to utilize "information currency" to organize software development
more efficiently, and I am looking for people to help me modify the CVS
source code.  More generally, I am a novice software developer hoping to
learn from experts.  

   To elaborate, I have recently released software (available from
http://sf.net/projects/infoeng and
http://prdownloads.sourceforge.net/infoeng/icws-0.0.1.tar.gz?download )
that enables one to create digital "instruments of economic scarcity" from
any unit of underlying information using a persistent network identifier
(i.e. URI) and a digest value for the underlying information.  These
instruments of economic scarcity will make it possible for the creators of
intellectual property to reap economic rewards for their efforts in new
ways, and will provide further incentives for individuals to share their
creative work freely with the public.  My intermediate goal is to modify
the source code for CVS so that every committed patchset returns an
information currency series that can be used to determine the economic
value of the patchset, but to do that will require a lot of CVS hacking.  

   So, this is an invitation to participate.  I am certain that there is
enormous potential for accelerating software development by new economic
means, but there is a lot of work to do to make that possibility a reality.
 Can anyone here help?  If you're interested, email me or subscribe to
[EMAIL PROTECTED]
(https://lists.sourceforge.net/lists/listinfo/infoeng-devel) to discuss
this further.  Thanks!

   J. Patrick Bedell
   [EMAIL PROTECTED]



___
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech


Re: [vox-tech] Can a User Write To Windows Partition?

2004-12-11 Thread Ken Bloom
On Sat, 11 Dec 2004 00:02:30 -0800
Rod Roark <[EMAIL PROTECTED]> wrote:

> On Friday 10 December 2004 11:01 pm, Bill Kendrick wrote:
> > On Fri, Dec 10, 2004 at 10:54:50PM -0800, Robert G. Scofield wrote:
> > > It seems to me that I remember being able to use Open Office in
> > > Linux to write to Windows files.  But maybe it's my memory that is
> > > failing.  Does anybody know if it is possible for a mere user to
> > > write to Windows files, and if so what FSTAB entry will enable
> > > this?
> > 
> > A quick Google search came up with something that looks of use:
> > 
> >   "Share Partitions Between Linux and Windows HOWTO"
> >   http://www.geocities.com/epark/linux/partition-share-HOWTO.html
> 
> Right, I guess the umask option is the key.  My fstab entry
> for this is:
> 
> /dev/hda1   /mnt/win  vfat  umask=0   0 0

If you're using Kernel 2.4, you should use umask and showexec.
If you're using Kernel 2.6, you should use fmask and dmask.
In either case, you can avoid making the partition world-writable (or
readable if you so choose) by using the uid and gid options.

Here's an fstab entry I have on 2.6:

/dev/hda6   /home/bloom/vfat vfat
defaults,uid=1000,gid=1000,fmask=177,dmask=077 0 2

Note that in a real fstab file, that would all be on one line.

This gives me rw--- on files and rwx-- on directories. Note that
you need x on directories in order to cd to them

--Ken Bloom

-- 
I usually have a GPG digital signature included as an attachment.
See http://www.gnupg.org/ for info about these digital signatures.


pgp9AvvFh6RpP.pgp
Description: PGP signature
___
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech


Re: [vox-tech] Xterm and terminal types

2004-12-11 Thread Ken Bloom
On Fri, 10 Dec 2004 18:12:19 -0800
Rod Roark <[EMAIL PROTECTED]> wrote:

> On Friday 10 December 2004 02:27 pm, Josh Parsons wrote:
> > On Thu, 9 Dec 2004, Mark K. Kim wrote:
> > 
> > > Since most X terminals understand "xterm" and its variants only,
> > > you'll either need to use a different terminal program or a
> > > program that can translate one term-speak to another.
> > 
> > As I recall, vte (the terminal widget used by gnome-terminal) was
> > designed to read a termcap file and configure itself to understand
> > the escape sequences described in that termcap.
> > 
> > Most people only ever use it with xterm, but it it ought to be
> > possible to get it to emulate sco-ansi by feeding it the right
> > termcap.
> 
> Would that be a source tweak?  I can't find any command line
> options for this in either gnome-terminal or vte.

http://developer.gnome.org/doc/API/2.0/vte/vteterminal.html

look at vte_terminal_set_emulation()

You may need to add this line to the appropriate place in Gnome
Terminal, but I don't know what it is.

As always, reply when you've tried it so that the googlers can find out
whether it worked.

-- 
I usually have a GPG digital signature included as an attachment.
See http://www.gnupg.org/ for info about these digital signatures.


pgplkATQIkL47.pgp
Description: PGP signature
___
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech


Re: [vox-tech] Can a User Write To Windows Partition?

2004-12-11 Thread Jonathan Stickel
Rod Roark wrote:
On Friday 10 December 2004 11:01 pm, Bill Kendrick wrote:
On Fri, Dec 10, 2004 at 10:54:50PM -0800, Robert G. Scofield wrote:
It seems to me that I remember being able to use Open Office in Linux to write 
to Windows files.  But maybe it's my memory that is failing.  Does anybody 
know if it is possible for a mere user to write to Windows files, and if so 
what FSTAB entry will enable this?
A quick Google search came up with something that looks of use:
 "Share Partitions Between Linux and Windows HOWTO"
 http://www.geocities.com/epark/linux/partition-share-HOWTO.html

Right, I guess the umask option is the key.  My fstab entry
for this is:
/dev/hda1   /mnt/win  vfat  umask=0   0 0
Yes, something like this works fine for mounting fat partions.  My entry 
is more involved for some semblence of security:

/dev/hda8   /DataPart   vfat  defaults,uid=win,gid=win,umask=0020 0
This way only users in the "win" group can write to the partion.
Bob doesn't explicitly say, though, whether his windows partion is FAT32 
or NTFS.  If it's NTFS, the above fstab lines won't work.

Jonathan
___
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech


Re: [vox-tech] Can a User Write To Windows Partition?

2004-12-11 Thread Rod Roark
On Friday 10 December 2004 11:01 pm, Bill Kendrick wrote:
> On Fri, Dec 10, 2004 at 10:54:50PM -0800, Robert G. Scofield wrote:
> > It seems to me that I remember being able to use Open Office in Linux to 
> > write 
> > to Windows files.  But maybe it's my memory that is failing.  Does anybody 
> > know if it is possible for a mere user to write to Windows files, and if so 
> > what FSTAB entry will enable this?
> 
> A quick Google search came up with something that looks of use:
> 
>   "Share Partitions Between Linux and Windows HOWTO"
>   http://www.geocities.com/epark/linux/partition-share-HOWTO.html

Right, I guess the umask option is the key.  My fstab entry
for this is:

/dev/hda1   /mnt/win  vfat  umask=0   0 0

-- Rod
___
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech