Guest User

Untitled

a guest
Jul 29th, 2020
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 36.22 KB | None | 0 0
  1. Last login: Tue Jul 28 18:42:45 on ttys000
  2. djo@djos-MacBook-Pro ~ % tel = {'jack': 4098, 'sape': 4139)
  3. zsh: parse error near `)'
  4. djo@djos-MacBook-Pro ~ % python
  5.  
  6. WARNING: Python 2.7 is not recommended.
  7. This version is included in macOS for compatibility with legacy software.
  8. Future versions of macOS will not include Python 2.7.
  9. Instead, it is recommended that you transition to using 'python3' from within Terminal.
  10.  
  11. Python 2.7.16 (default, Jul 5 2020, 02:24:03)
  12. [GCC 4.2.1 Compatible Apple LLVM 11.0.3 (clang-1103.0.29.21) (-macos10.15-objc- on darwin
  13. Type "help", "copyright", "credits" or "license" for more information.
  14. >>> tel = {'jack': 4098, 'sape': 4139)
  15. File "<stdin>", line 1
  16. tel = {'jack': 4098, 'sape': 4139)
  17. ^
  18. IndentationError: unexpected indent
  19. >>> tel['guido'] = 4127
  20. Traceback (most recent call last):
  21. File "<stdin>", line 1, in <module>
  22. NameError: name 'tel' is not defined
  23. >>> tel
  24. Traceback (most recent call last):
  25. File "<stdin>", line 1, in <module>
  26. NameError: name 'tel' is not defined
  27. >>> tel
  28. Traceback (most recent call last):
  29. File "<stdin>", line 1, in <module>
  30. NameError: name 'tel' is not defined
  31. >>> var tell = {'jack': 4098, 'sape': 4139}
  32. File "<stdin>", line 1
  33. var tell = {'jack': 4098, 'sape': 4139}
  34. ^
  35. SyntaxError: invalid syntax
  36. >>> ^D
  37. djo@djos-MacBook-Pro ~ % python3
  38. Python 3.7.3 (default, Apr 24 2020, 18:51:23)
  39. [Clang 11.0.3 (clang-1103.0.32.62)] on darwin
  40. Type "help", "copyright", "credits" or "license" for more information.
  41. >>> tel = {'jack': 4098, 'sape': 4139)
  42. File "<stdin>", line 1
  43. tel = {'jack': 4098, 'sape': 4139)
  44. ^
  45. IndentationError: unexpected indent
  46. >>> dict([('cal', 44), ('anx', 54), ('mood',65))])
  47. File "<stdin>", line 1
  48. dict([('cal', 44), ('anx', 54), ('mood',65))])
  49. ^
  50. SyntaxError: invalid syntax
  51. >>> dict([('cal', 44), ('anx', 54), ('mood',65)])
  52. {'cal': 44, 'anx': 54, 'mood': 65}
  53. >>> knightes ={'gallahad': 'the pure', 'robin: 'the brave'}
  54. File "<stdin>", line 1
  55. knightes ={'gallahad': 'the pure', 'robin: 'the brave'}
  56. ^
  57. SyntaxError: invalid syntax
  58. >>> knights = {'gallahad': 'the pure', 'robin: 'the brave'}
  59. File "<stdin>", line 1
  60. knights = {'gallahad': 'the pure', 'robin: 'the brave'}
  61. ^
  62. SyntaxError: invalid syntax
  63. >>> knights = {'gallahad': 'the pure', 'robin: 'the brave'}
  64. File "<stdin>", line 1
  65. knights = {'gallahad': 'the pure', 'robin: 'the brave'}
  66. ^
  67. SyntaxError: invalid syntax
  68. >>> for k, v in knights.items():
  69. ... print(k,v)
  70. ...
  71. Traceback (most recent call last):
  72. File "<stdin>", line 1, in <module>
  73. NameError: name 'knights' is not defined
  74. >>> knights.items()
  75. Traceback (most recent call last):
  76. File "<stdin>", line 1, in <module>
  77. NameError: name 'knights' is not defined
  78. >>> bitches = {'mary': 'the big titted', 'sadie': 'the fuckable'}
  79. >>> for k, v in bitches.items():
  80. ... print(k, v)
  81. File "<stdin>", line 2
  82. print(k, v)
  83. ^
  84. IndentationError: expected an indented block
  85. >>> for k, v in bitches.items():
  86. ... print(k, v)
  87. ...
  88. mary the big titted
  89. sadie the fuckable
  90. >>> calories = [451, 663, 223]
  91. >>> injest_time = [12, 3, 11]
  92. >>> for q, a, in zip(calories, injest_time):
  93. ... print ('{0}:{1}'.format(q,a))
  94. ...
  95. 451:12
  96. 663:3
  97. 223:11
  98. >>> import math
  99. >>> raw_data = [56.2, float('NaN'), 51.7, 55.3, 52.5, float('NaN'), 47.8]
  100. >>> filtered_data = []
  101. >>> for value in raw_data:
  102. ... if not math.isnan(value):
  103. ... filtered_data.append(value)
  104. ...
  105. >>> filtered_data
  106. [56.2, 51.7, 55.3, 52.5, 47.8]
  107. >>> list(bitches)
  108. ['mary', 'sadie']
  109. >>> len(bitches)
  110. 2
  111. >>> d[
  112. ... ^D
  113. djo@djos-MacBook-Pro ~ %
  114. djo@djos-MacBook-Pro ~ % python
  115.  
  116. WARNING: Python 2.7 is not recommended.
  117. This version is included in macOS for compatibility with legacy software.
  118. Future versions of macOS will not include Python 2.7.
  119. Instead, it is recommended that you transition to using 'python3' from within Terminal.
  120.  
  121. Python 2.7.16 (default, Jul 5 2020, 02:24:03)
  122. [GCC 4.2.1 Compatible Apple LLVM 11.0.3 (clang-1103.0.29.21) (-macos10.15-objc- on darwin
  123. Type "help", "copyright", "credits" or "license" for more information.
  124. >>> list(bitches)
  125. Traceback (most recent call last):
  126. File "<stdin>", line 1, in <module>
  127. NameError: name 'bitches' is not defined
  128. >>> ^D
  129. djo@djos-MacBook-Pro ~ % brew install qemu
  130. Updating Homebrew...
  131. ==> Auto-updated Homebrew!
  132. Updated 1 tap (homebrew/core).
  133. ==> Updated Formulae
  134. Updated 10 formulae.
  135.  
  136. ==> Downloading https://homebrew.bintray.com/bottles/gettext-0.20.2_1.catalina.b
  137. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/71f4ded03e8258b5e6896
  138. ######################################################################## 100.0%
  139. ==> Downloading https://homebrew.bintray.com/bottles/libffi-3.3.catalina.bottle.
  140. ######################################################################## 100.0%
  141. ==> Downloading https://homebrew.bintray.com/bottles/pcre-8.44.catalina.bottle.t
  142. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/f8ac266e04f984fa55091
  143. ######################################################################## 100.0%
  144. ==> Downloading https://homebrew.bintray.com/bottles/gdbm-1.18.1_1.catalina.bott
  145. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/f7b5ab7363961fa6defcb
  146. ######################################################################## 100.0%
  147. ==> Downloading https://homebrew.bintray.com/bottles/readline-8.0.4.catalina.bot
  148. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/6ae1c8e7c783f32bd22c6
  149. ######################################################################## 100.0%
  150. ==> Downloading https://homebrew.bintray.com/bottles/sqlite-3.32.3.catalina.bott
  151. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/98f798c4a62c9db46cc6a
  152. ######################################################################## 100.0%
  153. ==> Downloading https://homebrew.bintray.com/bottles/xz-5.2.5.catalina.bottle.ta
  154. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/2dcc8e0121c934d1e34ff
  155. ######################################################################## 100.0%
  156. ==> Downloading https://homebrew.bintray.com/bottles/python%403.8-3.8.5.catalina
  157. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/3f0592dfdf6bf38c25870
  158. ######################################################################## 100.0%
  159. ==> Downloading https://homebrew.bintray.com/bottles/glib-2.64.4_1.catalina.bott
  160. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/5b4079bc14d3e16b74568
  161. ######################################################################## 100.0%
  162. ==> Downloading https://homebrew.bintray.com/bottles/gmp-6.2.0.catalina.bottle.t
  163. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/2e6acd6e62d1b8ef08000
  164. ######################################################################## 100.0%
  165. ==> Downloading https://homebrew.bintray.com/bottles/libunistring-0.9.10.catalin
  166. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/ce746662b98d93511b869
  167. ######################################################################## 100.0%
  168. ==> Downloading https://homebrew.bintray.com/bottles/libidn2-2.3.0.catalina.bott
  169. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/0908585cca518a83f101b
  170. ######################################################################## 100.0%
  171. ==> Downloading https://homebrew.bintray.com/bottles/libtasn1-4.16.0.catalina.bo
  172. ######################################################################## 100.0%
  173. ==> Downloading https://homebrew.bintray.com/bottles/nettle-3.6.catalina.bottle.
  174. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/7ac7677ba653dbef81dd8
  175. ######################################################################## 100.0%
  176. ==> Downloading https://homebrew.bintray.com/bottles/p11-kit-0.23.20_1.catalina.
  177. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/f9d23713a5fbd8e1eea89
  178. ######################################################################## 100.0%
  179. ==> Downloading https://homebrew.bintray.com/bottles/libevent-2.1.12.catalina.bo
  180. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/b5f5e7607d76b9b41ecac
  181. ######################################################################## 100.0%
  182. ==> Downloading https://homebrew.bintray.com/bottles/unbound-1.10.1.catalina.bot
  183. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/7f66893bc42c776fb8437
  184. ######################################################################## 100.0%
  185. ==> Downloading https://homebrew.bintray.com/bottles/gnutls-3.6.14.catalina.bott
  186. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/ed76b5d22e195a797c2d0
  187. ######################################################################## 100.0%
  188. ==> Downloading https://homebrew.bintray.com/bottles/jpeg-9d.catalina.bottle.tar
  189. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/8f7b82a952fb3937889c7
  190. ######################################################################## 100.0%
  191. ==> Downloading https://homebrew.bintray.com/bottles/libpng-1.6.37.catalina.bott
  192. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/c8e74da602c21f978cd7e
  193. ######################################################################## 100.0%
  194. ==> Downloading https://homebrew.bintray.com/bottles/libssh-0.9.4.catalina.bottl
  195. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/80a7241688554d68ba4df
  196. ######################################################################## 100.0%
  197. ==> Downloading https://homebrew.bintray.com/bottles/libusb-1.0.23.catalina.bott
  198. ######################################################################## 100.0%
  199. ==> Downloading https://homebrew.bintray.com/bottles/lzo-2.10.catalina.bottle.ta
  200. ######################################################################## 100.0%
  201. ==> Downloading https://homebrew.bintray.com/bottles/ncurses-6.2.catalina.bottle
  202. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/eae51ad3391edafe3d6c6
  203. ######################################################################## 100.0%
  204. ==> Downloading https://homebrew.bintray.com/bottles/pixman-0.40.0.catalina.bott
  205. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/1862e6826a4bedb97af8d
  206. ######################################################################## 100.0%
  207. ==> Downloading https://homebrew.bintray.com/bottles/snappy-1.1.8.catalina.bottl
  208. ######################################################################## 100.0%
  209. ==> Downloading https://homebrew.bintray.com/bottles/vde-2.3.2.catalina.bottle.t
  210. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/141613f09143ec306b518
  211. ######################################################################## 100.0%
  212. ==> Downloading https://homebrew.bintray.com/bottles/qemu-5.0.0_2.catalina.bottl
  213. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/d502a1077e1adf1653a5f
  214. ######################################################################## 100.0%
  215. ==> Installing dependencies for qemu: gettext, libffi, pcre, gdbm, readline, sqlite, xz, [email protected], glib, gmp, libunistring, libidn2, libtasn1, nettle, p11-kit, libevent, unbound, gnutls, jpeg, libpng, libssh, libusb, lzo, ncurses, pixman, snappy and vde
  216. ==> Installing qemu dependency: gettext
  217. ==> Pouring gettext-0.20.2_1.catalina.bottle.tar.gz
  218. 🍺 /usr/local/Cellar/gettext/0.20.2_1: 1,923 files, 18.6MB
  219. ==> Installing qemu dependency: libffi
  220. ==> Pouring libffi-3.3.catalina.bottle.tar.gz
  221. ==> Caveats
  222. libffi is keg-only, which means it was not symlinked into /usr/local,
  223. because macOS already provides this software and installing another version in
  224. parallel can cause all kinds of trouble.
  225.  
  226. For compilers to find libffi you may need to set:
  227. export LDFLAGS="-L/usr/local/opt/libffi/lib"
  228. export CPPFLAGS="-I/usr/local/opt/libffi/include"
  229.  
  230. ==> Summary
  231. 🍺 /usr/local/Cellar/libffi/3.3: 16 files, 489.4KB
  232. ==> Installing qemu dependency: pcre
  233. ==> Pouring pcre-8.44.catalina.bottle.tar.gz
  234. 🍺 /usr/local/Cellar/pcre/8.44: 204 files, 5.5MB
  235. ==> Installing qemu dependency: gdbm
  236. ==> Pouring gdbm-1.18.1_1.catalina.bottle.tar.gz
  237. 🍺 /usr/local/Cellar/gdbm/1.18.1_1: 25 files, 641.0KB
  238. ==> Installing qemu dependency: readline
  239. ==> Pouring readline-8.0.4.catalina.bottle.tar.gz
  240. ==> Caveats
  241. readline is keg-only, which means it was not symlinked into /usr/local,
  242. because macOS provides BSD libedit.
  243.  
  244. For compilers to find readline you may need to set:
  245. export LDFLAGS="-L/usr/local/opt/readline/lib"
  246. export CPPFLAGS="-I/usr/local/opt/readline/include"
  247.  
  248. ==> Summary
  249. 🍺 /usr/local/Cellar/readline/8.0.4: 48 files, 1.5MB
  250. ==> Installing qemu dependency: sqlite
  251. ==> Pouring sqlite-3.32.3.catalina.bottle.tar.gz
  252. ==> Caveats
  253. sqlite is keg-only, which means it was not symlinked into /usr/local,
  254. because macOS already provides this software and installing another version in
  255. parallel can cause all kinds of trouble.
  256.  
  257. If you need to have sqlite first in your PATH run:
  258. echo 'export PATH="/usr/local/opt/sqlite/bin:$PATH"' >> ~/.zshrc
  259.  
  260. For compilers to find sqlite you may need to set:
  261. export LDFLAGS="-L/usr/local/opt/sqlite/lib"
  262. export CPPFLAGS="-I/usr/local/opt/sqlite/include"
  263.  
  264. ==> Summary
  265. 🍺 /usr/local/Cellar/sqlite/3.32.3: 11 files, 4MB
  266. ==> Installing qemu dependency: xz
  267. ==> Pouring xz-5.2.5.catalina.bottle.tar.gz
  268. 🍺 /usr/local/Cellar/xz/5.2.5: 92 files, 1.1MB
  269. ==> Installing qemu dependency: [email protected]
  270. ==> Pouring [email protected]
  271. ==> /usr/local/Cellar/[email protected]/3.8.5/bin/python3 -s setup.py --no-user-cfg ins
  272. ==> /usr/local/Cellar/[email protected]/3.8.5/bin/python3 -s setup.py --no-user-cfg ins
  273. ==> /usr/local/Cellar/[email protected]/3.8.5/bin/python3 -s setup.py --no-user-cfg ins
  274. ==> Caveats
  275. Python has been installed as
  276. /usr/local/bin/python3
  277.  
  278. Unversioned symlinks `python`, `python-config`, `pip` etc. pointing to
  279. `python3`, `python3-config`, `pip3` etc., respectively, have been installed into
  280. /usr/local/opt/[email protected]/libexec/bin
  281.  
  282. You can install Python packages with
  283. pip3 install <package>
  284. They will install into the site-package directory
  285. /usr/local/lib/python3.8/site-packages
  286.  
  287. See: https://docs.brew.sh/Homebrew-and-Python
  288. ==> Summary
  289. 🍺 /usr/local/Cellar/[email protected]/3.8.5: 4,331 files, 67MB
  290. ==> Installing qemu dependency: glib
  291. ==> Pouring glib-2.64.4_1.catalina.bottle.tar.gz
  292. ==> Caveats
  293. Bash completion has been installed to:
  294. /usr/local/etc/bash_completion.d
  295. ==> Summary
  296. 🍺 /usr/local/Cellar/glib/2.64.4_1: 436 files, 14.8MB
  297. ==> Installing qemu dependency: gmp
  298. ==> Pouring gmp-6.2.0.catalina.bottle.tar.gz
  299. 🍺 /usr/local/Cellar/gmp/6.2.0: 20 files, 3.2MB
  300. ==> Installing qemu dependency: libunistring
  301. ==> Pouring libunistring-0.9.10.catalina.bottle.tar.gz
  302. 🍺 /usr/local/Cellar/libunistring/0.9.10: 54 files, 4.4MB
  303. ==> Installing qemu dependency: libidn2
  304. ==> Pouring libidn2-2.3.0.catalina.bottle.tar.gz
  305. 🍺 /usr/local/Cellar/libidn2/2.3.0: 70 files, 727.8KB
  306. ==> Installing qemu dependency: libtasn1
  307. ==> Pouring libtasn1-4.16.0.catalina.bottle.tar.gz
  308. 🍺 /usr/local/Cellar/libtasn1/4.16.0: 60 files, 404.5KB
  309. ==> Installing qemu dependency: nettle
  310. ==> Pouring nettle-3.6.catalina.bottle.tar.gz
  311. 🍺 /usr/local/Cellar/nettle/3.6: 87 files, 2.4MB
  312. ==> Installing qemu dependency: p11-kit
  313. ==> Pouring p11-kit-0.23.20_1.catalina.bottle.tar.gz
  314. 🍺 /usr/local/Cellar/p11-kit/0.23.20_1: 63 files, 2.9MB
  315. ==> Installing qemu dependency: libevent
  316. ==> Pouring libevent-2.1.12.catalina.bottle.tar.gz
  317. 🍺 /usr/local/Cellar/libevent/2.1.12: 57 files, 1.9MB
  318. ==> Installing qemu dependency: unbound
  319. ==> Pouring unbound-1.10.1.catalina.bottle.tar.gz
  320. ==> Caveats
  321. To have launchd start unbound now and restart at startup:
  322. sudo brew services start unbound
  323. ==> Summary
  324. 🍺 /usr/local/Cellar/unbound/1.10.1: 57 files, 5MB
  325. ==> Installing qemu dependency: gnutls
  326. ==> Pouring gnutls-3.6.14.catalina.bottle.tar.gz
  327. 🍺 /usr/local/Cellar/gnutls/3.6.14: 1,244 files, 10.2MB
  328. ==> Installing qemu dependency: jpeg
  329. ==> Pouring jpeg-9d.catalina.bottle.tar.gz
  330. 🍺 /usr/local/Cellar/jpeg/9d: 21 files, 775.2KB
  331. ==> Installing qemu dependency: libpng
  332. ==> Pouring libpng-1.6.37.catalina.bottle.tar.gz
  333. 🍺 /usr/local/Cellar/libpng/1.6.37: 27 files, 1.2MB
  334. ==> Installing qemu dependency: libssh
  335. ==> Pouring libssh-0.9.4.catalina.bottle.tar.gz
  336. 🍺 /usr/local/Cellar/libssh/0.9.4: 21 files, 571.1KB
  337. ==> Installing qemu dependency: libusb
  338. ==> Pouring libusb-1.0.23.catalina.bottle.1.tar.gz
  339. 🍺 /usr/local/Cellar/libusb/1.0.23: 26 files, 474.2KB
  340. ==> Installing qemu dependency: lzo
  341. ==> Pouring lzo-2.10.catalina.bottle.tar.gz
  342. 🍺 /usr/local/Cellar/lzo/2.10: 31 files, 546.7KB
  343. ==> Installing qemu dependency: ncurses
  344. ==> Pouring ncurses-6.2.catalina.bottle.tar.gz
  345. ==> Caveats
  346. ncurses is keg-only, which means it was not symlinked into /usr/local,
  347. because macOS already provides this software and installing another version in
  348. parallel can cause all kinds of trouble.
  349.  
  350. If you need to have ncurses first in your PATH run:
  351. echo 'export PATH="/usr/local/opt/ncurses/bin:$PATH"' >> ~/.zshrc
  352.  
  353. For compilers to find ncurses you may need to set:
  354. export LDFLAGS="-L/usr/local/opt/ncurses/lib"
  355. export CPPFLAGS="-I/usr/local/opt/ncurses/include"
  356.  
  357. ==> Summary
  358. 🍺 /usr/local/Cellar/ncurses/6.2: 3,913 files, 8.6MB
  359. ==> Installing qemu dependency: pixman
  360. ==> Pouring pixman-0.40.0.catalina.bottle.tar.gz
  361. 🍺 /usr/local/Cellar/pixman/0.40.0: 14 files, 1.3MB
  362. ==> Installing qemu dependency: snappy
  363. ==> Pouring snappy-1.1.8.catalina.bottle.tar.gz
  364. 🍺 /usr/local/Cellar/snappy/1.1.8: 18 files, 122.6KB
  365. ==> Installing qemu dependency: vde
  366. ==> Pouring vde-2.3.2.catalina.bottle.tar.gz
  367. 🍺 /usr/local/Cellar/vde/2.3.2: 73 files, 832KB
  368. ==> Installing qemu
  369. ==> Pouring qemu-5.0.0_2.catalina.bottle.tar.gz
  370. 🍺 /usr/local/Cellar/qemu/5.0.0_2: 160 files, 479.5MB
  371. ==> Caveats
  372. ==> libffi
  373. libffi is keg-only, which means it was not symlinked into /usr/local,
  374. because macOS already provides this software and installing another version in
  375. parallel can cause all kinds of trouble.
  376.  
  377. For compilers to find libffi you may need to set:
  378. export LDFLAGS="-L/usr/local/opt/libffi/lib"
  379. export CPPFLAGS="-I/usr/local/opt/libffi/include"
  380.  
  381. ==> readline
  382. readline is keg-only, which means it was not symlinked into /usr/local,
  383. because macOS provides BSD libedit.
  384.  
  385. For compilers to find readline you may need to set:
  386. export LDFLAGS="-L/usr/local/opt/readline/lib"
  387. export CPPFLAGS="-I/usr/local/opt/readline/include"
  388.  
  389. ==> sqlite
  390. sqlite is keg-only, which means it was not symlinked into /usr/local,
  391. because macOS already provides this software and installing another version in
  392. parallel can cause all kinds of trouble.
  393.  
  394. If you need to have sqlite first in your PATH run:
  395. echo 'export PATH="/usr/local/opt/sqlite/bin:$PATH"' >> ~/.zshrc
  396.  
  397. For compilers to find sqlite you may need to set:
  398. export LDFLAGS="-L/usr/local/opt/sqlite/lib"
  399. export CPPFLAGS="-I/usr/local/opt/sqlite/include"
  400.  
  401. Python has been installed as
  402. /usr/local/bin/python3
  403.  
  404. Unversioned symlinks `python`, `python-config`, `pip` etc. pointing to
  405. `python3`, `python3-config`, `pip3` etc., respectively, have been installed into
  406. /usr/local/opt/[email protected]/libexec/bin
  407.  
  408. You can install Python packages with
  409. pip3 install <package>
  410. They will install into the site-package directory
  411. /usr/local/lib/python3.8/site-packages
  412.  
  413. See: https://docs.brew.sh/Homebrew-and-Python
  414. ==> glib
  415. Bash completion has been installed to:
  416. /usr/local/etc/bash_completion.d
  417. ==> unbound
  418. To have launchd start unbound now and restart at startup:
  419. sudo brew services start unbound
  420. ==> ncurses
  421. ncurses is keg-only, which means it was not symlinked into /usr/local,
  422. because macOS already provides this software and installing another version in
  423. parallel can cause all kinds of trouble.
  424.  
  425. If you need to have ncurses first in your PATH run:
  426. echo 'export PATH="/usr/local/opt/ncurses/bin:$PATH"' >> ~/.zshrc
  427.  
  428. For compilers to find ncurses you may need to set:
  429. export LDFLAGS="-L/usr/local/opt/ncurses/lib"
  430. export CPPFLAGS="-I/usr/local/opt/ncurses/include"
  431.  
  432. djo@djos-MacBook-Pro ~ % echo 'export PATH="/usr/local/opt/ncurses/bin:$PATH"' >> ~/.zshrc
  433. djo@djos-MacBook-Pro ~ % export LDFLAGS="-L/usr/local/opt/ncurses/lib"
  434. djo@djos-MacBook-Pro ~ % export CPPFLAGS="-I/usr/local/opt/ncurses/include"
  435. djo@djos-MacBook-Pro ~ % qemu-system-x86_64 \
  436. -nic user,model=virtio-net-pci \
  437. -enable-kvm -m 1024 \
  438. -device virtio-blk,drive=myhd \
  439. -drive if=none,file=/tmp/qemu-image,id=myhd
  440. qemu-system-x86_64: -drive if=none,file=/tmp/qemu-image,id=myhd: Could not open '/tmp/qemu-image': No such file or directory
  441. djo@djos-MacBook-Pro ~ % qemu-img create -f qcow2 guix-system.img 50G
  442. Formatting 'guix-system.img', fmt=qcow2 size=53687091200 cluster_size=65536 lazy_refcounts=off refcount_bits=16
  443. djo@djos-MacBook-Pro ~ % qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \
  444. -nic user,model=virtio-net-pci -boot menu=on,order=d \
  445. -drive file=guix-system.img \
  446. -drive media=cdrom,file=guix-system-install-1.1.0.system.iso
  447. qemu-system-x86_64: -drive media=cdrom,file=guix-system-install-1.1.0.system.iso: Could not open 'guix-system-install-1.1.0.system.iso': No such file or directory
  448. djo@djos-MacBook-Pro ~ % wget https://ftp.gnu.org/gnu/guix/guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  449. zsh: command not found: wget
  450. djo@djos-MacBook-Pro ~ % brew install wget
  451. Updating Homebrew...
  452. ==> Auto-updated Homebrew!
  453. Updated 1 tap (homebrew/core).
  454. ==> Updated Formulae
  455. Updated 9 formulae.
  456.  
  457. ==> Downloading https://homebrew.bintray.com/bottles/wget-1.20.3_2.cat
  458. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/ef65c759c50
  459. # ##################################################### ######################################################################## 100.0%
  460. ==> Pouring wget-1.20.3_2.catalina.bottle.tar.gz
  461. 🍺 /usr/local/Cellar/wget/1.20.3_2: 50 files, 4.0MB
  462. djo@djos-MacBook-Pro ~ % wget https://ftp.gnu.org/gnu/guix/guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  463. --2020-07-29 13:28:26-- https://ftp.gnu.org/gnu/guix/guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  464. Resolving ftp.gnu.org (ftp.gnu.org)... 2001:470:142:3::b, 209.51.188.20
  465. Connecting to ftp.gnu.org (ftp.gnu.org)|2001:470:142:3::b|:443... connected.
  466. HTTP request sent, awaiting response... 200 OK
  467. Length: 833 [application/pgp-signature]
  468. Saving to: ‘guix-system-install-1.1.0.x86_64-linux.iso.xz.sig’
  469.  
  470. guix-system-insta 100%[===========>] 833 --.-KB/s in 0s
  471.  
  472. 2020-07-29 13:28:26 (13.9 MB/s) - ‘guix-system-install-1.1.0.x86_64-linux.iso.xz.sig’ saved [833/833]
  473.  
  474. djo@djos-MacBook-Pro ~ % xz -d guix-system-install-1.1.0.x86_64-linux.is
  475. xz: guix-system-install-1.1.0.x86_64-linux.is: No such file or directory
  476. djo@djos-MacBook-Pro ~ % ls
  477. Desktop
  478. Documents
  479. Downloads
  480. Library
  481. Movies
  482. Music
  483. Pictures
  484. Public
  485. guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  486. guix-system.img
  487. djo@djos-MacBook-Pro ~ % cd Downloads
  488. djo@djos-MacBook-Pro Downloads % ls
  489. Apache CouchDB 2.app
  490. Apache CouchDB.app
  491. Apache-CouchDB.zip
  492. guix-system-install-1.1.0.x86_64-linux.iso.xz
  493. guix-system-vm-image-1.1.0.x86_64-linux
  494. guix-system-vm-image-1.1.0.x86_64-linux.xz
  495. mongodb-compass-1.21.2-darwin-x64.dmg
  496. mongodb-database-tools-macos-x86_64-100.1.0
  497. mongosh
  498. racket-7.7-x86_64-macosx.dmg
  499. djo@djos-MacBook-Pro Downloads % xz -d guix-system-install-1.1.0.x86_64-linux.is
  500. xz: guix-system-install-1.1.0.x86_64-linux.is: No such file or directory
  501. djo@djos-MacBook-Pro Downloads % emu-img create -f qcow2 guix-system.img 50G
  502. zsh: command not found: emu-img
  503. djo@djos-MacBook-Pro Downloads % cd
  504. djo@djos-MacBook-Pro ~ % ls
  505. Desktop
  506. Documents
  507. Downloads
  508. Library
  509. Movies
  510. Music
  511. Pictures
  512. Public
  513. guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  514. guix-system.img
  515. djo@djos-MacBook-Pro ~ % cd
  516. djo@djos-MacBook-Pro ~ % ls
  517. Desktop
  518. Documents
  519. Downloads
  520. Library
  521. Movies
  522. Music
  523. Pictures
  524. Public
  525. guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  526. guix-system.img
  527. djo@djos-MacBook-Pro ~ % emu-img create -f qcow2 guix-system.img 50G
  528. zsh: command not found: emu-img
  529. djo@djos-MacBook-Pro ~ % qemu-img create -f qcow2 guix-system.img 50G
  530. Formatting 'guix-system.img', fmt=qcow2 size=53687091200 cluster_size=65536 lazy_refcounts=off refcount_bits=16
  531. djo@djos-MacBook-Pro ~ % ls
  532. Desktop
  533. Documents
  534. Downloads
  535. Library
  536. Movies
  537. Music
  538. Pictures
  539. Public
  540. guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  541. guix-system.img
  542. djo@djos-MacBook-Pro ~ % cd Downloads
  543. djo@djos-MacBook-Pro Downloads % ls
  544. Apache CouchDB 2.app
  545. Apache CouchDB.app
  546. Apache-CouchDB.zip
  547. guix-system-install-1.1.0.x86_64-linux.iso.xz
  548. guix-system-vm-image-1.1.0.x86_64-linux
  549. guix-system-vm-image-1.1.0.x86_64-linux.xz
  550. mongodb-compass-1.21.2-darwin-x64.dmg
  551. mongodb-database-tools-macos-x86_64-100.1.0
  552. mongosh
  553. racket-7.7-x86_64-macosx.dmg
  554. djo@djos-MacBook-Pro Downloads % mv guix-system-vm-image-1.1.0.x86_64-linux /
  555. mv: rename guix-system-vm-image-1.1.0.x86_64-linux to /guix-system-vm-image-1.1.0.x86_64-linux: Read-only file system
  556. djo@djos-MacBook-Pro Downloads % ls
  557. Apache CouchDB 2.app
  558. Apache CouchDB.app
  559. Apache-CouchDB.zip
  560. guix-system-install-1.1.0.x86_64-linux.iso.xz
  561. guix-system-vm-image-1.1.0.x86_64-linux
  562. guix-system-vm-image-1.1.0.x86_64-linux.xz
  563. mongodb-compass-1.21.2-darwin-x64.dmg
  564. mongodb-database-tools-macos-x86_64-100.1.0
  565. mongosh
  566. racket-7.7-x86_64-macosx.dmg
  567. djo@djos-MacBook-Pro Downloads % cd /
  568. djo@djos-MacBook-Pro / % ls
  569. Applications Volumes etc sbin
  570. Library bin home tmp
  571. System cores opt usr
  572. Users dev private var
  573. djo@djos-MacBook-Pro / % cd /
  574. djo@djos-MacBook-Pro / % ls
  575. Applications Volumes etc sbin
  576. Library bin home tmp
  577. System cores opt usr
  578. Users dev private var
  579. djo@djos-MacBook-Pro / % cd
  580. djo@djos-MacBook-Pro ~ % ls
  581. Desktop
  582. Documents
  583. Downloads
  584. Library
  585. Movies
  586. Music
  587. Pictures
  588. Public
  589. guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  590. guix-system.img
  591. djo@djos-MacBook-Pro ~ % ls
  592. Desktop
  593. Documents
  594. Downloads
  595. Library
  596. Movies
  597. Music
  598. Pictures
  599. Public
  600. guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  601. guix-system.img
  602. djo@djos-MacBook-Pro ~ % pwd
  603. /Users/djo
  604. djo@djos-MacBook-Pro ~ % ls
  605. Desktop
  606. Documents
  607. Downloads
  608. Library
  609. Movies
  610. Music
  611. Pictures
  612. Public
  613. guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  614. guix-system.img
  615. djo@djos-MacBook-Pro ~ % cd Downloads
  616. djo@djos-MacBook-Pro Downloads % ls
  617. Apache CouchDB 2.app
  618. Apache CouchDB.app
  619. Apache-CouchDB.zip
  620. guix-system-install-1.1.0.x86_64-linux.iso.xz
  621. guix-system-vm-image-1.1.0.x86_64-linux
  622. guix-system-vm-image-1.1.0.x86_64-linux.xz
  623. mongodb-compass-1.21.2-darwin-x64.dmg
  624. mongodb-database-tools-macos-x86_64-100.1.0
  625. mongosh
  626. racket-7.7-x86_64-macosx.dmg
  627. djo@djos-MacBook-Pro Downloads % mv guix-system-vm-image-1.1.0.x86_64-linux /Users/djo
  628. djo@djos-MacBook-Pro Downloads % cd
  629. djo@djos-MacBook-Pro ~ % ls
  630. Desktop
  631. Documents
  632. Downloads
  633. Library
  634. Movies
  635. Music
  636. Pictures
  637. Public
  638. guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  639. guix-system-vm-image-1.1.0.x86_64-linux
  640. guix-system.img
  641. djo@djos-MacBook-Pro ~ % -m 1024 -smp 1 -enable-kvm \
  642. -nic user,model=virtio-net-pci -boot menu=on,order=d \
  643. -drive file=guix-system.img \
  644. -drive media=cdrom,file=guix-system-install-1.1.0.system.iso
  645. zsh: command not found: -m
  646. djo@djos-MacBook-Pro ~ % qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \
  647. -nic user,model=virtio-net-pci -boot menu=on,order=d \
  648. -drive file=guix-system.img \
  649. -drive media=cdrom,file=guix-system-install-1.1.0.system.iso
  650. qemu-system-x86_64: -drive media=cdrom,file=guix-system-install-1.1.0.system.iso: Could not open 'guix-system-install-1.1.0.system.iso': No such file or directory
  651. djo@djos-MacBook-Pro ~ % cd guix-system-vm-image-1.1.0.x86_64-linux
  652. cd: not a directory: guix-system-vm-image-1.1.0.x86_64-linux
  653. djo@djos-MacBook-Pro ~ % ls
  654. Desktop
  655. Documents
  656. Downloads
  657. Library
  658. Movies
  659. Music
  660. Pictures
  661. Public
  662. guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  663. guix-system-vm-image-1.1.0.x86_64-linux
  664. guix-system.img
  665. djo@djos-MacBook-Pro ~ % cd guix-system-vm-image-1.1.0.x86_64-linux
  666. cd: not a directory: guix-system-vm-image-1.1.0.x86_64-linux
  667. djo@djos-MacBook-Pro ~ % qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \
  668. -nic user,model=virtio-net-pci -boot menu=on,order=d \
  669. -drive file=guix-system.img \
  670. >
  671. qemu-system-x86_64: invalid accelerator kvm
  672. djo@djos-MacBook-Pro ~ % qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \
  673. -nic user,model=virtio-net-pci -boot menu=on,order=d \
  674. -drive file=guix-system.img \
  675.  
  676. qemu-system-x86_64: invalid accelerator kvm
  677. djo@djos-MacBook-Pro ~ % ls
  678. Desktop
  679. Documents
  680. Downloads
  681. Library
  682. Movies
  683. Music
  684. Pictures
  685. Public
  686. guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  687. guix-system-vm-image-1.1.0.x86_64-linux
  688. guix-system.img
  689. djo@djos-MacBook-Pro ~ % loadkeys dvorak
  690.  
  691. zsh: command not found: loadkeys
  692. djo@djos-MacBook-Pro ~ % qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \
  693. -nic user,model=virtio-net-pci -boot menu=on,order=d \
  694. -drive file=guix-system.img \
  695.  
  696. qemu-system-x86_64: invalid accelerator kvm
  697. djo@djos-MacBook-Pro ~ % qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \
  698. -nic user,model=virtio-net-pci -boot menu=on,order=d \
  699. -drive file=guix-system.img \
  700. -drive media=cdrom,file=guix-system-install-1.1.0.system.iso
  701. qemu-system-x86_64: -drive media=cdrom,file=guix-system-install-1.1.0.system.iso: Could not open 'guix-system-install-1.1.0.system.iso': No such file or directory
  702. djo@djos-MacBook-Pro ~ % qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \
  703. -nic user,model=virtio-net-pci -boot menu=on,order=d \
  704. -drive file=guix-system.img \
  705. -drive media=cdrom,file=guix-system-install-1.1.0.system.iso
  706. qemu-system-x86_64: -drive media=cdrom,file=guix-system-install-1.1.0.system.iso: Could not open 'guix-system-install-1.1.0.system.iso': No such file or directory
  707. djo@djos-MacBook-Pro ~ % qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \
  708. > -nic user,model=virtio-net-pci -boot menu=on,order=d \
  709. > -drive file=guix-system.img \
  710. > loadkeys dvorak
  711. qemu-system-x86_64: loadkeys: drive with bus=0, unit=0 (index=0) exists
  712. djo@djos-MacBook-Pro ~ % ifconfig -a
  713. lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384
  714. options=1203<RXCSUM,TXCSUM,TXSTATUS,SW_TIMESTAMP>
  715. inet 127.0.0.1 netmask 0xff000000
  716. inet6 ::1 prefixlen 128
  717. inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
  718. nd6 options=201<PERFORMNUD,DAD>
  719. gif0: flags=8010<POINTOPOINT,MULTICAST> mtu 1280
  720. stf0: flags=0<> mtu 1280
  721. XHC0: flags=0<> mtu 0
  722. XHC20: flags=0<> mtu 0
  723. en0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
  724. options=400<CHANNEL_IO>
  725. ether 8c:85:90:19:f2:a9
  726. inet6 fe80::8c0:a81b:c7e7:d117%en0 prefixlen 64 secured scopeid 0x6
  727. inet 10.0.1.14 netmask 0xffffff00 broadcast 10.0.1.255
  728. inet6 2601:646:8100:1441:68:dda7:a9c0:ff88 prefixlen 64 autoconf secured
  729. inet6 2601:646:8100:1441:a498:3c9f:75fd:ea59 prefixlen 64 autoconf temporary
  730. nd6 options=201<PERFORMNUD,DAD>
  731. media: autoselect
  732. status: active
  733. en1: flags=8963<UP,BROADCAST,SMART,RUNNING,PROMISC,SIMPLEX,MULTICAST> mtu 1500
  734. options=460<TSO4,TSO6,CHANNEL_IO>
  735. ether 82:d4:26:c2:2c:01
  736. media: autoselect <full-duplex>
  737. status: inactive
  738. en2: flags=8963<UP,BROADCAST,SMART,RUNNING,PROMISC,SIMPLEX,MULTICAST> mtu 1500
  739. options=460<TSO4,TSO6,CHANNEL_IO>
  740. ether 82:d4:26:c2:2c:00
  741. media: autoselect <full-duplex>
  742. status: inactive
  743. bridge0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
  744. options=63<RXCSUM,TXCSUM,TSO4,TSO6>
  745. ether 82:d4:26:c2:2c:01
  746. Configuration:
  747. id 0:0:0:0:0:0 priority 0 hellotime 0 fwddelay 0
  748. maxage 0 holdcnt 0 proto stp maxaddr 100 timeout 1200
  749. root id 0:0:0:0:0:0 priority 0 ifcost 0 port 0
  750. ipfilter disabled flags 0x0
  751. member: en1 flags=3<LEARNING,DISCOVER>
  752. ifmaxaddr 0 port 7 priority 0 path cost 0
  753. member: en2 flags=3<LEARNING,DISCOVER>
  754. ifmaxaddr 0 port 8 priority 0 path cost 0
  755. nd6 options=201<PERFORMNUD,DAD>
  756. media: <unknown type>
  757. status: inactive
  758. p2p0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 2304
  759. options=400<CHANNEL_IO>
  760. ether 0e:85:90:19:f2:a9
  761. media: autoselect
  762. status: inactive
  763. awdl0: flags=8943<UP,BROADCAST,RUNNING,PROMISC,SIMPLEX,MULTICAST> mtu 1484
  764. options=400<CHANNEL_IO>
  765. ether 52:f2:88:0e:9c:37
  766. inet6 fe80::50f2:88ff:fe0e:9c37%awdl0 prefixlen 64 scopeid 0xb
  767. nd6 options=201<PERFORMNUD,DAD>
  768. media: autoselect
  769. status: active
  770. llw0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
  771. options=400<CHANNEL_IO>
  772. ether 52:f2:88:0e:9c:37
  773. inet6 fe80::50f2:88ff:fe0e:9c37%llw0 prefixlen 64 scopeid 0xc
  774. nd6 options=201<PERFORMNUD,DAD>
  775. media: autoselect
  776. status: active
  777. utun0: flags=8051<UP,POINTOPOINT,RUNNING,MULTICAST> mtu 1380
  778. inet6 fe80::1337:a37:e360:bb79%utun0 prefixlen 64 scopeid 0xd
  779. nd6 options=201<PERFORMNUD,DAD>
  780. utun1: flags=8051<UP,POINTOPOINT,RUNNING,MULTICAST> mtu 2000
  781. inet6 fe80::b976:67c8:b19a:3ba4%utun1 prefixlen 64 scopeid 0xe
  782. nd6 options=201<PERFORMNUD,DAD>
  783. djo@djos-MacBook-Pro ~ % qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \
  784. > nic user,model=virtio-net-pci -boot menu=on,order=d \
  785. > -drive file=guix-system.img \
  786. > nano wpa_supplicant.conf
  787. qemu-system-x86_64: nic: Could not open 'nic': No such file or directory
  788. djo@djos-MacBook-Pro ~ % qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \
  789. > > -drive file=guix-system.img \
  790. > nano wpa_supplicant.conf
  791. qemu-system-x86_64: file=guix-system.img: Could not open 'file=guix-system.img': No such file or directory
  792. djo@djos-MacBook-Pro ~ % ls
  793. -drive
  794. Desktop
  795. Documents
  796. Downloads
  797. Library
  798. Movies
  799. Music
  800. Pictures
  801. Public
  802. guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  803. guix-system-vm-image-1.1.0.x86_64-linux
  804. guix-system.img
  805. djo@djos-MacBook-Pro ~ % herd start cow-store /mnt
  806. zsh: command not found: herd
  807. djo@djos-MacBook-Pro ~ % guix package options
  808. djo@djos-MacBook-Pro ~ % ssh [email protected]
  809. The authenticity of host '45.56.85.14 (45.56.85.14)' can't be established.
  810. ECDSA key fingerprint is SHA256:pz8Dmngj+gtdfqXTa+gkuqR31kgidcqBQxaB14eFbT8.
  811. Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
  812. Warning: Permanently added '45.56.85.14' (ECDSA) to the list of known hosts.
  813. [email protected]'s password:
  814. Linux localhost 5.6.14-x86_64-linode135 #1 SMP PREEMPT Fri May 22 14:57:20 UTC 2020 x86_64
  815.  
  816. The programs included with the Debian GNU/Linux system are free software;
  817. the exact distribution terms for each program are described in the
  818. individual files in /usr/share/doc/*/copyright.
  819.  
  820. Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
  821. permitted by applicable law.
  822. Last login: Thu Jul 30 02:04:31 2020 from 73.231.232.44
  823. root@localhost:~# ls
  824. guix-config.scm guix-install.sh guix-install.sh.1 root_rsa.pub 'viewgpg.php?user_id=15145' 'viewgpg.php?user_id=15145.1'
  825. root@localhost:~# vim guix-config.scm
  826.  
  827. (installer #~(const #t))))))
  828. (file-systems (cons (file-system
  829. (device "/dev/sda")
  830. (mount-point "/")
  831. (type "ext4"))
  832. %base-file-systems))
  833.  
  834. (initrd-modules (cons "virtio_scsi" ; Needed to find the disk
  835. %base-initrd-modules))
  836.  
  837. (users (cons (user-account
  838. (name "root")
  839. (group "users")
  840. ;; Adding the account to the "wheel" group
  841. ;; makes it a sudoer.
  842. (supplementary-groups '("wheel"))
  843. (home-directory "/home/root"))
  844. %base-user-accounts))
  845.  
  846. (packages (cons* nss-certs ;for HTTPS access
  847. openssh-sans-x
  848. %base-packages))
  849.  
  850. (services (cons*
  851. (service dhcp-client-service-type)
  852. (service openssh-service-type
  853. (openssh-configuration
  854. (openssh openssh-sans-x)
  855. (password-authentication? #f)
  856. (authorized-keys
  857. `(("root" ,(local-file "root_rsa.pub"))
  858. ;; Is this a good idea? Well if you don't add it
  859. ;; you have to manually set your user's password
  860. ;; via the glish console...
  861. ("root" ,(local-file "root_rsa.pub"))))))
  862. %base-services)))
  863.  
  864. 57,30 Bot
  865.  
Advertisement
Add Comment
Please, Sign In to add comment