LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 09-11-2007, 05:47 AM   #1
gary4gar
Member
 
Registered: Aug 2006
Location: India
Distribution: Arch Linux x86_64 KDEmod 4.1
Posts: 52

Rep: Reputation: 15
Unhappy How your files are organized on HDD


I really found difficult to manage my files as my data is increasing day by day . So looking for some suggestions from your guys movies, music, Linux, torrents,Picture files & various other application packages are very poorly organized.

Often I waste my time just for searching for particular file in huge garbage heap. Sometimes I find some movies which I download months back just lying which I haven’t watched, I sure this problem may be with some of you two so share how you manage your data and most important small text files of countless tutorials ,pdf e-books ,documents ,blog entries etc..


I have one stranger requirement; i always change my OS as try newest Linux distros.


Please list how you organize your data
bwt i am looking for a setuo which helps me keep at least 3-4 os at same time installed



i have one 80gb hdd(internal) & one 320gb hdd(external)


one question how to manage to chnage our distro every 6 months, i mean does act bad for HDD??
 
Old 09-11-2007, 06:11 AM   #2
Vrajgh
Member
 
Registered: Aug 2005
Posts: 68

Rep: Reputation: 33
For a start, if I were trying to swap and change between operating system regularly I'd want to keep my home directory on its own partition which would be shared between the lot. That way personal files and settings are not at risk from the changes.

Other than that organising files is perhaps a case of self organisation and discipline. I download some junk to "misc" directory which I clear out from time to time. If something goes in there it usually means I have no desire to keep them.

I organise photos in their own directory structure and use gqview's metadata capabilities to deal with them (there are lots of programs which will do this job.) Keep music in it's own place and use something like Rhythmbox or Amorak to index it. (There are a number of music library programs out there too.)

Finally, for things like tutorials and posts, useful information I'll want again, I have a "reference" directory which I dump them in. I add a few sub-dirs to group things by topic more or less.
 
Old 09-11-2007, 06:22 AM   #3
Darksidex
LQ Newbie
 
Registered: Sep 2007
Location: Spain
Distribution: Gentoo
Posts: 7

Rep: Reputation: 0
My way:
Code:
--/
  |-- Music
  |       |
  |       -- Artist
  |               |
  |               -- Disc
  |                      |
  |                      -- Files
  |
  |-- Videos
  |         |
  |         -- Movies
  |         |        |
  |         |        -- Files
  |         -- Serials
  |                  |
  |                  -- Name
  |                         |
  |                         -- Season
  |                                  |
  |                                   -- Files
  |-- Pictures
              |
              -- Places/People (depending on what is most interesting of those pictures)
                              |
                              -- Files
I'm very used to this method, so, if I have to do a search "by hand" (no beagle, no find command) I find what I'm looking for very quickly.
 
Old 09-11-2007, 06:48 AM   #4
b0uncer
LQ Guru
 
Registered: Aug 2003
Distribution: CentOS, OS X
Posts: 5,131

Rep: Reputation: Disabled
On my personal computer I use a separate /home partition which enables installing or upgrading distributions without losing personal data..like mentioned above. In my home directory I try to have as little directories as possible (easy to find the "top level" directories for certain stuff); things like "media", "scripts", "workstuff". Under those I have then another set of directories (again, trying to have as little as possible to keep it easy-to-locate); for example, "media" contains "video", "audio" and such. Under those, for example "audio" there are then dirs for different audio materials, and so on..so the thumb rule is to have things well organized, but still trying to have as little directories at one level as possible. Second thing I try is to not have too deep directory structures, as it takes time to click trough them (unless working in command-line, which I luckily do a lot).

I also use external harddisk for keeping things save (it might break up too, but hopefully it and my machine's internal HD won't break up the same time, so I can save things from either one in case of emergency), of course big enough to hold my personal data. Some things I rarely use are held only on external media (DVD, external HD, ...), to conserve space (in the sense of not having unused directories that just make it difficult to find those I do use).
 
