* How to make Linux/SOlaris talk to Window @ 2002-11-05 17:59 Mike Ni 2002-11-05 19:12 ` Paul Kraus 0 siblings, 1 reply; 8+ messages in thread From: Mike Ni @ 2002-11-05 17:59 UTC (permalink / raw) To: linux-newbie Dear all, Is there any mailing list or web site where I can get information about the interaction between Linux/Solaris/Window? The Linux/Solaris boxes of my department have some additional unused capacity, and I would like to see if there is any good way to put such unused resource into good use Thanks in advance MIke __________________________________________________ Do you Yahoo!? HotJobs - Search new jobs daily now http://hotjobs.yahoo.com/ - To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs ^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: How to make Linux/SOlaris talk to Window 2002-11-05 17:59 How to make Linux/SOlaris talk to Window Mike Ni @ 2002-11-05 19:12 ` Paul Kraus 2002-11-06 17:47 ` Mike Ni 0 siblings, 1 reply; 8+ messages in thread From: Paul Kraus @ 2002-11-05 19:12 UTC (permalink / raw) To: 'Mike Ni'; +Cc: linux-newbie How you checked out Samba? www.samba.org. I believe it can be complied on a Solaris box and I know it works on Linux. -----Original Message----- From: linux-newbie-owner@vger.kernel.org [mailto:linux-newbie-owner@vger.kernel.org] On Behalf Of Mike Ni Sent: Tuesday, November 05, 2002 12:59 PM To: linux-newbie@vger.kernel.org Subject: How to make Linux/SOlaris talk to Window Dear all, Is there any mailing list or web site where I can get information about the interaction between Linux/Solaris/Window? The Linux/Solaris boxes of my department have some additional unused capacity, and I would like to see if there is any good way to put such unused resource into good use Thanks in advance MIke __________________________________________________ Do you Yahoo!? HotJobs - Search new jobs daily now http://hotjobs.yahoo.com/ - To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs - To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs ^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: How to make Linux/SOlaris talk to Window 2002-11-05 19:12 ` Paul Kraus @ 2002-11-06 17:47 ` Mike Ni 2002-11-06 20:51 ` Elias Athanasopoulos 0 siblings, 1 reply; 8+ messages in thread From: Mike Ni @ 2002-11-06 17:47 UTC (permalink / raw) To: Paul Kraus; +Cc: linux-newbie Thanks for the information. Yes, I heard about SAMBA. It seems to me SAMBA was designed for handling the access on the file system level (I am studying it, let me know if anyone think otherwise). In addition to file system, is there any service or package would help the programmer to better manage the objects or application programming. (I know there is CORBA. What are out there in addition to CORBA?) Thanks Mike --- Paul Kraus <pkraus@pelsupply.com> wrote: > How you checked out Samba? www.samba.org. I believe > it can be complied > on a Solaris box and I know it works on Linux. > > -----Original Message----- > From: linux-newbie-owner@vger.kernel.org > [mailto:linux-newbie-owner@vger.kernel.org] On > Behalf Of Mike Ni > Sent: Tuesday, November 05, 2002 12:59 PM > To: linux-newbie@vger.kernel.org > Subject: How to make Linux/SOlaris talk to Window > > > Dear all, > > Is there any mailing list or web site where I can > get information about > the interaction between Linux/Solaris/Window? > > The Linux/Solaris boxes of my department have some > additional unused capacity, and I would like to see > if > there is any good way to put such unused resource > into > good use > > Thanks in advance > MIke > > __________________________________________________ > Do you Yahoo!? > HotJobs - Search new jobs daily now > http://hotjobs.yahoo.com/ > - > To unsubscribe from this list: send the line > "unsubscribe linux-newbie" > in the body of a message to > majordomo@vger.kernel.org More majordomo > info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at > http://www.linux-learn.org/faqs > > - > To unsubscribe from this list: send the line > "unsubscribe linux-newbie" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at > http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.linux-learn.org/faqs __________________________________________________ Do you Yahoo!? HotJobs - Search new jobs daily now http://hotjobs.yahoo.com/ - To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: How to make Linux/SOlaris talk to Window 2002-11-06 17:47 ` Mike Ni @ 2002-11-06 20:51 ` Elias Athanasopoulos 2002-11-06 21:46 ` Write to Windows partition from linux as ordinary user Abhijit Vijay 0 siblings, 1 reply; 8+ messages in thread From: Elias Athanasopoulos @ 2002-11-06 20:51 UTC (permalink / raw) To: Mike Ni; +Cc: Paul Kraus, linux-newbie On Wed, Nov 06, 2002 at 09:47:08AM -0800, Mike Ni wrote: > In addition to file system, is there any service or > package would help the programmer to better manage the > objects or application programming. (I know there is > CORBA. What are out there in addition to CORBA?) Yes. CORBA supports remote IPC and lots of different archs/languages. KDE uses CORBA for IPC. Another solution, might be Web Services (don't mean anything about .NET and stuff I ever touch). Specifically, you can use SOAP and XML for remote commnunication between application built in different architectures. I'm sure there is a free implementation of SOAP, but I can't come with a link right now. 'Web Services' is a fancy term, I dislike. I hope noone misunderstands the above paragraph. :-) Last but not least is sockets. Both Solaris and Linux support BSD sockets (or a variant closed to the original implementation). Windows have an implementation of sockets, too, but I am fine knowing nothing about it. :-) I'm afraid that in the latter case you'll have to duplicate a lot of code. Elias -- http://gnewtellium.sourceforge.net MP3 is not a crime. - To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs ^ permalink raw reply [flat|nested] 8+ messages in thread
* Write to Windows partition from linux as ordinary user 2002-11-06 20:51 ` Elias Athanasopoulos @ 2002-11-06 21:46 ` Abhijit Vijay 2002-11-06 22:43 ` Christoph 2002-11-07 10:52 ` Elias Athanasopoulos 0 siblings, 2 replies; 8+ messages in thread From: Abhijit Vijay @ 2002-11-06 21:46 UTC (permalink / raw) To: linux-newbie Hi All, I have a Windows 98 partition mounted on linux. The directory, /win98 on which I have done the mount is owned by me, as an ordinary user. However, I find that I cannot write to the partition except as root. Is there any way out, so that I do not need to su before writing? Regards, Abhijit. __________________________________________________ Do you Yahoo!? HotJobs - Search new jobs daily now http://hotjobs.yahoo.com/ - To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Write to Windows partition from linux as ordinary user 2002-11-06 21:46 ` Write to Windows partition from linux as ordinary user Abhijit Vijay @ 2002-11-06 22:43 ` Christoph 2002-11-07 8:08 ` Paul Furness 2002-11-07 10:52 ` Elias Athanasopoulos 1 sibling, 1 reply; 8+ messages in thread From: Christoph @ 2002-11-06 22:43 UTC (permalink / raw) To: Abhijit Vijay; +Cc: linux-newbie > I have a Windows 98 partition mounted on linux. The > directory, /win98 on which I have done the mount is > owned by me, as an ordinary user. However, I find that > I cannot write to the partition except as root. Is > there any way out, so that I do not need to su before > writing? I'm still very much a newbie so I could be totally off base here. I had a problem very similar to yours. I set up a local dos drive in fstab to be mounted. And whenever it was mounted, all the directories (and files) were owned as root. The way that I fixed that was to modify the entry in fstab to read as such: /dev/hdd1 /mnt/local_d vfat defaults,rw,gid=XXX,uid=XXX 0 0 so that it mounts the drive so it's own by group id XXX and user XXX and that did the trick. If you are just using mount from the command line, there are switches that do the above. If a more experienced user knows a better way or can clarify as to whether or not there are problems with this solution, I'd be very happy to hear it! Christoph - To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Write to Windows partition from linux as ordinary user 2002-11-06 22:43 ` Christoph @ 2002-11-07 8:08 ` Paul Furness 0 siblings, 0 replies; 8+ messages in thread From: Paul Furness @ 2002-11-07 8:08 UTC (permalink / raw) To: Christoph; +Cc: Abhijit Vijay, linux-newbie That's a pretty good solution. It _does_ mean that you can only write to that partition as root or the specified user. This may be a disadvantage for you, I don't know. You could add "noauto" to the fstab entry, if you like. That means that the partition is not mounted by default. If you want to mount it, you don't need to remember a load of options for mount. If your fstab line says this: /dev/hdd1 /mnt/local_d vfat noauto,defaults,rw,gid=XXX,uid=XXX 0 0 then you can mount it (you need to be root to mount it) like this: mount /mnt/local_d Paul. On Wed, 2002-11-06 at 22:43, Christoph wrote: > > I have a Windows 98 partition mounted on linux. The > > directory, /win98 on which I have done the mount is > > owned by me, as an ordinary user. However, I find that > > I cannot write to the partition except as root. Is > > there any way out, so that I do not need to su before > > writing? > > I'm still very much a newbie so I could be totally off base > here. I had a problem very similar to yours. I set up a > local dos drive in fstab to be mounted. And whenever it > was mounted, all the directories (and files) were owned as > root. The way that I fixed that was to modify the entry in > fstab to read as such: > > /dev/hdd1 /mnt/local_d vfat defaults,rw,gid=XXX,uid=XXX 0 0 > > so that it mounts the drive so it's own by group id XXX and > user XXX and that did the trick. > If you are just using mount from the command line, there > are switches that do the above. > > If a more experienced user knows a better way or can clarify > as to whether or not there are problems with this solution, I'd > be very happy to hear it! > > Christoph > > > - > To unsubscribe from this list: send the line "unsubscribe linux-newbie" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.linux-learn.org/faqs > -- Paul Furness Systems Manager Steepness is an illusion caused by flat things leaning over. - To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Write to Windows partition from linux as ordinary user 2002-11-06 21:46 ` Write to Windows partition from linux as ordinary user Abhijit Vijay 2002-11-06 22:43 ` Christoph @ 2002-11-07 10:52 ` Elias Athanasopoulos 1 sibling, 0 replies; 8+ messages in thread From: Elias Athanasopoulos @ 2002-11-07 10:52 UTC (permalink / raw) To: Abhijit Vijay; +Cc: linux-newbie On Wed, Nov 06, 2002 at 01:46:56PM -0800, Abhijit Vijay wrote: > I have a Windows 98 partition mounted on linux. The > directory, /win98 on which I have done the mount is > owned by me, as an ordinary user. However, I find that > I cannot write to the partition except as root. Is > there any way out, so that I do not need to su before > writing? Read the man page of mount. Search for the options 'users' and 'rw'. Elias -- http://gnewtellium.sourceforge.net MP3 is not a crime. - To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2002-11-07 10:52 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2002-11-05 17:59 How to make Linux/SOlaris talk to Window Mike Ni 2002-11-05 19:12 ` Paul Kraus 2002-11-06 17:47 ` Mike Ni 2002-11-06 20:51 ` Elias Athanasopoulos 2002-11-06 21:46 ` Write to Windows partition from linux as ordinary user Abhijit Vijay 2002-11-06 22:43 ` Christoph 2002-11-07 8:08 ` Paul Furness 2002-11-07 10:52 ` Elias Athanasopoulos
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox