• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Any way to copy all CD content locally to avoid having to insert it?

Red Squirrel

No Lifer
I noticed when I use apt-get install in Debian it asks for the CD, I like the idea in a way as why use my bandwidth if I don't have to, and at least I don't have to worry about internet availability to install something through apt. Only thing is it's kinda annoying to login to the DRAC to mount the CD each time. Can I copy the CD locally and have it somehow read the files there? Is it as simple as just copying the content's of the CDs, or are they encoded in some special way? Or can I just copy the ISOs directly and then just mount them to /media/cdrom?
 
dd if=/dev/cdrom of=/path/to/debian_installer.iso <-- creates the ISO file(change paths obviously)

mount /path/to/debian_installer.iso /media/cdrom -o loop <-- run whenever you want to use the disc, unmount as usual.
 
I haven't done it myself, but I know there are multiple docs on how to setup your own apt mirror which is probably what you want to do.
 
Back
Top