Advertisement
Guest User

Untitled

a guest
Jul 29th, 2020
112
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, python@3.8, 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: python@3.8
  270. ==> Pouring python@3.8-3.8.5.catalina.bottle.tar.gz
  271. ==> /usr/local/Cellar/python@3.8/3.8.5/bin/python3 -s setup.py --no-user-cfg ins
  272. ==> /usr/local/Cellar/python@3.8/3.8.5/bin/python3 -s setup.py --no-user-cfg ins
  273. ==> /usr/local/Cellar/python@3.8/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/python@3.8/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/python@3.8/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@3.8
  402. Python has been installed as
  403. /usr/local/bin/python3
  404.  
  405. Unversioned symlinks `python`, `python-config`, `pip` etc. pointing to
  406. `python3`, `python3-config`, `pip3` etc., respectively, have been installed into
  407. /usr/local/opt/python@3.8/libexec/bin
  408.  
  409. You can install Python packages with
  410. pip3 install <package>
  411. They will install into the site-package directory
  412. /usr/local/lib/python3.8/site-packages
  413.  
  414. See: https://docs.brew.sh/Homebrew-and-Python
  415. ==> glib
  416. Bash completion has been installed to:
  417. /usr/local/etc/bash_completion.d
  418. ==> unbound
  419. To have launchd start unbound now and restart at startup:
  420. sudo brew services start unbound
  421. ==> ncurses
  422. ncurses is keg-only, which means it was not symlinked into /usr/local,
  423. because macOS already provides this software and installing another version in
  424. parallel can cause all kinds of trouble.
  425.  
  426. If you need to have ncurses first in your PATH run:
  427. echo 'export PATH="/usr/local/opt/ncurses/bin:$PATH"' >> ~/.zshrc
  428.  
  429. For compilers to find ncurses you may need to set:
  430. export LDFLAGS="-L/usr/local/opt/ncurses/lib"
  431. export CPPFLAGS="-I/usr/local/opt/ncurses/include"
  432.  
  433. djo@djos-MacBook-Pro ~ % echo 'export PATH="/usr/local/opt/ncurses/bin:$PATH"' >> ~/.zshrc
  434. djo@djos-MacBook-Pro ~ % export LDFLAGS="-L/usr/local/opt/ncurses/lib"
  435. djo@djos-MacBook-Pro ~ % export CPPFLAGS="-I/usr/local/opt/ncurses/include"
  436. djo@djos-MacBook-Pro ~ % qemu-system-x86_64 \
  437. -nic user,model=virtio-net-pci \
  438. -enable-kvm -m 1024 \
  439. -device virtio-blk,drive=myhd \
  440. -drive if=none,file=/tmp/qemu-image,id=myhd
  441. qemu-system-x86_64: -drive if=none,file=/tmp/qemu-image,id=myhd: Could not open '/tmp/qemu-image': No such file or directory
  442. djo@djos-MacBook-Pro ~ % qemu-img create -f qcow2 guix-system.img 50G
  443. Formatting 'guix-system.img', fmt=qcow2 size=53687091200 cluster_size=65536 lazy_refcounts=off refcount_bits=16
  444. djo@djos-MacBook-Pro ~ % qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \
  445. -nic user,model=virtio-net-pci -boot menu=on,order=d \
  446. -drive file=guix-system.img \
  447. -drive media=cdrom,file=guix-system-install-1.1.0.system.iso
  448. 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
  449. djo@djos-MacBook-Pro ~ % wget https://ftp.gnu.org/gnu/guix/guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  450. zsh: command not found: wget
  451. djo@djos-MacBook-Pro ~ % brew install wget
  452. Updating Homebrew...
  453. ==> Auto-updated Homebrew!
  454. Updated 1 tap (homebrew/core).
  455. ==> Updated Formulae
  456. Updated 9 formulae.
  457.  
  458. ==> Downloading https://homebrew.bintray.com/bottles/wget-1.20.3_2.cat
  459. ==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/ef65c759c50
  460. # ##################################################### ######################################################################## 100.0%
  461. ==> Pouring wget-1.20.3_2.catalina.bottle.tar.gz
  462. 🍺 /usr/local/Cellar/wget/1.20.3_2: 50 files, 4.0MB
  463. djo@djos-MacBook-Pro ~ % wget https://ftp.gnu.org/gnu/guix/guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  464. --2020-07-29 13:28:26-- https://ftp.gnu.org/gnu/guix/guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  465. Resolving ftp.gnu.org (ftp.gnu.org)... 2001:470:142:3::b, 209.51.188.20
  466. Connecting to ftp.gnu.org (ftp.gnu.org)|2001:470:142:3::b|:443... connected.
  467. HTTP request sent, awaiting response... 200 OK
  468. Length: 833 [application/pgp-signature]
  469. Saving to: ‘guix-system-install-1.1.0.x86_64-linux.iso.xz.sig’
  470.  
  471. guix-system-insta 100%[===========>] 833 --.-KB/s in 0s
  472.  
  473. 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]
  474.  
  475. djo@djos-MacBook-Pro ~ % xz -d guix-system-install-1.1.0.x86_64-linux.is
  476. xz: guix-system-install-1.1.0.x86_64-linux.is: No such file or directory
  477. djo@djos-MacBook-Pro ~ % ls
  478. Desktop
  479. Documents
  480. Downloads
  481. Library
  482. Movies
  483. Music
  484. Pictures
  485. Public
  486. guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  487. guix-system.img
  488. djo@djos-MacBook-Pro ~ % cd Downloads
  489. djo@djos-MacBook-Pro Downloads % ls
  490. Apache CouchDB 2.app
  491. Apache CouchDB.app
  492. Apache-CouchDB.zip
  493. guix-system-install-1.1.0.x86_64-linux.iso.xz
  494. guix-system-vm-image-1.1.0.x86_64-linux
  495. guix-system-vm-image-1.1.0.x86_64-linux.xz
  496. mongodb-compass-1.21.2-darwin-x64.dmg
  497. mongodb-database-tools-macos-x86_64-100.1.0
  498. mongosh
  499. racket-7.7-x86_64-macosx.dmg
  500. djo@djos-MacBook-Pro Downloads % xz -d guix-system-install-1.1.0.x86_64-linux.is
  501. xz: guix-system-install-1.1.0.x86_64-linux.is: No such file or directory
  502. djo@djos-MacBook-Pro Downloads % emu-img create -f qcow2 guix-system.img 50G
  503. zsh: command not found: emu-img
  504. djo@djos-MacBook-Pro Downloads % cd
  505. djo@djos-MacBook-Pro ~ % ls
  506. Desktop
  507. Documents
  508. Downloads
  509. Library
  510. Movies
  511. Music
  512. Pictures
  513. Public
  514. guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  515. guix-system.img
  516. djo@djos-MacBook-Pro ~ % cd
  517. djo@djos-MacBook-Pro ~ % ls
  518. Desktop
  519. Documents
  520. Downloads
  521. Library
  522. Movies
  523. Music
  524. Pictures
  525. Public
  526. guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  527. guix-system.img
  528. djo@djos-MacBook-Pro ~ % emu-img create -f qcow2 guix-system.img 50G
  529. zsh: command not found: emu-img
  530. djo@djos-MacBook-Pro ~ % qemu-img create -f qcow2 guix-system.img 50G
  531. Formatting 'guix-system.img', fmt=qcow2 size=53687091200 cluster_size=65536 lazy_refcounts=off refcount_bits=16
  532. djo@djos-MacBook-Pro ~ % ls
  533. Desktop
  534. Documents
  535. Downloads
  536. Library
  537. Movies
  538. Music
  539. Pictures
  540. Public
  541. guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  542. guix-system.img
  543. djo@djos-MacBook-Pro ~ % cd Downloads
  544. djo@djos-MacBook-Pro Downloads % ls
  545. Apache CouchDB 2.app
  546. Apache CouchDB.app
  547. Apache-CouchDB.zip
  548. guix-system-install-1.1.0.x86_64-linux.iso.xz
  549. guix-system-vm-image-1.1.0.x86_64-linux
  550. guix-system-vm-image-1.1.0.x86_64-linux.xz
  551. mongodb-compass-1.21.2-darwin-x64.dmg
  552. mongodb-database-tools-macos-x86_64-100.1.0
  553. mongosh
  554. racket-7.7-x86_64-macosx.dmg
  555. djo@djos-MacBook-Pro Downloads % mv guix-system-vm-image-1.1.0.x86_64-linux /
  556. 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
  557. djo@djos-MacBook-Pro Downloads % ls
  558. Apache CouchDB 2.app
  559. Apache CouchDB.app
  560. Apache-CouchDB.zip
  561. guix-system-install-1.1.0.x86_64-linux.iso.xz
  562. guix-system-vm-image-1.1.0.x86_64-linux
  563. guix-system-vm-image-1.1.0.x86_64-linux.xz
  564. mongodb-compass-1.21.2-darwin-x64.dmg
  565. mongodb-database-tools-macos-x86_64-100.1.0
  566. mongosh
  567. racket-7.7-x86_64-macosx.dmg
  568. djo@djos-MacBook-Pro Downloads % cd /
  569. djo@djos-MacBook-Pro / % ls
  570. Applications Volumes etc sbin
  571. Library bin home tmp
  572. System cores opt usr
  573. Users dev private var
  574. djo@djos-MacBook-Pro / % cd /
  575. djo@djos-MacBook-Pro / % ls
  576. Applications Volumes etc sbin
  577. Library bin home tmp
  578. System cores opt usr
  579. Users dev private var
  580. djo@djos-MacBook-Pro / % cd
  581. djo@djos-MacBook-Pro ~ % ls
  582. Desktop
  583. Documents
  584. Downloads
  585. Library
  586. Movies
  587. Music
  588. Pictures
  589. Public
  590. guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  591. guix-system.img
  592. djo@djos-MacBook-Pro ~ % ls
  593. Desktop
  594. Documents
  595. Downloads
  596. Library
  597. Movies
  598. Music
  599. Pictures
  600. Public
  601. guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  602. guix-system.img
  603. djo@djos-MacBook-Pro ~ % pwd
  604. /Users/djo
  605. djo@djos-MacBook-Pro ~ % ls
  606. Desktop
  607. Documents
  608. Downloads
  609. Library
  610. Movies
  611. Music
  612. Pictures
  613. Public
  614. guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  615. guix-system.img
  616. djo@djos-MacBook-Pro ~ % cd Downloads
  617. djo@djos-MacBook-Pro Downloads % ls
  618. Apache CouchDB 2.app
  619. Apache CouchDB.app
  620. Apache-CouchDB.zip
  621. guix-system-install-1.1.0.x86_64-linux.iso.xz
  622. guix-system-vm-image-1.1.0.x86_64-linux
  623. guix-system-vm-image-1.1.0.x86_64-linux.xz
  624. mongodb-compass-1.21.2-darwin-x64.dmg
  625. mongodb-database-tools-macos-x86_64-100.1.0
  626. mongosh
  627. racket-7.7-x86_64-macosx.dmg
  628. djo@djos-MacBook-Pro Downloads % mv guix-system-vm-image-1.1.0.x86_64-linux /Users/djo
  629. djo@djos-MacBook-Pro Downloads % cd
  630. djo@djos-MacBook-Pro ~ % ls
  631. Desktop
  632. Documents
  633. Downloads
  634. Library
  635. Movies
  636. Music
  637. Pictures
  638. Public
  639. guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  640. guix-system-vm-image-1.1.0.x86_64-linux
  641. guix-system.img
  642. djo@djos-MacBook-Pro ~ % -m 1024 -smp 1 -enable-kvm \
  643. -nic user,model=virtio-net-pci -boot menu=on,order=d \
  644. -drive file=guix-system.img \
  645. -drive media=cdrom,file=guix-system-install-1.1.0.system.iso
  646. zsh: command not found: -m
  647. djo@djos-MacBook-Pro ~ % qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \
  648. -nic user,model=virtio-net-pci -boot menu=on,order=d \
  649. -drive file=guix-system.img \
  650. -drive media=cdrom,file=guix-system-install-1.1.0.system.iso
  651. 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
  652. djo@djos-MacBook-Pro ~ % cd guix-system-vm-image-1.1.0.x86_64-linux
  653. cd: not a directory: guix-system-vm-image-1.1.0.x86_64-linux
  654. djo@djos-MacBook-Pro ~ % ls
  655. Desktop
  656. Documents
  657. Downloads
  658. Library
  659. Movies
  660. Music
  661. Pictures
  662. Public
  663. guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  664. guix-system-vm-image-1.1.0.x86_64-linux
  665. guix-system.img
  666. djo@djos-MacBook-Pro ~ % cd guix-system-vm-image-1.1.0.x86_64-linux
  667. cd: not a directory: guix-system-vm-image-1.1.0.x86_64-linux
  668. djo@djos-MacBook-Pro ~ % qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \
  669. -nic user,model=virtio-net-pci -boot menu=on,order=d \
  670. -drive file=guix-system.img \
  671. >
  672. qemu-system-x86_64: invalid accelerator kvm
  673. djo@djos-MacBook-Pro ~ % qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \
  674. -nic user,model=virtio-net-pci -boot menu=on,order=d \
  675. -drive file=guix-system.img \
  676.  
  677. qemu-system-x86_64: invalid accelerator kvm
  678. djo@djos-MacBook-Pro ~ % ls
  679. Desktop
  680. Documents
  681. Downloads
  682. Library
  683. Movies
  684. Music
  685. Pictures
  686. Public
  687. guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  688. guix-system-vm-image-1.1.0.x86_64-linux
  689. guix-system.img
  690. djo@djos-MacBook-Pro ~ % loadkeys dvorak
  691.  
  692. zsh: command not found: loadkeys
  693. djo@djos-MacBook-Pro ~ % qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \
  694. -nic user,model=virtio-net-pci -boot menu=on,order=d \
  695. -drive file=guix-system.img \
  696.  
  697. qemu-system-x86_64: invalid accelerator kvm
  698. djo@djos-MacBook-Pro ~ % qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \
  699. -nic user,model=virtio-net-pci -boot menu=on,order=d \
  700. -drive file=guix-system.img \
  701. -drive media=cdrom,file=guix-system-install-1.1.0.system.iso
  702. 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
  703. djo@djos-MacBook-Pro ~ % qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \
  704. -nic user,model=virtio-net-pci -boot menu=on,order=d \
  705. -drive file=guix-system.img \
  706. -drive media=cdrom,file=guix-system-install-1.1.0.system.iso
  707. 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
  708. djo@djos-MacBook-Pro ~ % qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \
  709. > -nic user,model=virtio-net-pci -boot menu=on,order=d \
  710. > -drive file=guix-system.img \
  711. > loadkeys dvorak
  712. qemu-system-x86_64: loadkeys: drive with bus=0, unit=0 (index=0) exists
  713. djo@djos-MacBook-Pro ~ % ifconfig -a
  714. lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384
  715. options=1203<RXCSUM,TXCSUM,TXSTATUS,SW_TIMESTAMP>
  716. inet 127.0.0.1 netmask 0xff000000
  717. inet6 ::1 prefixlen 128
  718. inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
  719. nd6 options=201<PERFORMNUD,DAD>
  720. gif0: flags=8010<POINTOPOINT,MULTICAST> mtu 1280
  721. stf0: flags=0<> mtu 1280
  722. XHC0: flags=0<> mtu 0
  723. XHC20: flags=0<> mtu 0
  724. en0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
  725. options=400<CHANNEL_IO>
  726. ether 8c:85:90:19:f2:a9
  727. inet6 fe80::8c0:a81b:c7e7:d117%en0 prefixlen 64 secured scopeid 0x6
  728. inet 10.0.1.14 netmask 0xffffff00 broadcast 10.0.1.255
  729. inet6 2601:646:8100:1441:68:dda7:a9c0:ff88 prefixlen 64 autoconf secured
  730. inet6 2601:646:8100:1441:a498:3c9f:75fd:ea59 prefixlen 64 autoconf temporary
  731. nd6 options=201<PERFORMNUD,DAD>
  732. media: autoselect
  733. status: active
  734. en1: flags=8963<UP,BROADCAST,SMART,RUNNING,PROMISC,SIMPLEX,MULTICAST> mtu 1500
  735. options=460<TSO4,TSO6,CHANNEL_IO>
  736. ether 82:d4:26:c2:2c:01
  737. media: autoselect <full-duplex>
  738. status: inactive
  739. en2: flags=8963<UP,BROADCAST,SMART,RUNNING,PROMISC,SIMPLEX,MULTICAST> mtu 1500
  740. options=460<TSO4,TSO6,CHANNEL_IO>
  741. ether 82:d4:26:c2:2c:00
  742. media: autoselect <full-duplex>
  743. status: inactive
  744. bridge0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
  745. options=63<RXCSUM,TXCSUM,TSO4,TSO6>
  746. ether 82:d4:26:c2:2c:01
  747. Configuration:
  748. id 0:0:0:0:0:0 priority 0 hellotime 0 fwddelay 0
  749. maxage 0 holdcnt 0 proto stp maxaddr 100 timeout 1200
  750. root id 0:0:0:0:0:0 priority 0 ifcost 0 port 0
  751. ipfilter disabled flags 0x0
  752. member: en1 flags=3<LEARNING,DISCOVER>
  753. ifmaxaddr 0 port 7 priority 0 path cost 0
  754. member: en2 flags=3<LEARNING,DISCOVER>
  755. ifmaxaddr 0 port 8 priority 0 path cost 0
  756. nd6 options=201<PERFORMNUD,DAD>
  757. media: <unknown type>
  758. status: inactive
  759. p2p0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 2304
  760. options=400<CHANNEL_IO>
  761. ether 0e:85:90:19:f2:a9
  762. media: autoselect
  763. status: inactive
  764. awdl0: flags=8943<UP,BROADCAST,RUNNING,PROMISC,SIMPLEX,MULTICAST> mtu 1484
  765. options=400<CHANNEL_IO>
  766. ether 52:f2:88:0e:9c:37
  767. inet6 fe80::50f2:88ff:fe0e:9c37%awdl0 prefixlen 64 scopeid 0xb
  768. nd6 options=201<PERFORMNUD,DAD>
  769. media: autoselect
  770. status: active
  771. llw0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
  772. options=400<CHANNEL_IO>
  773. ether 52:f2:88:0e:9c:37
  774. inet6 fe80::50f2:88ff:fe0e:9c37%llw0 prefixlen 64 scopeid 0xc
  775. nd6 options=201<PERFORMNUD,DAD>
  776. media: autoselect
  777. status: active
  778. utun0: flags=8051<UP,POINTOPOINT,RUNNING,MULTICAST> mtu 1380
  779. inet6 fe80::1337:a37:e360:bb79%utun0 prefixlen 64 scopeid 0xd
  780. nd6 options=201<PERFORMNUD,DAD>
  781. utun1: flags=8051<UP,POINTOPOINT,RUNNING,MULTICAST> mtu 2000
  782. inet6 fe80::b976:67c8:b19a:3ba4%utun1 prefixlen 64 scopeid 0xe
  783. nd6 options=201<PERFORMNUD,DAD>
  784. djo@djos-MacBook-Pro ~ % qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \
  785. > nic user,model=virtio-net-pci -boot menu=on,order=d \
  786. > -drive file=guix-system.img \
  787. > nano wpa_supplicant.conf
  788. qemu-system-x86_64: nic: Could not open 'nic': No such file or directory
  789. djo@djos-MacBook-Pro ~ % qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \
  790. > > -drive file=guix-system.img \
  791. > nano wpa_supplicant.conf
  792. qemu-system-x86_64: file=guix-system.img: Could not open 'file=guix-system.img': No such file or directory
  793. djo@djos-MacBook-Pro ~ % ls
  794. -drive
  795. Desktop
  796. Documents
  797. Downloads
  798. Library
  799. Movies
  800. Music
  801. Pictures
  802. Public
  803. guix-system-install-1.1.0.x86_64-linux.iso.xz.sig
  804. guix-system-vm-image-1.1.0.x86_64-linux
  805. guix-system.img
  806. djo@djos-MacBook-Pro ~ % herd start cow-store /mnt
  807. zsh: command not found: herd
  808. djo@djos-MacBook-Pro ~ % guix package options
  809. djo@djos-MacBook-Pro ~ % ssh root@45.56.85.14
  810. The authenticity of host '45.56.85.14 (45.56.85.14)' can't be established.
  811. ECDSA key fingerprint is SHA256:pz8Dmngj+gtdfqXTa+gkuqR31kgidcqBQxaB14eFbT8.
  812. Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
  813. Warning: Permanently added '45.56.85.14' (ECDSA) to the list of known hosts.
  814. root@45.56.85.14's password:
  815. Linux localhost 5.6.14-x86_64-linode135 #1 SMP PREEMPT Fri May 22 14:57:20 UTC 2020 x86_64
  816.  
  817. The programs included with the Debian GNU/Linux system are free software;
  818. the exact distribution terms for each program are described in the
  819. individual files in /usr/share/doc/*/copyright.
  820.  
  821. Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
  822. permitted by applicable law.
  823. Last login: Thu Jul 30 02:04:31 2020 from 73.231.232.44
  824. root@localhost:~# ls
  825. guix-config.scm guix-install.sh guix-install.sh.1 root_rsa.pub 'viewgpg.php?user_id=15145' 'viewgpg.php?user_id=15145.1'
  826. root@localhost:~# vim guix-config.scm
  827.  
  828. (installer #~(const #t))))))
  829. (file-systems (cons (file-system
  830. (device "/dev/sda")
  831. (mount-point "/")
  832. (type "ext4"))
  833. %base-file-systems))
  834.  
  835. (initrd-modules (cons "virtio_scsi" ; Needed to find the disk
  836. %base-initrd-modules))
  837.  
  838. (users (cons (user-account
  839. (name "root")
  840. (group "users")
  841. ;; Adding the account to the "wheel" group
  842. ;; makes it a sudoer.
  843. (supplementary-groups '("wheel"))
  844. (home-directory "/home/root"))
  845. %base-user-accounts))
  846.  
  847. (packages (cons* nss-certs ;for HTTPS access
  848. openssh-sans-x
  849. %base-packages))
  850.  
  851. (services (cons*
  852. (service dhcp-client-service-type)
  853. (service openssh-service-type
  854. (openssh-configuration
  855. (openssh openssh-sans-x)
  856. (password-authentication? #f)
  857. (authorized-keys
  858. `(("root" ,(local-file "root_rsa.pub"))
  859. ;; Is this a good idea? Well if you don't add it
  860. ;; you have to manually set your user's password
  861. ;; via the glish console...
  862. ("root" ,(local-file "root_rsa.pub"))))))
  863. %base-services)))
  864.  
  865. 57,30 Bot
  866.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement