6

/home not mounting correctly?

view full story
linux-howto

https://bbs.archlinux.org – I tried running dmenu_run and get the following error:mkdir: cannot create directory `/root': Permission denied /usr/bin/dmenu_run: line 9: /root/.cache/dmenu_run: Permission deniedTrying to create /root? This certainly confuses me. Maybe something is wrong with my /root directory?Anyway here is the bash script for dmenu_run: 1 #!/bin/sh 2 CACHE=${XDG_CACHE_HOME:-"$HOME/.cache"}/dmenu_run 3 ( 4 IFS=: 5 if test "`ls -dt $PATH "$CACHE" 2> /dev/null | sed 1q`" != "$CACHE"; then 6 mkdir -p "`dirname &qu (HowTos)