muki
|
2008-03-22
, 15:41
|
Posts: 178 |
Thanked: 40 times |
Joined on Aug 2007
@ UK
|
#81
|
|
2008-03-22
, 15:53
|
Posts: 197 |
Thanked: 4 times |
Joined on Jan 2007
|
#82
|
No big deal.
It's still great to have this!!
Also, for now, the symlink works.
I just created a dir called videos in a tmp folder. Then I did:
cd /home/user/.canola/youtube
ln -s /media/mmc1/tmp/videos videos
(I think I did a "rmdir videos" first, to delete the original videos dir.)
Works great!!
desiv
|
2008-03-22
, 16:05
|
|
Posts: 2,041 |
Thanked: 1,066 times |
Joined on Mar 2006
@ Houston
|
#83
|
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.
thanks,
Neil
|
2008-03-22
, 16:49
|
|
Posts: 566 |
Thanked: 145 times |
Joined on Feb 2008
@ Tallahassee, FL
|
#84
|
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.
|
2008-03-22
, 17:06
|
Posts: 197 |
Thanked: 4 times |
Joined on Jan 2007
|
#85
|
|
2008-03-22
, 17:38
|
Posts: 225 |
Thanked: 59 times |
Joined on Jul 2007
|
#86
|
|
2008-03-22
, 18:07
|
Posts: 14 |
Thanked: 11 times |
Joined on Jan 2008
|
#87
|
|
2008-03-22
, 18:26
|
Posts: 197 |
Thanked: 4 times |
Joined on Jan 2007
|
#88
|
Try /home/user/... instead of /home/users/...
At least that's the home directory on os2008.
|
2008-03-22
, 18:35
|
Posts: 225 |
Thanked: 59 times |
Joined on Jul 2007
|
#89
|
|
2008-03-22
, 18:41
|
Posts: 197 |
Thanked: 4 times |
Joined on Jan 2007
|
#90
|
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/users/.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/users/.canola/youtube/videos/
now, just create the link:
ln -s /home/users/.canola/youtube/videos/ /media/mmc1/youtube/
when you next start up canola, it'll find all the stuff you've previously saved there, in the new directory.