Re: [Freedos-user] Problem installing FreeDOS together with Win98SEusing metakern

2008-06-16 Thread Robert Riebisch
Anton Shepelev wrote:

Dear, Bernd, everything had been fine  (paths  and  filesizes)
but  one  thing:  fdisk  and  bootmgr  were  returning   wrong
bootsector dumps!

Are you talking about BOOTMGR from BTTR Software? Then I'm one of the
authors. I've never heard this problem before. Could you please send us
dumps made with BOOTMGR, FDISK, and BOOTFIX via personal mail?! Thanks!

Robert Riebisch
-- 
BTTR Software
http://www.bttr-software.de/

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


[Freedos-user] cdrecord for dos : add/delete directory on cdrw disk

2008-06-16 Thread iw2evk

Hi at all,

i've purchased a lg cdrw device.
For create a multisession cdrw , with possibilty to add and remove
directory, whath is the right procedure?

i create a  RAW file with mkisofs setting -multi

then i burn the 1st directory on rwdisk with :
cdrecord -v -multi dev=0.0.0 -raw test.raw

when i try to add another directory on disk i receive a error message and
can access the disk.

On my workplace i've view addand remove files/directory with Windows program
Nero burnig.
It's possible make the same on command line dos with cdrecord?

many thanks

Roberto iw2evk
-- 
View this message in context: 
http://www.nabble.com/cdrecord-for-dos-%3A-add-delete-directory-on-cdrw-disk-tp17862366p17862366.html
Sent from the FreeDOS - User mailing list archive at Nabble.com.


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] Problem installing FreeDOS together with Win98SE using metakern

2008-06-16 Thread Anton Shepelev
Hi again, Robert

I know my problem was confusion between MBR and the boot sector.
But anyway, fdisk and bootmgr should return the same data...

Anton



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] cdrecord for dos : add/delete directory on cdrw disk

2008-06-16 Thread Oleg O. Chukaev
Hello,

iw2evk wrote:
 when i try to add another directory on disk i receive a error message and
 can access the disk.
1) insert your disk into the drive
2) cdrecord -msinfo dev=0,0,0
Note 2 numbers -- arguments for mkisofs' -C option.
3) mkisofs -o file.iso -C num1,num2 -M 0,0,0 /path
4) burn file.iso


--
Oleg O. Chukaev

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] Problem installing FreeDOS together with Win98SEusing metakern

2008-06-16 Thread Robert Riebisch
Anton Shepelev wrote:

 I know my problem was confusion between MBR and the boot sector.

Eric already told me. ;-)

 But anyway, fdisk and bootmgr should return the same data...

FDISK is wrong. BOOTMGR is right. *g*

Here's the corresponding code snippet from FDISK, where offsets = 0x1BE
are filled with zeros  by design (second do/while loop). Does anyone
(Eric?) know the reason?
***
/* Save MBR */
void Save_MBR()
{
  int index=0;

  FILE *file_pointer;

  Read_Physical_Sectors(flags.drive_number,0,0,1,1);

  file_pointer = fopen(boot.mbr,wb);

  if(!file_pointer)
{
printf(\nError opening or creating \BOOT.MBR\ for
writing...Program Terminated.\n);
exit(8);
}

  do
{
fputc(sector_buffer[index],file_pointer);
index++;
}while(index0x1be);

  do{
fputc(0,file_pointer);
index++;
}while(index512);

  fclose(file_pointer);
}
***

Robert Riebisch
-- 
BTTR Software
http://www.bttr-software.de/

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] Problem installing FreeDOS together with Win98SEusing metakern

2008-06-16 Thread Eric Auer

Hi!

 the corresponding code snippet from FDISK, where offsets = 0x1BE
 are filled with zeros  by design (second do/while loop). Does anyone
 (Eric?) know the reason?

Sounds okay if you only want the MBR code and not the partition
table, but of course you also zap the 55 aa this is bootable
sign at the end with this masking. Good intention bad result...

Especially bad result for people who think that backing up
their MBR would also backup the beginning of their partition
table, of course. So I suggest to stop masking :-)

 void Save_MBR()
...
   int index=0;
...
   do
 {
 fputc(sector_buffer[index],file_pointer);
 index++;
 }while(index0x1be);

   do{
 fputc(0,file_pointer);
 index++;
 }while(index512);
...



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


[Freedos-user] Console

2008-06-16 Thread Chris Williams
Hey, 
Does anyone know how to get console redirection working in FreeDos? I'm 
assuming that this is possible but I haven't been able to find any information 
on it. I want to be able to control FreeDos via the serial port. 
Thanks in advance. 
 
Chris 
-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


[Freedos-user] Free disk space reported incorrectly

2008-06-16 Thread Marcos Favero Florence de Barros
When files are deleted from floppy or hard disks, the free space
reported either by 'dir' or by my file managers remains the same
most of the times, but sometimes it is updated as it should.

This is happening in all 3 of my FreeDOS computers.

I use Navigator, NDN, Connect and File Wizard.

Am I missing something?

Thanks,

Marcos Florence
Sao Paulo, Brazil



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user