View Single Post
briand's Avatar
Posts: 566 | Thanked: 145 times | Joined on Feb 2008 @ Tallahassee, FL
#84
Originally Posted by nspeer View Post
I am trying to remove the one video I saved to disk as I keep getting an error message saying there is no more space on the device. I am unable to remove the video directory as explained above because it says the directory is not empty. How do I remove the video that is in the directory. . . PLEASE BE SPECIFIC...I DON'T KNOW LINUX WELL.
Neil -- no problem.

Let's say you want to make your youtube video directory on your external SD card (/media/mmc1):

mkdir /media/mmc1/youtube

this will create the directory. Now, we'll move the already collected files in your canola youtube directory there:

mv /home/user/.canola/youtube/videos/* /media/mmc1/youtube/

that'll put everything you've collected so far into the new directory. Now that the directory is empty, you can remove it:

rmdir /home/user/.canola/youtube/videos/

now, just create the link:

ln -s /media/mmc1/youtube/ /home/user/.canola/youtube/videos/

when you next start up canola, it'll find all the stuff you've previously saved there, in the new directory.

Last edited by briand; 2008-03-23 at 02:02. Reason: corrected typographical and transpositional errors.