Hi Rob,
--- Robert Shearman <rob(a)codeweavers.com> wrote:
> You can do it the same way Samba does it by using xattrs. It's a shame
> that so few ReactOS developers turned up to WineConf as the Samba team
> did a presentation on this.
Yes that has been my suggestion. In my mind most people wont upgrade from Windows to ReactOS as
they already have a Windows license so ReactOS like Linux wont have much need for NTFS. Right now
there is a ext2fsd that mostly works with ReactOS but currently it has some problems with ext3. I
am aware that you can do xattr support with ext2 and have suggested this to the ReactOS team.
Thanks
Steven
__________________________________
Yahoo! Mail Mobile
Take Yahoo! Mail with you! Check email on your mobile phone.
http://mobile.yahoo.com/learn/mail
Hi Mike,
--- Mike Nordell <tamlin(a)algonet.se> wrote:
> Reparse points is a feature of NTFS I've myself used since over half a
> decade now. As I know I'm not alone using both junction points and volume
> mount points, I'd think scraping the barrel might be "somewhat" misleading.
I think Robs point is the same as mine. Right now 99% of the world does not care about those
features where they do care about the other 50% of the features ReactOS does not currently
implement.
Thanks
Steven
__________________________________
Do you Yahoo!?
Yahoo! Mail - Find what you need with new enhanced search.
http://info.mail.yahoo.com/mail_250
Hi:
Remember the another filesystem driver could be installed in WinNT as part of the ReactOS setup in those dual boot scenarios. Maybe WinNT could boot from that X filesystem too. You won't be using an NTFS partition or creating it and you won't need to create a different driver for NT since ROS driver should run ok on NT.
Regards
Waldo
________________________________
From: ros-dev-bounces(a)reactos.com on behalf of Murphy, Ged (Bolton)
Sent: Wed 5/11/2005 10:22 AM
To: 'ReactOS Development List'
Subject: RE: [ros-dev] Security policy for FAT partition driver?
Jonathan Wilson wrote:
> Basicly, there are 2 kinds of users.
> There are those who have windows and and NTFS partition and want to access
> it from ROS. (perhaps dual boot ROS and win from the one NTFS partition
> ambie if that is something ROS can be made to do). These people can use
> ntfs.sys from MS since they have windows.
>
> Then there are those who dont have windows, dont have an existing NTFS
> partion and dont have a copy of ntfs.sys.
> Those people can use whatever other solution we come up with (ReactOS
> implementation of NTFS, some unix FS like ext/reiser etc or whatever else
> we come up with).
That seems to make perfect sense.
Why would anyone need/want to use NTFS if they don't need to access existing
NTFS drives?
If they do have existing NTFS drives, then as Jonathan says, they should
also have the driver from MS to access it.
Ged.
************************************************************************
The information contained in this message or any of its
attachments is confidential and is intended for the exclusive
use of the addressee. The information may also be legally
privileged. The views expressed may not be company policy,
but the personal views of the originator. If you are not the
addressee, any disclosure, reproduction, distribution or other
dissemination or use of this communication is strictly prohibited.
If you have received this message in error, please contact
postmaster(a)exideuk.co.uk
<mailto:postmaster@exideuk.co.uk> and then delete this message.
Exide Technologies is an industrial and transportation battery
producer and recycler with operations in 89 countries.
Further information can be found at www.exide.com
_______________________________________________
Ros-dev mailing list
Ros-dev(a)reactos.com
http://reactos.com:8080/mailman/listinfo/ros-dev
Hi:
Well that's right until you try to access an encrypted file system.
regards
Waldo
________________________________
From: ros-dev-bounces(a)reactos.com on behalf of Mike Swanson
Sent: Tue 5/10/2005 6:30 PM
To: ReactOS Development List
Subject: Re: [ros-dev] Security policy for FAT partition driver?
Philip: Any filesystem is plenty insecure if you are accessing it via
a bootable CD-ROM or other such measures. Also, ext2 already has a
journal, it's called ext3.
--
Mike
_______________________________________________
Ros-dev mailing list
Ros-dev(a)reactos.com
http://reactos.com:8080/mailman/listinfo/ros-dev
Hello,
I am playing with DebugView from SysInternals and i noticed that ROS
KeBugChecks in NtOpenProccess (line 878):
if (ClientId->UniqueThread)
{
/* Get the Process */
if (ClientId->UniqueThread == (HANDLE)-1) KEBUGCHECK(0);
<===== HERE
DPRINT("Opening by Thread ID: %x\n", ClientId->UniqueThread);
Status = PsLookupProcessThreadByCid(ClientId,
&Process,
&Thread);
DPRINT("Found: %x\n", Process);
It looks like that UniqueThread holds value -1. I look in
NtCreateThread and it has CID handle creation implemented
(PsCreateCidHandle and friends ...)
I only get KeBugCheck with DebugView (another exes run properly). If
you force a false evaluation (for example: if
((ClientId->UniqueThread)&&(0))) NtOpenProcess does a LookUp by
proccess cid and DebugView run fine
Any idea?
It'd be interesting to see one develop a filesystem for ReactOS, but
AS a filesystem designed explicitly for the OS itself. It could be
called "ROSfs" or something similar.
--- "Murphy, Ged (Bolton)" <MurphyG(a)cmpbatteries.co.uk> wrote:
> I think what Boaz was talking about here was is the fact that the Samba team
> (tridge) are talking about porting Samba to the Windows environment for ROS.
> My (limited) understanding of this is it would be a 'real' emulation of
> cifs/netbt, not samba running in a unix environment via POSIX.
>
> Speak to Steven Edwards or KJK for more info as they were talking to Tridge.
Short term Samba and Samba-Tng are going to be ported to Mingw so they can run on Windows and
ReactOS. Long term there does need to be a intigration plan. I think we can wrap smbd in a dummy
Server service but I have not done much research on the intigration part yet. Right now I just
want to get the damn things built and sharing files. Samba is a lot more besides just the
filesharing module.....Its ms-rpc, network printer spooling, wins and network winlogin/Active
Directory, etc.....
Thanks
Steven
Yahoo! Mail
Stay connected, organized, and protected. Take the tour:
http://tour.mail.yahoo.com/mailtour.html
Phillip Susi
> > 2. I have not been to Wineconf-2005, but from the summery what I could
> > see is that one of the key notes was the Samba team. Now ReactOS is
> > going to use Samba right?
>
> No. ReactOS will not use Samba anymore than we use WINE, which is to
> say, we might borrow bits of code here and there, but as a whole, the
> project is radically different than what we need. Samba is a server
> that runs on Linux and emulates a lanman/cifs/whatever MS is calling it
> these days server. What ReactOS would need is a real implementation of
> the lanman server on an NT kernel, not a hacked emulation on top of posix.
I think what Boaz was talking about here was is the fact that the Samba team
(tridge) are talking about porting Samba to the Windows environment for ROS.
My (limited) understanding of this is it would be a 'real' emulation of
cifs/netbt, not samba running in a unix environment via POSIX.
Speak to Steven Edwards or KJK for more info as they were talking to Tridge.
Ged.
************************************************************************
The information contained in this message or any of its
attachments is confidential and is intended for the exclusive
use of the addressee. The information may also be legally
privileged. The views expressed may not be company policy,
but the personal views of the originator. If you are not the
addressee, any disclosure, reproduction, distribution or other
dissemination or use of this communication is strictly prohibited.
If you have received this message in error, please contact
postmaster(a)exideuk.co.uk
<mailto:postmaster@exideuk.co.uk> and then delete this message.
Exide Technologies is an industrial and transportation battery
producer and recycler with operations in 89 countries.
Further information can be found at www.exide.com