Guest User

Untitled

a guest
May 25th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.80 KB | None | 0 0
  1. /nix/store/zj062x5cqa9q77mddh01r14ia5ydfy4r-calamares-3.2.0
  2. ├── bin
  3. │   └── calamares
  4. ├── include
  5. │   └── libcalamares
  6. │   ├── CalamaresConfig.h
  7. │   ├── CppJob.h
  8. │   ├── DllMacro.h
  9. │   ├── GlobalStorage.h
  10. │   ├── Job.h
  11. │   ├── JobQueue.h
  12. │   ├── kdsingleapplicationguard
  13. │   │   ├── kdlockedsharedmemorypointer.h
  14. │   │   ├── kdsharedmemorylocker.h
  15. │   │   ├── kdsingleapplicationguard.h
  16. │   │   ├── kdtoolsglobal.h
  17. │   │   └── pimpl_ptr.h
  18. │   ├── PluginDllMacro.h
  19. │   ├── ProcessJob.h
  20. │   ├── PythonHelper.h
  21. │   ├── PythonJobApi.h
  22. │   ├── PythonJob.h
  23. │   ├── Settings.h
  24. │   ├── Typedefs.h
  25. │   └── utils
  26. │   ├── CalamaresUtils.h
  27. │   ├── CalamaresUtilsSystem.h
  28. │   ├── CommandList.h
  29. │   ├── Logger.h
  30. │   ├── PluginFactory.h
  31. │   ├── PluginFactory_p.h
  32. │   ├── Retranslator.h
  33. │   ├── Units.h
  34. │   └── YamlUtils.h
  35. ├── lib
  36. │   ├── calamares
  37. │   │   ├── libcalamares.so -> ../libcalamares.so.3.2.0
  38. │   │   └── modules
  39. │   │   ├── bootloader
  40. │   │   │   ├── main.py
  41. │   │   │   ├── module.desc
  42. │   │   │   └── test.yaml
  43. │   │   ├── contextualprocess
  44. │   │   │   ├── libcalamares_job_contextualprocess.so
  45. │   │   │   └── module.desc
  46. │   │   ├── displaymanager
  47. │   │   │   ├── main.py
  48. │   │   │   └── module.desc
  49. │   │   ├── dracut
  50. │   │   │   ├── main.py
  51. │   │   │   └── module.desc
  52. │   │   ├── dracutlukscfg
  53. │   │   │   ├── libcalamares_job_dracutlukscfg.so
  54. │   │   │   └── module.desc
  55. │   │   ├── dummycpp
  56. │   │   │   ├── libcalamares_job_dummycpp.so
  57. │   │   │   └── module.desc
  58. │   │   ├── dummyprocess
  59. │   │   │   └── module.desc
  60. │   │   ├── dummypython
  61. │   │   │   ├── main.py
  62. │   │   │   └── module.desc
  63. │   │   ├── finished
  64. │   │   │   ├── libcalamares_viewmodule_finished.so
  65. │   │   │   └── module.desc
  66. │   │   ├── fstab
  67. │   │   │   ├── main.py
  68. │   │   │   ├── module.desc
  69. │   │   │   └── test.yaml
  70. │   │   ├── grubcfg
  71. │   │   │   ├── main.py
  72. │   │   │   └── module.desc
  73. │   │   ├── hwclock
  74. │   │   │   ├── main.py
  75. │   │   │   └── module.desc
  76. │   │   ├── initcpio
  77. │   │   │   ├── main.py
  78. │   │   │   └── module.desc
  79. │   │   ├── initcpiocfg
  80. │   │   │   ├── main.py
  81. │   │   │   └── module.desc
  82. │   │   ├── initramfs
  83. │   │   │   ├── main.py
  84. │   │   │   ├── module.desc
  85. │   │   │   └── README.md
  86. │   │   ├── initramfscfg
  87. │   │   │   ├── encrypt_hook
  88. │   │   │   ├── encrypt_hook_nokey
  89. │   │   │   ├── main.py
  90. │   │   │   └── module.desc
  91. │   │   ├── interactiveterminal
  92. │   │   │   ├── libcalamares_viewmodule_interactiveterminal.so
  93. │   │   │   └── module.desc
  94. │   │   ├── keyboard
  95. │   │   │   ├── libcalamares_viewmodule_keyboard.so
  96. │   │   │   └── module.desc
  97. │   │   ├── license
  98. │   │   │   ├── libcalamares_viewmodule_license.so
  99. │   │   │   └── module.desc
  100. │   │   ├── locale
  101. │   │   │   ├── libcalamares_viewmodule_locale.so
  102. │   │   │   └── module.desc
  103. │   │   ├── localecfg
  104. │   │   │   ├── main.py
  105. │   │   │   └── module.desc
  106. │   │   ├── luksbootkeyfile
  107. │   │   │   ├── main.py
  108. │   │   │   └── module.desc
  109. │   │   ├── luksopenswaphookcfg
  110. │   │   │   ├── main.py
  111. │   │   │   └── module.desc
  112. │   │   ├── machineid
  113. │   │   │   ├── main.py
  114. │   │   │   └── module.desc
  115. │   │   ├── mount
  116. │   │   │   ├── main.py
  117. │   │   │   ├── module.desc
  118. │   │   │   └── test.yaml
  119. │   │   ├── netinstall
  120. │   │   │   ├── libcalamares_viewmodule_netinstall.so
  121. │   │   │   └── module.desc
  122. │   │   ├── networkcfg
  123. │   │   │   ├── main.py
  124. │   │   │   └── module.desc
  125. │   │   ├── openrcdmcryptcfg
  126. │   │   │   ├── main.py
  127. │   │   │   └── module.desc
  128. │   │   ├── packages
  129. │   │   │   ├── main.py
  130. │   │   │   ├── module.desc
  131. │   │   │   └── test.yaml
  132. │   │   ├── partition
  133. │   │   │   ├── libcalamares_viewmodule_partition.so
  134. │   │   │   └── module.desc
  135. │   │   ├── plymouthcfg
  136. │   │   │   ├── main.py
  137. │   │   │   └── module.desc
  138. │   │   ├── removeuser
  139. │   │   │   ├── main.py
  140. │   │   │   └── module.desc
  141. │   │   ├── services
  142. │   │   │   ├── main.py
  143. │   │   │   └── module.desc
  144. │   │   ├── shellprocess
  145. │   │   │   ├── libcalamares_job_shellprocess.so
  146. │   │   │   └── module.desc
  147. │   │   ├── summary
  148. │   │   │   ├── libcalamares_viewmodule_summary.so
  149. │   │   │   └── module.desc
  150. │   │   ├── tracking
  151. │   │   │   ├── libcalamares_viewmodule_tracking.so
  152. │   │   │   └── module.desc
  153. │   │   ├── umount
  154. │   │   │   ├── main.py
  155. │   │   │   └── module.desc
  156. │   │   ├── unpackfs
  157. │   │   │   ├── main.py
  158. │   │   │   └── module.desc
  159. │   │   ├── users
  160. │   │   │   ├── libcalamares_viewmodule_users.so
  161. │   │   │   └── module.desc
  162. │   │   ├── webview
  163. │   │   │   ├── libcalamares_viewmodule_webview.so
  164. │   │   │   └── module.desc
  165. │   │   └── welcome
  166. │   │   ├── libcalamares_viewmodule_welcome.so
  167. │   │   └── module.desc
  168. │   ├── cmake
  169. │   │   └── Calamares
  170. │   │   ├── CalamaresAddBrandingSubdirectory.cmake
  171. │   │   ├── CalamaresAddLibrary.cmake
  172. │   │   ├── CalamaresAddModuleSubdirectory.cmake
  173. │   │   ├── CalamaresAddPlugin.cmake
  174. │   │   ├── CalamaresAddTranslations.cmake
  175. │   │   ├── CalamaresConfig.cmake
  176. │   │   ├── CalamaresConfigVersion.cmake
  177. │   │   ├── CalamaresLibraryDepends.cmake
  178. │   │   ├── CalamaresLibraryDepends-release.cmake
  179. │   │   ├── CalamaresUse.cmake
  180. │   │   └── CMakeColors.cmake
  181. │   ├── libcalamares.so -> libcalamares.so.3.2.0
  182. │   ├── libcalamares.so.3.2.0
  183. │   ├── libcalamaresui.so -> libcalamaresui.so.3.2.0
  184. │   └── libcalamaresui.so.3.2.0
  185. ├── nix-support
  186. │   └── propagated-user-env-packages
  187. └── share
  188. ├── applications
  189. │   └── calamares.desktop
  190. ├── calamares
  191. │   ├── branding
  192. │   │   └── default
  193. │   │   ├── branding.desc
  194. │   │   ├── languages.png
  195. │   │   ├── show.qml
  196. │   │   └── squid.png
  197. │   ├── modules
  198. │   │   ├── bootloader.conf
  199. │   │   ├── contextualprocess.conf
  200. │   │   ├── displaymanager.conf
  201. │   │   ├── dummycpp.conf
  202. │   │   ├── dummypython.conf
  203. │   │   ├── finished.conf
  204. │   │   ├── fstab.conf
  205. │   │   ├── grubcfg.conf
  206. │   │   ├── initcpio.conf
  207. │   │   ├── interactiveterminal.conf
  208. │   │   ├── keyboard.conf
  209. │   │   ├── license.conf
  210. │   │   ├── locale.conf
  211. │   │   ├── luksopenswaphookcfg.conf
  212. │   │   ├── machineid.conf
  213. │   │   ├── mount.conf
  214. │   │   ├── netinstall.conf
  215. │   │   ├── openrcdmcryptcfg.conf
  216. │   │   ├── owncloud.conf
  217. │   │   ├── packages.conf
  218. │   │   ├── partition.conf
  219. │   │   ├── plymouthcfg.conf
  220. │   │   ├── removeuser.conf
  221. │   │   ├── services.conf
  222. │   │   ├── shellprocess.conf
  223. │   │   ├── tracking.conf
  224. │   │   ├── umount.conf
  225. │   │   ├── unpackfs.conf
  226. │   │   ├── users.conf
  227. │   │   ├── webview.conf
  228. │   │   └── welcome.conf
  229. │   ├── qml
  230. │   │   └── calamares
  231. │   │   └── slideshow
  232. │   │   ├── BackButton.qml
  233. │   │   ├── ForwardButton.qml
  234. │   │   ├── NavButton.qml
  235. │   │   ├── Presentation.qml
  236. │   │   ├── qmldir
  237. │   │   ├── SlideCounter.qml
  238. │   │   └── Slide.qml
  239. │   └── settings.conf
  240. ├── icons
  241. │   └── hicolor
  242. │   └── scalable
  243. │   └── apps
  244. │   └── calamares.svg
  245. ├── locale
  246. │   ├── ar
  247. │   │   └── LC_MESSAGES
  248. │   │   └── calamares-python.mo
  249. │   ├── ast
  250. │   │   └── LC_MESSAGES
  251. │   │   └── calamares-python.mo
  252. │   ├── bg
  253. │   │   └── LC_MESSAGES
  254. │   │   └── calamares-python.mo
  255. │   ├── ca
  256. │   │   └── LC_MESSAGES
  257. │   │   └── calamares-python.mo
  258. │   ├── cs_CZ
  259. │   │   └── LC_MESSAGES
  260. │   │   └── calamares-python.mo
  261. │   ├── da
  262. │   │   └── LC_MESSAGES
  263. │   │   └── calamares-python.mo
  264. │   ├── de
  265. │   │   └── LC_MESSAGES
  266. │   │   └── calamares-python.mo
  267. │   ├── el
  268. │   │   └── LC_MESSAGES
  269. │   │   └── calamares-python.mo
  270. │   ├── en_GB
  271. │   │   └── LC_MESSAGES
  272. │   │   └── calamares-python.mo
  273. │   ├── es
  274. │   │   └── LC_MESSAGES
  275. │   │   └── calamares-python.mo
  276. │   ├── es_MX
  277. │   │   └── LC_MESSAGES
  278. │   │   └── calamares-python.mo
  279. │   ├── es_PR
  280. │   │   └── LC_MESSAGES
  281. │   │   └── calamares-python.mo
  282. │   ├── et
  283. │   │   └── LC_MESSAGES
  284. │   │   └── calamares-python.mo
  285. │   ├── eu
  286. │   │   └── LC_MESSAGES
  287. │   │   └── calamares-python.mo
  288. │   ├── fi_FI
  289. │   │   └── LC_MESSAGES
  290. │   │   └── calamares-python.mo
  291. │   ├── fr
  292. │   │   └── LC_MESSAGES
  293. │   │   └── calamares-python.mo
  294. │   ├── gl
  295. │   │   └── LC_MESSAGES
  296. │   │   └── calamares-python.mo
  297. │   ├── he
  298. │   │   └── LC_MESSAGES
  299. │   │   └── calamares-python.mo
  300. │   ├── hi
  301. │   │   └── LC_MESSAGES
  302. │   │   └── calamares-python.mo
  303. │   ├── hr
  304. │   │   └── LC_MESSAGES
  305. │   │   └── calamares-python.mo
  306. │   ├── hu
  307. │   │   └── LC_MESSAGES
  308. │   │   └── calamares-python.mo
  309. │   ├── id
  310. │   │   └── LC_MESSAGES
  311. │   │   └── calamares-python.mo
  312. │   ├── is
  313. │   │   └── LC_MESSAGES
  314. │   │   └── calamares-python.mo
  315. │   ├── it_IT
  316. │   │   └── LC_MESSAGES
  317. │   │   └── calamares-python.mo
  318. │   ├── ja
  319. │   │   └── LC_MESSAGES
  320. │   │   └── calamares-python.mo
  321. │   ├── kk
  322. │   │   └── LC_MESSAGES
  323. │   │   └── calamares-python.mo
  324. │   ├── kn
  325. │   │   └── LC_MESSAGES
  326. │   │   └── calamares-python.mo
  327. │   ├── lt
  328. │   │   └── LC_MESSAGES
  329. │   │   └── calamares-python.mo
  330. │   ├── mr
  331. │   │   └── LC_MESSAGES
  332. │   │   └── calamares-python.mo
  333. │   ├── nb
  334. │   │   └── LC_MESSAGES
  335. │   │   └── calamares-python.mo
  336. │   ├── nl
  337. │   │   └── LC_MESSAGES
  338. │   │   └── calamares-python.mo
  339. │   ├── pl
  340. │   │   └── LC_MESSAGES
  341. │   │   └── calamares-python.mo
  342. │   ├── pt_BR
  343. │   │   └── LC_MESSAGES
  344. │   │   └── calamares-python.mo
  345. │   ├── pt_PT
  346. │   │   └── LC_MESSAGES
  347. │   │   └── calamares-python.mo
  348. │   ├── ro
  349. │   │   └── LC_MESSAGES
  350. │   │   └── calamares-python.mo
  351. │   ├── ru
  352. │   │   └── LC_MESSAGES
  353. │   │   └── calamares-python.mo
  354. │   ├── sk
  355. │   │   └── LC_MESSAGES
  356. │   │   └── calamares-python.mo
  357. │   ├── sl
  358. │   │   └── LC_MESSAGES
  359. │   │   └── calamares-python.mo
  360. │   ├── sq
  361. │   │   └── LC_MESSAGES
  362. │   │   └── calamares-python.mo
  363. │   ├── sr
  364. │   │   └── LC_MESSAGES
  365. │   │   └── calamares-python.mo
  366. │   ├── sr@latin
  367. │   │   └── LC_MESSAGES
  368. │   │   └── calamares-python.mo
  369. │   ├── sv
  370. │   │   └── LC_MESSAGES
  371. │   │   └── calamares-python.mo
  372. │   ├── th
  373. │   │   └── LC_MESSAGES
  374. │   │   └── calamares-python.mo
  375. │   ├── tr_TR
  376. │   │   └── LC_MESSAGES
  377. │   │   └── calamares-python.mo
  378. │   ├── uk
  379. │   │   └── LC_MESSAGES
  380. │   │   └── calamares-python.mo
  381. │   ├── zh_CN
  382. │   │   └── LC_MESSAGES
  383. │   │   └── calamares-python.mo
  384. │   └── zh_TW
  385. │   └── LC_MESSAGES
  386. │   └── calamares-python.mo
  387. ├── man
  388. │   └── man8
  389. │   └── calamares.8.gz
  390. └── polkit-1
  391. └── actions
  392. └── com.github.calamares.calamares.policy
  393.  
  394. 164 directories, 227 files
Add Comment
Please, Sign In to add comment