Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
diskcopy command in Linux
Name: onie Date: February 27, 2001 at 22:00:04 Pacific
Comment:
I'm new in linux and just installed and using redhat v7.0. I'm curious to know how to diskcopy or copy a file in a floppy to floppy with one floppy drive? thank you in advance for any info.
Name: unisol Date: March 1, 2001 at 00:32:13 Pacific
Reply:
To access the bootdisk open an xterm/rxvt/eterm e.t.c and type the usual dos commands with an "m".Example: mdir a: mcopy myfile a: mdel myfile
To diskcopy, insert source disk into drive dd if=/dev/fd0 of=/tmp/floppy.image Then insert target disk dd if=/tmp/floppy.image of=/dev/fd0 Finally delete the floppy.image rm /tmp/floppy.image
Summary: How should i say the system to use 128MB memory ? It says 64mb freed. What is the command in Linux to install all the related modules of a package (ie to install all the dependencies while installing...
Summary: Hello, I try to kill stopped processes in linux with kill, but it doesn't kill them. I use: kill PID or kill -s TERM PID What's wrong? Thanks. ...