
Correct in console: for %i in (*.exe, *.dll) do cmd.exe %i
Correct in batch file: for %%i in (*.exe, *.dll) do cmd.exe %%i
Batch file needs double %.
Special thanks to TechRepublic.
cd ~mailmanInstead, you should go to '/var/lib/mailman/bin' directory. Also note that, 'arch' is a utility offered by mailman not your Linux distro. So you must enter ./arch instead of arch alone.
MyServer:~# aptitude install mkisofsAfter that I typed this command to make an ISO file:
mkisofs -o /tmp/cd.iso /tmp/directory/But it has a weak point! mkisofs, by default doesn't go deeply in directories. So you must force it to do by "-D" switch:
mkisofs -D -o /tmp/cd.iso /tmp/directory/Also we can make an ISO image directly from CD, DVD or our SCSI optical drive:
dd if=/dev/dvd of=dvd.iso # for dvdThat's it :D. Thanks to Scott Granneman for his guide.
dd if=/dev/cdrom of=cd.iso # for cdrom
dd if=/dev/scd0 of=cd.iso # if cdrom is scsi
mmsitepass"
as root. It asked me a new password. Once this password is known by the overall Mailman-admin, they can log into the list's admin-pages and set a new list-specific admin-password. Thanks Markus Amersdorfer for its great article.