How linux manages without Registry ????

Status
Not open for further replies.

~Phenom~

The No.1 Stupid
Hi friends ,
As far as I know there is no such thing in linux as registry ( regedit.exe) in windows. Now I wanna know if registry is such an imp part in windows , how linux manages without registry ???
 

mediator

Technomancer
As far as I remember it, it does it through the use of inodes. Google for it "linux+inodes" u'll find a lot!
 

subratabera

Just another linux lover.
AFAIK Linux puts all its configuration in plane text files located in your home directory or /etc directory...

I'm glad there is no registry in Linux, just plain, understandable and readable text files. I think the registry is one of the worst implementations of a centralized configuration. It totally sucks...
 

eddie

El mooooo
subratabera said:
AFAIK Linux puts all its configuration in plane text files located in your home directory or /etc directory...
^ Absolutely...
Also, all the user level changes you make in a particular application are stored in hidden directories under your home directory. This makes it easier for you to return to default settings. Just delete the relevant hidden directory...the application will reach its default state and all the needed conf files will be recreated on next launch of the app.
 

desertwind

Cyborg Agent
and there are a few gui editors availables for these configurations like there's gconf-editor for almost all gnome applications.
 

JGuru

Wise Old Owl
That's right. If you are using GNOME there is gconf-editor. This is very similar to a Registry in WIndows!!

$ gconf-editor

Actually Linux O.S creates it's own configuration text files that start with '.' (these are hidden files) that are
stored in your '/home/<loginname>' directory. Press Ctrl + H to view the hidden files. Press the same keys
again, all the hidden files disappear.
 
Last edited:
OP
~Phenom~

~Phenom~

The No.1 Stupid
thanx guys. I got the point .
@JGURU , I checked gconf-editor and got my answer. Thanx buddy.
 

praka123

left this forum longback
Linux file systems are less fragmented afaik for eg:ext2/3 at max can get fragmented to approx 12% and in normal circumstances no defragmentation needed,though "defrag" tool is available for defragmenting ext2 filesystem.
read here:
7.3. Some facts about file systems and fragmentation

Disk space is administered by the operating system in units of blocks and
fragments of blocks. In ext2, fragments and blocks have to be of the same
size, so we can limit our discussion to blocks.

Files come in any size. They don't end on block boundaries. So with every
file a part of the last block of every file is wasted. Assuming that file
sizes are random, there is approximately a half block of waste for each file
on your disk. Tanenbaum calls this "internal fragmentation" in his book
"Operating Systems".

You can guess the number of files on your disk by the number of allocated
inodes on a disk. On my disk
# df -i
Filesystem Inodes IUsed IFree %IUsed Mounted on
/dev/hda3 64256 12234 52022 19% /
/dev/hda5 96000 43058 52942 45% /var
there are about 12000 files on / and about 44000 files on /var. At a block
size of 1 KB, about 6+22 = 28 MB of disk space are lost in the tail blocks of
files. Had I chosen a block size of 4 KB, I had lost 4 times this space.

Data transfer is faster for large contiguous chunks of data, though. That's
why ext2 tries to preallocate space in units of 8 contigous blocks for
growing files. Unused preallocation is released when the file is closed, so
no space is wasted.

Noncontiguous placement of blocks in a file is bad for performance, since
files are often accessed in a sequential manner. It forces the operating
system to split a disk access and the disk to move the head. This is called
"external fragmentation" or simply "fragmentation" and is a common problem
with MS-DOS file systems. In conjunction with the abysmal buffer cache used
by MS-DOS, the effects of file fragmentation on performance are very
noticeable. DOS users are accustomed to defragging their disks every few
weeks and some have even developed some ritualistic beliefs regarding
defragmentation.

None of these habits should be carried over to Linux and ext2. Linux native
file systems do not need defragmentation under normal use and this includes
any condition with at least 5% of free space on a disk. There is a
defragmentation tool for ext2 called defrag, but users are cautioned against
casual use. A power outage during such an operation can trash your file
system. Since you need to back up your data anyway, simply writing back from
your copy will do the job.

The MS-DOS file system is also known to lose large amounts of disk space due
to internal fragmentation. For partitions larger than 256 MB, DOS block sizes
grow so large that they are no longer useful (This has been corrected to some
extent with FAT32). Ext2 does not force you to choose large blocks for large
file systems, except for very large file systems in the 0.5 TB range (that's
terabytes with 1 TB equaling 1024 GB) and above, where small block sizes
become inefficient. So unlike DOS there is no need to split up large disks
into multiple partitions to keep block size down.

Use a 1Kb block size if you have many small files. For large partitions, 4Kb
blocks are fine.
source:
*linuxplanet.com/linuxplanet/tutorials/3174/8/
Also:
*linuxfinances.info/info/defrag.html
 

JGuru

Wise Old Owl
@Qwerty, @Vishal will definitely use Linux & Vista. Ofcourse he can edit a Registry if
he installs Wine or CrossOver Office!!! There is also 'gconf-editor' that's very similar
to a Windows Registry.
 
Status
Not open for further replies.
Top Bottom