Re: [Freedos-user] Boot sector not standard? [Solved]

2006-11-08 Thread Marton
Bart Oldeman wrote: On 10/27/06, Marton [EMAIL PROTECTED] wrote: Any chances of a permanent fix or it is actually hard to implement? Something like this: [...] Just tried this and with my 6.4gig hard drive it works like a charm. I have yet to try with one bigger than 8.4 gigs

Re: [Freedos-user] Boot sector not standard? [Solved]

2006-10-29 Thread Bart Oldeman
On 10/27/06, Marton [EMAIL PROTECTED] wrote: Any chances of a permanent fix or it is actually hard to implement? Something like this: --- initdisk.c.old 2006-10-30 00:30:02.0 + +++ initdisk.c 2006-10-30 00:32:31.0 + @@ -995,7 +995,9 @@ for (num_retries = 0;

Re: [Freedos-user] Boot sector not standard? [Solved]

2006-10-27 Thread Eric Auer
Hi Marton, I checked your PROT program (1995, shareware, 30 bucks for the full version, demo version has fixed key datar) from sunsite.rediris.es/pub/msdos/security/protdrx.zip a bit... The binary installer is 16 kilobytes, DIET compressed, easy to decompress with UNP. See the bottom of this

Re: [Freedos-user] Boot sector not standard? [Solved]

2006-10-27 Thread tom ehlert
Hello Eric, thanks for the analysis. a) so PROT is good enough to keep Mom from using the computer if Dad is out of house, but not a bit better. b) if the author has no email address, does anybody think you could buy a registered version ? But Mom probably doesn't know 'datar' either ;) I

Re: [Freedos-user] Boot sector not standard? [Solved]

2006-10-24 Thread Marton
OK, when I meant sector 0, I meant the first sector. If it's the case, startSector is 0 but in this case where the tool moves it to the second sector, startSector is 1, so partitionStart goes to 64 which is not right. Do you know any way around it? Is it right to not add startSector to the

Re: [Freedos-user] Boot sector not standard? [Solved]

2006-10-23 Thread Arkady V.Belousov
Hi! 20-Окт-2006 06:29 [EMAIL PROTECTED] (Marton) wrote to freedos-user@lists.sourceforge.net: M If the partition is at sector 0, Sectors numbered starting from 1, not 0. - Using Tomcat but need to do more? Need to

Re: [Freedos-user] Boot sector not standard? [Solved]

2006-10-20 Thread Eric Auer
1) The partition table is moved from sector 0 to sector 1 2) Some code is written to sector 0. This code asks for a password and if you fail, you can't boot. So far so good. I found the problem to be in initdisk.c, function ScanForPrimaryPartitions. What happens is that when the tool has

Re: [Freedos-user] Boot sector not standard? [Solved]

2006-10-20 Thread Marton
But DOS 7+ is LBA, right? It works like a charm there... If the partition is at sector 0, ScanForPrimaryPartitions gets 0 as the startSector. This is in most if not all cases, right? Well if the tool moves it to sector 1 and tells FreeDOS that the partition is there, and FreeDOS recognizes the

Re: [Freedos-user] Boot sector not standard?

2006-10-19 Thread Florian Xaver
Is FreeDOS' boot sector 100% compatible with a DOS boot sector? No, not even 50% compatible. :-) Bye Flo - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with

Re: [Freedos-user] Boot sector not standard?

2006-10-19 Thread Johnson Lam
On Thu, 19 Oct 2006 09:17:34 +0200, you wrote: Hi, Is FreeDOS' boot sector 100% compatible with a DOS boot sector? No, not even 50% compatible. :-) That's why Virtual PC refuse to read the FreeDOS floppy?! Rgds, Johnson.

Re: [Freedos-user] Boot sector not standard?

2006-10-19 Thread Norbert Remmel
Is FreeDOS' boot sector 100% compatible with a DOS boot sector? No, not even 50% compatible. :-) That's why Virtual PC refuse to read the FreeDOS floppy?! Virtual PC doesn't refuse to read the FreeDOS floppy at all, neither Version 2004 nor Version 2007 beta. VPC is fully working with

Re: [Freedos-user] Boot sector not standard?

2006-10-19 Thread Marton
The tool basically moves the partition table to somewhere in the track 0 area. When you put the hard disk as slave, you can't access it (It's a neat protection). When it boots, it temporarily unhides the partition so the OS can see it and boot, and then hides it again. With any version of MS-DOS

Re: [Freedos-user] Boot sector not standard?

2006-10-19 Thread Johnson Lam
On Thu, 19 Oct 2006 15:18:05 +0200, you wrote: Virtual PC doesn't refuse to read the FreeDOS floppy at all, neither Version 2004 nor Version 2007 beta. Weird, last 2 week I've download Virtual PC from M$, but all FreeDOS disk can't read in Virtual PC, but MS-DOS have no problem. VPC is fully

Re: [Freedos-user] Boot sector not standard? [Solved]

2006-10-19 Thread Marton
Well, I did some research on everything and found the cause of the problem. First, I confirmed that what the tool does is this: 1) The partition table is moved from sector 0 to sector 1 2) Some code is written to sector 0. This code asks for a password and if you fail, you can't boot. I found

[Freedos-user] Boot sector not standard?

2006-10-18 Thread Marton
http://sunsite.rediris.es/pub/msdos/security/protdrx.zip The above tool provides a very interesting hard disk security. It works perfectly on any DOS version (I tested 5, 6.22 and 7). On FreeDOS, it does not like to work. Is FreeDOS' boot sector 100% compatible with a DOS boot sector? Thanks in