-
Notifications
You must be signed in to change notification settings - Fork 3
/
detect-distro.rb
executable file
·132 lines (102 loc) · 2.46 KB
/
detect-distro.rb
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#!/usr/bin/ruby
##### IDENTIFY DISTRIBUTION ISO #####
#
# WRITTEN BY IAN BRUCE FOR MULTIBOOTUSB
# LICENCE - GPL
#
# $1 is directory to operate on (optional)
require "find"
#if cfg = ARGV[0]
# File.directory?(cfg) &&
# Dir.chdir(cfg) ||
# exit(false)
#end
$DISTRONAMES = {
"pmagic" => "parted-magic",
"partedmagic" => "parted-magic",
"puppy" => "puppy",
"ipcop" => "ipcop",
"archisolabel" => "arch",
"chakraisolabel" => "chakra",
"misolabel" => "arch",
"boot=live" => "debian",
"root=live:" => "fedora",
"root=mgalive:" => "magia",
"redhat" => "redhat",
"suse" => "suse",
"opensuse" => "opensuse",
"slitaz" => "slitaz",
"ophcrack" => "slitaz",
"systemrescuecd" => "systemrescuecd",
"tinycore" => "slitaz",
"xpud" => "slitaz",
"rescue.cpi" => "slitaz",
"untangle" => "slitaz",
"boot=casper" => "ubuntu",
"slax" => "slax",
"porteus" => "porteus",
"wifislax" => "wifislax",
"antix" => "antix",
"livecd=livecd" => "pclinuxos",
"looptype=squashfs" => "gentoo",
"knoppix" => "knoppix",
"finnix" => "finnix",
"sms" => "sms",
"wifiway" => "wifiway",
"unity" => "pclinuxos",
"slack" => "slack",
"salix" => "slackel",
"4mlinux" => "slitaz",
"partition wizard" => "slitaz",
"riplinux" => "slitaz",
"vector" => "sms",
"autoexec" => "sms",
"lebel dummy" => "slitaz"
}
def detect_distro(cfg)
#match = $DISTRONAMES.each_key.reduce { |m, s| "#{m}|#{Regexp.escape(s)}" }
match = $DISTRONAMES.each_key.reduce { |m, s| "#{m}|#{Regexp.escape(s)}" }
regex = Regexp.new(match, true)
count = {}
#Find.find(".") { |name|
Find.find($live_mount) { |name|
Find.prune if name =~ /\/boot\/grub$/i
if name =~ /\.cfg$/i
config = open(name, "r") { |file|
if File.file?(file)
file.read
end
}
if config
config.scan(regex) { |key|
key.downcase!
if count[key]
count[key] += 1
else
count[key] = 1
end
}
end
end
}
#puts count
if max = count.max { |x, y| x[1] <=> y[1] }
puts $DISTRONAMES[max[0]]
return $DISTRONAMES[max[0]]
else
if File.directory?("#{$live_mount}/slackellive")
puts "slackel"
return "slackel"
elsif File.directory?("#{$live_mount}/salixlive")
puts "salixlive"
return "salixlive"
elsif File.exist?("#{$live_mount}/sources/boot.wim")
puts "windows-7"
return "windows-7"
else
puts "ISO not supported."
return nil
end
end
end
#detect_distro("/home/sundar/.multibootusb/live/")