|
| |||
| Re: "safe" place to put a common "download" directory? "Noozer" <dont.spam@me.here> wrote in message news:KurGi.168525$fJ5.81601@pd7urf1no... >I want to create a directory that is read/writeable by all my Linux users. > > What would be the 'correct' location for such a directory on a Linux > system? > > /downloads > > /usr/share/downloads > > /var/downloads > > ???? > > Thanks! There is a matter of policy here. Some users matntain that you don't mess with the basic structure of you root directory, and that therefore all 'growable' directories should be in /var, along with logs and your basic web & ftp servers. Some installs will copy the cd or dvd contents into a download area on /var, and put udates in there as well I disagree with that. I have a few partitions for the working system, one for /home, one for /var, etc. Then the rest of the 200 gigs is set as a common work area in its own partition. The mount point is /server. This way it could just as easily be a separate hard drive. As already described, you can set user and group settings to suit your needs. Here, there is a high degree of trust as it is all family, so we have one big common area for music and videos, separated by various criteria. The concept of allowing everyone read access to the downloads, but only allowing the 'owner' to delete the file is very good. This can easily be done by using a few subdirectories, or allowing on a file by file basis. Then downloads that are "private" can be stored in the users /home directory. Stuart |
| |||
| Re: "safe" place to put a common "download" directory? "Noozer" <dont.spam@me.here> wrote in message news:KurGi.168525$fJ5.81601@pd7urf1no... >I want to create a directory that is read/writeable by all my Linux users. > > What would be the 'correct' location for such a directory on a Linux > system? > > /downloads > > /usr/share/downloads > > /var/downloads > > ???? > > Thanks! There is a matter of policy here. Some users matntain that you don't mess with the basic structure of you root directory, and that therefore all 'growable' directories should be in /var, along with logs and your basic web & ftp servers. Some installs will copy the cd or dvd contents into a download area on /var, and put udates in there as well I disagree with that. I have a few partitions for the working system, one for /home, one for /var, etc. Then the rest of the 200 gigs is set as a common work area in its own partition. The mount point is /server. This way it could just as easily be a separate hard drive. As already described, you can set user and group settings to suit your needs. Here, there is a high degree of trust as it is all family, so we have one big common area for music and videos, separated by various criteria. The concept of allowing everyone read access to the downloads, but only allowing the 'owner' to delete the file is very good. This can easily be done by using a few subdirectories, or allowing on a file by file basis. Then downloads that are "private" can be stored in the users /home directory. Stuart |
| |||
| Re: "safe" place to put a common "download" directory? "Noozer" <dont.spam@me.here> wrote in message news:KurGi.168525$fJ5.81601@pd7urf1no... >I want to create a directory that is read/writeable by all my Linux users. > > What would be the 'correct' location for such a directory on a Linux > system? > > /downloads > > /usr/share/downloads > > /var/downloads > > ???? > > Thanks! There is a matter of policy here. Some users matntain that you don't mess with the basic structure of you root directory, and that therefore all 'growable' directories should be in /var, along with logs and your basic web & ftp servers. Some installs will copy the cd or dvd contents into a download area on /var, and put udates in there as well I disagree with that. I have a few partitions for the working system, one for /home, one for /var, etc. Then the rest of the 200 gigs is set as a common work area in its own partition. The mount point is /server. This way it could just as easily be a separate hard drive. As already described, you can set user and group settings to suit your needs. Here, there is a high degree of trust as it is all family, so we have one big common area for music and videos, separated by various criteria. The concept of allowing everyone read access to the downloads, but only allowing the 'owner' to delete the file is very good. This can easily be done by using a few subdirectories, or allowing on a file by file basis. Then downloads that are "private" can be stored in the users /home directory. Stuart |
| |||
| Re: "safe" place to put a common "download" directory? "Noozer" <dont.spam@me.here> wrote in message news:KurGi.168525$fJ5.81601@pd7urf1no... >I want to create a directory that is read/writeable by all my Linux users. > > What would be the 'correct' location for such a directory on a Linux > system? > > /downloads > > /usr/share/downloads > > /var/downloads > > ???? > > Thanks! There is a matter of policy here. Some users matntain that you don't mess with the basic structure of you root directory, and that therefore all 'growable' directories should be in /var, along with logs and your basic web & ftp servers. Some installs will copy the cd or dvd contents into a download area on /var, and put udates in there as well I disagree with that. I have a few partitions for the working system, one for /home, one for /var, etc. Then the rest of the 200 gigs is set as a common work area in its own partition. The mount point is /server. This way it could just as easily be a separate hard drive. As already described, you can set user and group settings to suit your needs. Here, there is a high degree of trust as it is all family, so we have one big common area for music and videos, separated by various criteria. The concept of allowing everyone read access to the downloads, but only allowing the 'owner' to delete the file is very good. This can easily be done by using a few subdirectories, or allowing on a file by file basis. Then downloads that are "private" can be stored in the users /home directory. Stuart |
| |||
| Re: "safe" place to put a common "download" directory? "Noozer" <dont.spam@me.here> writes: >I want to create a directory that is read/writeable by all my Linux users. >What would be the 'correct' location for such a directory on a Linux system? >/downloads >/usr/share/downloads >/var/downloads /tmp is one possibility. Otherwise choose a partition which has lots of room and put it there. There is no "correct" place. I would not put it in any of hte places you suggest. / and /var are on small partitions. /usr/share is reallyfor program stuff, not for user stuff. I would put it into either /local or /usr/local whichever is on a partition separate from system stuff. I would also clean it out once a week, or you could find yourself with a full partition find /usr/local/download -mtime +7 -print0|xargs -0 rm cleans out all files older than 7 days. Also make sure that the directory has the t chmod attribute so onlyowners of files can erase them. |
| |||
| Re: "safe" place to put a common "download" directory? "Noozer" <dont.spam@me.here> writes: >I want to create a directory that is read/writeable by all my Linux users. >What would be the 'correct' location for such a directory on a Linux system? >/downloads >/usr/share/downloads >/var/downloads /tmp is one possibility. Otherwise choose a partition which has lots of room and put it there. There is no "correct" place. I would not put it in any of hte places you suggest. / and /var are on small partitions. /usr/share is reallyfor program stuff, not for user stuff. I would put it into either /local or /usr/local whichever is on a partition separate from system stuff. I would also clean it out once a week, or you could find yourself with a full partition find /usr/local/download -mtime +7 -print0|xargs -0 rm cleans out all files older than 7 days. Also make sure that the directory has the t chmod attribute so onlyowners of files can erase them. |
| |||
| Re: "safe" place to put a common "download" directory? "Noozer" <dont.spam@me.here> writes: >I want to create a directory that is read/writeable by all my Linux users. >What would be the 'correct' location for such a directory on a Linux system? >/downloads >/usr/share/downloads >/var/downloads /tmp is one possibility. Otherwise choose a partition which has lots of room and put it there. There is no "correct" place. I would not put it in any of hte places you suggest. / and /var are on small partitions. /usr/share is reallyfor program stuff, not for user stuff. I would put it into either /local or /usr/local whichever is on a partition separate from system stuff. I would also clean it out once a week, or you could find yourself with a full partition find /usr/local/download -mtime +7 -print0|xargs -0 rm cleans out all files older than 7 days. Also make sure that the directory has the t chmod attribute so onlyowners of files can erase them. |
| |||
| Re: "safe" place to put a common "download" directory? "Noozer" <dont.spam@me.here> writes: >I want to create a directory that is read/writeable by all my Linux users. >What would be the 'correct' location for such a directory on a Linux system? >/downloads >/usr/share/downloads >/var/downloads /tmp is one possibility. Otherwise choose a partition which has lots of room and put it there. There is no "correct" place. I would not put it in any of hte places you suggest. / and /var are on small partitions. /usr/share is reallyfor program stuff, not for user stuff. I would put it into either /local or /usr/local whichever is on a partition separate from system stuff. I would also clean it out once a week, or you could find yourself with a full partition find /usr/local/download -mtime +7 -print0|xargs -0 rm cleans out all files older than 7 days. Also make sure that the directory has the t chmod attribute so onlyowners of files can erase them. |
| |||
| Re: "safe" place to put a common "download" directory? "Noozer" <dont.spam@me.here> writes: >I want to create a directory that is read/writeable by all my Linux users. >What would be the 'correct' location for such a directory on a Linux system? >/downloads >/usr/share/downloads >/var/downloads /tmp is one possibility. Otherwise choose a partition which has lots of room and put it there. There is no "correct" place. I would not put it in any of hte places you suggest. / and /var are on small partitions. /usr/share is reallyfor program stuff, not for user stuff. I would put it into either /local or /usr/local whichever is on a partition separate from system stuff. I would also clean it out once a week, or you could find yourself with a full partition find /usr/local/download -mtime +7 -print0|xargs -0 rm cleans out all files older than 7 days. Also make sure that the directory has the t chmod attribute so onlyowners of files can erase them. |
| |||
| Re: "safe" place to put a common "download" directory? "Noozer" <dont.spam@me.here> writes: >I want to create a directory that is read/writeable by all my Linux users. >What would be the 'correct' location for such a directory on a Linux system? >/downloads >/usr/share/downloads >/var/downloads /tmp is one possibility. Otherwise choose a partition which has lots of room and put it there. There is no "correct" place. I would not put it in any of hte places you suggest. / and /var are on small partitions. /usr/share is reallyfor program stuff, not for user stuff. I would put it into either /local or /usr/local whichever is on a partition separate from system stuff. I would also clean it out once a week, or you could find yourself with a full partition find /usr/local/download -mtime +7 -print0|xargs -0 rm cleans out all files older than 7 days. Also make sure that the directory has the t chmod attribute so onlyowners of files can erase them. |
| |||
| Re: "safe" place to put a common "download" directory? "Unruh" <unruh-spam@physics.ubc.ca> wrote in message news:vqAGi.49274$Pd4.13695@edtnps82... > "Noozer" <dont.spam@me.here> writes: > >>I want to create a directory that is read/writeable by all my Linux users. > >>What would be the 'correct' location for such a directory on a Linux >>system? > >>/downloads > >>/usr/share/downloads > >>/var/downloads > > /tmp is one possibility. > > Otherwise choose a partition which has lots of room and put it there. > There is no "correct" place. > I would not put it in any of hte places you suggest. / and /var are on > small partitions. /usr/share is reallyfor program stuff, not for user > stuff. I would put it into either /local or /usr/local whichever is on a > partition separate from system stuff. I would also clean it out once a > week, or you could find yourself with a full partition > find /usr/local/download -mtime +7 -print0|xargs -0 rm > cleans out all files older than 7 days. > Also make sure that the directory has the t chmod attribute so onlyowners > of files can erase them. I probably should have been a bit clearer... I meant a "safe"location as in a common location, not as in security. The machine only has a single 30gig drive, and the whole filesystem (aside from swap) is in a single partition. I think I'll simply go with /common/downloads... That way I can always move common to a secondary hard drive, once I have one. Thanks! |
| |||
| Re: "safe" place to put a common "download" directory? "Unruh" <unruh-spam@physics.ubc.ca> wrote in message news:vqAGi.49274$Pd4.13695@edtnps82... > "Noozer" <dont.spam@me.here> writes: > >>I want to create a directory that is read/writeable by all my Linux users. > >>What would be the 'correct' location for such a directory on a Linux >>system? > >>/downloads > >>/usr/share/downloads > >>/var/downloads > > /tmp is one possibility. > > Otherwise choose a partition which has lots of room and put it there. > There is no "correct" place. > I would not put it in any of hte places you suggest. / and /var are on > small partitions. /usr/share is reallyfor program stuff, not for user > stuff. I would put it into either /local or /usr/local whichever is on a > partition separate from system stuff. I would also clean it out once a > week, or you could find yourself with a full partition > find /usr/local/download -mtime +7 -print0|xargs -0 rm > cleans out all files older than 7 days. > Also make sure that the directory has the t chmod attribute so onlyowners > of files can erase them. I probably should have been a bit clearer... I meant a "safe"location as in a common location, not as in security. The machine only has a single 30gig drive, and the whole filesystem (aside from swap) is in a single partition. I think I'll simply go with /common/downloads... That way I can always move common to a secondary hard drive, once I have one. Thanks! |
| |||
| Re: "safe" place to put a common "download" directory? "Unruh" <unruh-spam@physics.ubc.ca> wrote in message news:vqAGi.49274$Pd4.13695@edtnps82... > "Noozer" <dont.spam@me.here> writes: > >>I want to create a directory that is read/writeable by all my Linux users. > >>What would be the 'correct' location for such a directory on a Linux >>system? > >>/downloads > >>/usr/share/downloads > >>/var/downloads > > /tmp is one possibility. > > Otherwise choose a partition which has lots of room and put it there. > There is no "correct" place. > I would not put it in any of hte places you suggest. / and /var are on > small partitions. /usr/share is reallyfor program stuff, not for user > stuff. I would put it into either /local or /usr/local whichever is on a > partition separate from system stuff. I would also clean it out once a > week, or you could find yourself with a full partition > find /usr/local/download -mtime +7 -print0|xargs -0 rm > cleans out all files older than 7 days. > Also make sure that the directory has the t chmod attribute so onlyowners > of files can erase them. I probably should have been a bit clearer... I meant a "safe"location as in a common location, not as in security. The machine only has a single 30gig drive, and the whole filesystem (aside from swap) is in a single partition. I think I'll simply go with /common/downloads... That way I can always move common to a secondary hard drive, once I have one. Thanks! |
| |||
| Re: "safe" place to put a common "download" directory? "Unruh" <unruh-spam@physics.ubc.ca> wrote in message news:vqAGi.49274$Pd4.13695@edtnps82... > "Noozer" <dont.spam@me.here> writes: > >>I want to create a directory that is read/writeable by all my Linux users. > >>What would be the 'correct' location for such a directory on a Linux >>system? > >>/downloads > >>/usr/share/downloads > >>/var/downloads > > /tmp is one possibility. > > Otherwise choose a partition which has lots of room and put it there. > There is no "correct" place. > I would not put it in any of hte places you suggest. / and /var are on > small partitions. /usr/share is reallyfor program stuff, not for user > stuff. I would put it into either /local or /usr/local whichever is on a > partition separate from system stuff. I would also clean it out once a > week, or you could find yourself with a full partition > find /usr/local/download -mtime +7 -print0|xargs -0 rm > cleans out all files older than 7 days. > Also make sure that the directory has the t chmod attribute so onlyowners > of files can erase them. I probably should have been a bit clearer... I meant a "safe"location as in a common location, not as in security. The machine only has a single 30gig drive, and the whole filesystem (aside from swap) is in a single partition. I think I'll simply go with /common/downloads... That way I can always move common to a secondary hard drive, once I have one. Thanks! |
| |||
| Re: "safe" place to put a common "download" directory? "Unruh" <unruh-spam@physics.ubc.ca> wrote in message news:vqAGi.49274$Pd4.13695@edtnps82... > "Noozer" <dont.spam@me.here> writes: > >>I want to create a directory that is read/writeable by all my Linux users. > >>What would be the 'correct' location for such a directory on a Linux >>system? > >>/downloads > >>/usr/share/downloads > >>/var/downloads > > /tmp is one possibility. > > Otherwise choose a partition which has lots of room and put it there. > There is no "correct" place. > I would not put it in any of hte places you suggest. / and /var are on > small partitions. /usr/share is reallyfor program stuff, not for user > stuff. I would put it into either /local or /usr/local whichever is on a > partition separate from system stuff. I would also clean it out once a > week, or you could find yourself with a full partition > find /usr/local/download -mtime +7 -print0|xargs -0 rm > cleans out all files older than 7 days. > Also make sure that the directory has the t chmod attribute so onlyowners > of files can erase them. I probably should have been a bit clearer... I meant a "safe"location as in a common location, not as in security. The machine only has a single 30gig drive, and the whole filesystem (aside from swap) is in a single partition. I think I'll simply go with /common/downloads... That way I can always move common to a secondary hard drive, once I have one. Thanks! |
| Bookmarks |
| Thread Tools | |
| |
| | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| "safe" place to put a common "download" directory? | Noozer | Linux | 0 | 09-19-2007 03:21 AM |
| optimization of "save in" and "look in" fileds of common Open and | Dmitry | Windows XP | 5 | 06-28-2007 08:50 AM |
| WM5 Sync with Vista "Windows Calender", "Contacts", and "Mail" | Tony | Windows Vista | 1 | 02-16-2007 04:31 PM |
| Remove "Edit", "Print", "Preview" from context menu? | Mo | Windows XP | 8 | 01-04-2007 03:44 AM |
| Remove "Edit", "Print", "Preview" from context menu | Mo | Windows XP | 0 | 01-04-2007 03:40 AM |
| New To Technology Questions? | Do You Need Help with Your Computer or Device? | Do You Need Help with this site? |