On 12/26/2010 09:24 AM, Jens Gunnarsson wrote: > $ mkdir ~/dos/c > mkdir: cannot create directory `/home/jens/dos/c': No such file or directory
The problem is that you're trying to make ~/dos/c without making ~/dos first. This should work: mkdir ~/dos ~/dos/c And this will also work, and it'll be a bit simpler: mkdir -p ~/dos/c Admittedly the mkdir diagnostic is pretty bad here.
