Is there a diskcopy function available on a *nix system??
Yes, I do still use the old ones I have saved stuff on!
One of my 3.5" diskettes showed signs of getting tired, so I decided
to make a diskcopy to get the contents on a fresh media.
To my great surprise there was no such a function included in Win 10!
Is there a diskcopy function available on a *nix system??
Yes, I do still use the old ones I have saved stuff on!
Howdy all *nix users,
Is there a diskcopy function available on a *nix system??
Yes, I do still use the old ones I have saved stuff on!
I was in for one of the great surprises yesterday.
One of my 3.5" diskettes showed signs of getting tired, so I decided
to make a diskcopy to get the contents on a fresh media.
To my great surprise there was no such a function included in Win 10!
To make a copy of that diskette....
I had to close down Windows and re-start the machine with a pure
(PC)DOS diskette, to do the simple operation of creating a copy of
that old one, while it was still readable
If you have two floppy drives, they are usually /dev/fd0 and /dev/fd1
dd if=/dev/fd0 of=/dev/fd1
Is there a diskcopy function available on a *nix system??
Yes, I do still use the old ones I have saved stuff on!
Absolutly :) it's called dd
Put your floppy in the drive and sudo dd if=/dev/fd0 of=diskname.img
dd is a universal tool.. it will read/write any image format plus
all sorts of other neat and dangerous stuff if you dont know how to
use it :D
--- Mystic BBS v1.12 A31 (Raspberry Pi)
28 Nov 16, Holger Granholm wrote to All:
Is there a diskcopy function available on a *nix system??
Yes, it's called dd. Check
man dd
for details. dd is a file copy program but within *nix everythings
could be seen as a file. If you read the device name directly it's
just like reading a file, including FAT and other data.
If you have two floppy drives, they are usually /dev/fd0 and
/dev/fd1
dd if=/dev/fd0 of=/dev/fd1
would copy directy from drive 0 to 1.
of (=out file) could be a file name if you don't have two drives.
dd if=/dev/fd0 of=floppy.img
then you have to change the disk and find out how you bring the file
image back to the disk.
If you want to copy the files only, try cp or rsync.
There is no fresh media for floppy disks anymore. The error rate for
new ones is aprox. 5 to 10% or you have to pay industry prices. Take
the signs as a reason to backup all data of all your remaining
disks. More failures will follow.
Well, buy a Win10 ready computer, you will be surprised, there isn't
a floppy drive in there either.
Thanks for the info. I was really disappointed that it wasn't available
in Win10. The XPpro I have in a laptop, still does have diskcopy.
Dunno about versions between XP and 10, since I haven't had them.
--- Mystic BBS v1.12 A31 (Raspberry Pi)
Nice to see Pi at work!
harddest part is to find a usb floppy drive now,
I have nothing against learning a new operating system, but the only
thing I hated and didn't like about *nix was the case sensitivity.
I have 2 Raspberry Pi 3b's, one runs the BBS, the other is my play toy
for development .. working on a source based distribution based on
Yes, I do still use the old ones I have saved stuff on!
why not stick to just use zip ?
harddest part is to find a usb floppy drive now, and then begin make
zip files of the content files on floppy
I had to close down Windows and re-start the machine with a pure
(PC)DOS diskette, to do the simple operation of creating a copy of
that old one, while it was still readable
have you searched in windows 10 apps ?
if you dont like it, try http://www.gpsoft.com.au/ directoryOpus
dd if=/dev/fd0 of=/dev/fd1
You better add 'conv=noerrors,sync' to that if you want a better
chance to end up with a usable disk in case of read errors!
Or even better use 'ddrescue' if you suspect there will be bad
source disks...
dd if=/dev/fd0 of=/dev/fd1
You better add 'conv=noerrors,sync' to that if you want a better
chance to end up with a usable disk in case of read errors!
Or even better use 'ddrescue' if you suspect there will be bad
source disks...
How much of those commands are available on a *nix demo CD?
How much of those commands are available on a *nix demo CD?
I don't know what you mean with '*nix demo CD'. *nix doesn't translate
to linux! ;)
I don't know what you mean with '*nix demo CD'. *nix doesn't
translate
to linux! ;)
* = ANY string , ie: U or Li , thus *nix does translate to Linux or Unix.
if you dont like it, try http://www.gpsoft.com.au/ directoryOpus
WHY? I have XTree for DOS, ZTBold for OS/2 and ZTreeWin for Windows.
No "*Tree" available for *nix systems.
How much of those commands are available on a *nix demo CD?
Yes I know, that's why I bought a machine with Win 7, and upgraded it
to Win10.
Holger Granholm wrote to All <=-
@MSGID: <5841FEA0.1152.fido-linux@freeway.apana.org.au>
Howdy all *nix users,
Is there a diskcopy function available on a *nix system??
Yes, I do still use the old ones I have saved stuff on!
I was in for one of the great surprises yesterday.
One of my 3.5" diskettes showed signs of getting tired, so I decided to make a diskcopy to get the contents on a fresh media.
Thanks for the info. I was really disappointed that it wasn't available
in Win10. The XPpro I have in a laptop, still does have diskcopy.
You can get the DD command that works on windows as well, does the
same job, uses Cygwin I do believe.. google it and check it out
thing I hated and didn't like about *nix was the case sensitivity.
you learn very quickly to keep your fingers off that damned shift
key when typing... proper case has its place but it is not in source
code or file systems ;) :lol:
The hardest part is reading old disks from old drives with a new
drive.
Actually I have even three in my office machine.
I have nothing against learning a new operating system, but the only
thing I hated and didn't like about *nix was the case sensitivity.
I know that a safer media is USB sticks, as long as you don't abuse
them by writing too many times on them.
thing I hated and didn't like about *nix was the case sensitivity.
you learn very quickly to keep your fingers off that damned shift key
when typing... proper case has its place but it is not in source code
or file systems ;) :lol:
That may be true, but I don't like starting a new sentence, or a name
with a lower case letter.
Maybe there's still too much grammar in my head.
How much of those commands are available on a *nix demo CD?
You can treat the various LIVE dvd's for *nix's as installs and alot
of stuff will run...
On Debian/Ubunutu/Mint/Zorin ones you can:
sudo apt-get install ddrescue
Or you use something like this:
SystemResuceCD which is a live distro with a whole host of stuff for
this including ddrescue
https://www.system-rescue-cd.org/SystemRescueCd_Homepage
dd the command which ddresuce and others present a nice GUI of sort
to is at least on *buntu's installed by default. Confirmed with a
couple of the recent VM's I have setup , and I didn't install it..
and its there.
... Ding Dong the Witch is DEAD! I Made America Great Again!
President Trump!
How much of those commands are available on a *nix demo CD?
I don't know what you mean with '*nix demo CD'. *nix doesn't
translate to linux! ;)
But 'dd' should be available on any. 'ddrescue' is less common. And
on my distribution it's named 'gnu_ddrescue', and not installed by default...
* An ongoing debate between Holger Granholm and Kai Richter rages on
...
I have a DOS/Win version of the linux dd command if you need it:
=== Cut ===
Usage: dd [OPERAND]...
or: dd OPTION
Report bugs to <bug-coreutils@gnu.org>.
=== Cut ===
I also have DOS/Wins versions of most of the drive imaging programs
for floppy diskettes if that would help. :)
http://cmech.dynip.com/homepage/fdimage.zip
... "Feliz Navidad y prospero Ano Nuevo." - Spanish Christmas"God Jul och ett framgangsrikt Nytt Ar" - Swedish Christmas
if you dont like it, try http://www.gpsoft.com.au/ directoryOpus
WHY? I have XTree for DOS, ZTBold for OS/2 and ZTreeWin for Windows.
No "*Tree" available for *nix systems.
in most cases, folks that require some sort of file manager tool and
prefer a text based one will use midnight commander (aka mc)... it
is designed after norton commander (aka nc)... there are other GUI
On Debian/Ubunutu/Mint/Zorin ones you can:
sudo apt-get install ddrescue
Excuse a dumb question. Does that mean that I install that 'ddrescue' somewhere in my machine, and/or that it is imported from the net?
Thanks, I may check Cygwin out, but mostly I use OS/2, and diskcopy is included in that, both as an OS/2 and as a DOS version.
There may however be other useful things/commands in Cygwin.
I think I may have some file manager for *nix systems too, otherwise
it's easy enough to grab one.
Holger Granholm wrote to Wilfred Van Velzen <=-
How much of those commands are available on a *nix demo CD?
I don't know what you mean with '*nix demo CD'. *nix doesn't
translate to linux! ;)
Everybody else seems to understand, that *nix means the Linux operating system that all these Ubuntu/Debian/Zorin/RedHat etc. use.
Actually I have even three in my office machine.
How about 5,25" disks, are the available anymore?
thing I hated and didn't like about *nix was the case sensitivity.
Well, once you get used to it, it can have advantages. Together with
TAB command line completion it could make things easier.
I know that a safer media is USB sticks, as long as you don't abuse
Safer than floppy, yes. Sadly USB memory hasn't relialable
pre-failure warnings. If the controler on the USB memory breaks then everything is gone.
Howdy all *nix users,
Is there a diskcopy function available on a *nix system??
Use dd, you can copy from disk to disk, disk to file or file to
disk, or even file to file. :)
I was in for one of the great surprises yesterday.
One of my 3.5" diskettes showed signs of getting tired, so I decided
to make a diskcopy to get the contents on a fresh media.
If you just want to make a backup:
dd if=/dev/fd0 of=myback.img bs=16384
Or if you have 2 floppy drives and want to copy directly from disk
to disk
dd if=/dev/fd0 of=/dev/fd1 bs=16384
you learn very quickly to keep your fingers off that damned shift key
when typing... proper case has its place but it is not in source code
or file systems ;) :lol:
Maybe there's still too much grammar in my head.
hahahaha! i hear that... but the thing is that file names are not
proper names like human names... that distinction was never made
when we were in school... because there weren't really such things
as file names at that time... not like there are today ;)
I think I may have some file manager for *nix systems too, otherwise it's easy enough to grab one.Best console based filemanager for linux is Midnight Commander. (package name >on any linux distro is mc)
Excuse a dumb question. Does that mean that I install that 'ddrescue' somewhere in my machine, and/or that it is imported from the net?
Cygwin is a complete unix bash environment for windows. It can even
run the X window system.. it's handy for using *nix based tools on
windows platform
If you just want to make a backup:
dd if=/dev/fd0 of=myback.img bs=16384
Or if you have 2 floppy drives and want to copy directly from disk
to disk
dd if=/dev/fd0 of=/dev/fd1 bs=16384
And if I have only one disk drive?
Doing a diskcopy in DOS or OS/2, I just diskcopy from a: to b: .
Everybody else seems to understand, that *nix means the Linux
operating system that all these Ubuntu/Debian/Zorin/RedHat etc. use.
Holger Granholm wrote to Tony Langdon <=-
And if I have only one disk drive?
No.
Unix is not Linux
and Linux is not Unix.
https://de.wikipedia.org/wiki/Unix
Linux is a Unix like operating sysstem.
On Debian/Ubunutu/Mint/Zorin ones you can:
sudo apt-get install ddrescue
Excuse a dumb question. Does that mean that I install that 'ddrescue' somewhere in my machine, and/or that it is imported from the net?
yes and yes... it is pulled out of the debian repository and
installed on your machine where they designate it to be installed...
then it is available for use...
Cygwin is a complete unix bash environment for windows. It can even
run the X window system.. it's handy for using *nix based tools on
windows platform
I don't know what you mean with '*nix demo CD'. *nix doesn't
translate to linux! ;)
Everybody else seems to understand, that *nix means the Linux
operating system that all these Ubuntu/Debian/Zorin/RedHat etc. use
*nix also includes non Linux OSs such as the various BSD flavours of
Unix.
No.How does *nix imply in any way that it is!?????!!!????
Unix is not Linux
"Everybody else seems to understand, that *nix means the Linux
operating system that all these Ubuntu/Debian/Zorin/RedHat etc. use."
That is how.
Excuse a dumb question. Does that mean that I install that 'ddrescue' somewhere in my machine, and/or that it is imported from the net?
APT is a system for installing software on Debian based systems ie:
Zorin, Ubuntu, Debian, Mint, KUbuntua, and others.
see:
http://www.tutonics.com/2012/10/a-faq-style-introduction-to-apt-get-and.html
APT can get prorgrams from the repo be it locally, CD/DVD, or via
repos via the internet, all depends on how you set it up.
And if I have only one disk drive?
copy to a file then back (to a new disk). :)
Holger Granholm wrote to Tony Langdon <=-
That's how I do it now, to refresh disks that show (sound), like they
are difficult to read. B4 copying back, I reformat the disk.
for the valuable information about Cygwin.
If you have two floppy drives, they are usually /dev/fd0 and
/dev/fd1
dd if=/dev/fd0 of=/dev/fd1
You better add 'conv=noerrors,sync' to that if you want a better chance
to end up with a usable disk in case of read errors!
Or even better use 'ddrescue' if you suspect there will be bad source disks...
| Sysop: | Winzlo |
|---|---|
| Location: | Minnesota, USA |
| Users: | 11 |
| Nodes: | 16 (0 / 16) |
| Uptime: | 495943:41:31 |
| Calls: | 82 |
| Files: | 1,070 |
| D/L today: |
27 files (11,920K bytes) |
| Messages: | 287,030 |