Old 09-11-2007, 08:10 AM   #5
saikee
Senior Member
 
Registered: Sep 2005
Location: Newcastle upon Tyne UK
Distribution: Any free distro.
Posts: 3,398
Blog Entries: 1

Rep: Reputation: 113Reputation: 113
Just make an ext3 partition and store all your data there. Mount it in any Linux in its /etc/fstab. Download "ext2ifs" so that you can use the same partition in MS Windows too. One common data partition for all the OSs. To save space on the Linux use "mv" command to move files you want to store in this master partition as it will remove the old files.
 
Old 09-11-2007, 08:25 AM   #6
synss
Member
 
Registered: Jul 2007
Location: Germany
Distribution: Debian, Gentoo, Mac OS X
Posts: 137

Rep: Reputation: 22
Quote:
Originally Posted by gary4gar View Post
I have one stranger requirement; i always change my OS as try newest Linux distros.
not that strange, just use a spare partition for /home and also put your config in there, do not edit the files in /etc if you can avoid it but have dot-files in your /home, this way you do not have to make the same changes to your config files each time. (eg edit ~/.mpdconf instead of /etc/mpd.conf)

Another thing you may be very interested (and which you can afford since you can back up your whole hard drive to the ext, HDD) is logical volume management (look for lvm2). Then you can create/remove/resize and backup partitions on the fly. I love LVM myself.
 
Old 09-11-2007, 10:27 AM   #7
arubin
Senior Member
 
Registered: Mar 2004
Location: Middx UK
Distribution: Slackware64 15.0 (multilib)
Posts: 1,350

Rep: Reputation: 75
I do not fancy the idea of using ext2ifs at all. One of my main reasons for using Linux is security and I do not like the idea of having a Windows installation capable of reading and writing to Linux. I have a FAT32 partition for sharing files between Linux and Windows but as I hardly ever boot into Windows I hardly need it at all.

I am also a little concerned that if home is shared between different Linux installations then there is the possibility of interference between them if settings in the hidden files are different.

My approach is to have data in separate partitions with soft links from home. So I have a big partition for storing all my music files and a soft link to it from home. Similarly there are soft links to a partition holding documents and pictures. I also have an external hard drive for backup using rsync.

As Vrajgh says, it is mostly a quesyion of 'organisation and discipline'.
 
Old 09-12-2007, 03:20 AM   #8
gary4gar
Member
 
Registered: Aug 2006
Location: India
Distribution: Arch Linux x86_64 KDEmod 4.1
Posts: 52

Original Poster
Rep: Reputation: 15
Thank You guys for your king & useful suggestion
me think what will suit to my needs

also Keep suggesting
what partion size & no of partion should i use??
both on internal & external hdd
 
Old 09-12-2007, 04:30 PM   #9
dracolich
Senior Member
 
Registered: Jul 2005
Distribution: Slackware
Posts: 1,274

Rep: Reputation: 63
It's always good to have /home on a separate partition or disk. Mine is on a 1GB flash drive (backed up frequently). I still have Win2k on a 6GB partition so I have music, movies, pictures on a FAT32 partition that both OSs can read, structured very similar to what Darksidex posted. I don't save a whole lot of music and videos so my FAT32 partition is only 30GB, and I have a symlink from my ~ to where that partition is mounted. Example:

/home/dracolich/Documents -> /mnt/FAT32/Documents

I use a lot of symlinks in my /home to keep it small.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Organized OS theory, not important. webgovernor General 9 12-11-2004 09:20 AM
How is linux development organized? panzram Linux - General 1 11-11-2004 10:44 AM
How do changes stay organized? MailleMan Linux - Newbie 2 07-05-2004 02:43 AM
Getting organized enine Linux - General 3 04-12-2004 01:41 PM
How is your /home/user directory organized cyris Linux - General 4 04-09-2002 05:31 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 03:02 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration