summaryrefslogtreecommitdiffstats
path: root/ext2ed/ext2ed.conf.in
blob: c07962347731b854b093d76c95f1d6dcbcb27fde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
##############################################################################
# ext2ed.conf                                                                #
#                                                                            #
# Configuration file for the extended 2 file system disk editor.             #
##############################################################################

# Ext2Descriptors is the location of the ext2 filesystem structure
# definitions.


Ext2Descriptors		@datadir@/ext2.descriptors 


# Using AlternateDescriptors you can declare additional structures. Those
# structures can contain only variables. Linking functions to the objects is
# possible only through source code additions.


AlternateDescriptors	


# LogFile is the location of the log file. Actual changes to the filesystem
# are logged there. See also LogChanges.


LogFile			/var/log/ext2ed.log


# The following selects the default behavior when changes are made to the
# filesystem. When on, each change will be logged - Both the previous data
# and the new written data.


LogChanges		on


# AllowChanges off will not allow ext2ed to do any changes to the
# filesystem - The "enablewrite" command will not work. When on, enablewrite
# will still have to be issued to allow write access.


AllowChanges		on


# With this option you can choose whether ext2ed will allow read-only mode on
# a mounted filesystem. Read-Write mode is never allowed on a mounted
# filesystem.


AllowMountedRead	on


# When ForceExt2 is set to on, the filesystem is assumed to be ext2
# filesystem, despite the possibly corrupt superblock magic number reading.
# All the ext2 specific commands will be available despite the possible
# autodetection failure.

ForceExt2		off


# Normally, the various filesystem parameters such as the block size and the
# total number of blocks are gathered from the ext2 filesystem itself.
# However, on a corrupt filesystem, ext2ed is unable to get the right
# parameters. In this case, they will be taken from here. See also
# ForceDefault.


DefaultBlockSize	1024
DefaultTotalBlocks	2097151		# ~2 GB total size
DefaultBlocksInGroup	8192

# With ForceDefault on, you can force the use of the default parameters
# above. This is not recommended, as ext2ed will fallback by default to those
# parameters if it can't figure up the parameters from the filesystem itself.


ForceDefault 		off