I am at a point, now, where I am engineering a solution for
all my ISO files. I have several Linux and
Windows ISOs always on hand, for convenience.
Each ISO is in its own directory, for example Ubuntu 12.04 server is in
folder linux_isos/Ubuntu/Server/12.04/.
In this particular folder I have the ISO file ubuntu-12.04.5-server-amd64.iso. (For windows ISOs I have the ISO and a key
code file for registrering it after an install)
I set turned my ISO parent directory into a git repository
with this .gitignore file.
#Ignore all those
dumb .ds_store file
.DS_Store
._*
#Generic files to
ignore
*.swp
*.lock
*~
*.out
#not-git files and
folders
#in this case just
ignore .iso files
*.iso
|
This will ignore all the .iso files, but capture the key
files and rsync files I am going to create in each folder.