Quote:
Originally Posted by bo1990
Secondly, I have everything saved in the 'htdocs' folder, but that drive is getting very full very fast and there is a second drive which has around 250gb of free space, so I was wondering if it was possible to simply have the video files saved on the secondary disk but have them load like they were in htdocs, if that makes sense.
|
Well, you might try making symlinks.
I. e. you create a very small "file" on the disc in the htdocs folder that "points to" the actual file on the other 250gb open disc.
see
man ln
i. e. in your local /usr/local/apache2/htdocs folder do
ln -s /mnt/250gbdisc/file.wmv file.wmv
This will create a symlink called "file.wmv" in /usr/local/apache2/htdocs that actually "points to" /mnt/250gbdisc/file.wmv. Applications (like Apache) that access "file.wmv" should now hopefully be unable to distinguish where the "actual" file is located.