Форум программистов, компьютерный форум, киберфорум
Debian, Kali Linux, Raspbian, Astra Linux
Войти
Регистрация
Восстановить пароль
Блоги Сообщество Поиск Заказать работу  
 
Рейтинг 4.73/15: Рейтинг темы: голосов - 15, средняя оценка - 4.73
22 / 56 / 9
Регистрация: 29.09.2011
Сообщений: 618

/usr/bin/env: ‘python’: No such file or directory

20.08.2020, 13:31. Показов 3126. Ответов 1
Метки нет (Все метки)

Студворк — интернет-сервис помощи студентам
Приветствую.

Я пытаюсь установить Docker используя Make и через Docker приложение. Для этого я скачал файлы Dockerfile Makefile и supervisord.conf отсюда:
https://github.com/zaoqi/minetest-novnc-docker

Все файлы подверг fromdos и запустил make run.

Все действия производилисть на сервере по SSH через Putty.

python установлен:

Bash
1
2
whereis python
python: /usr/bin/python /usr/bin/python2.7 /usr/bin/python3.6 /usr/bin/python3.6m /usr/lib/python3.7 /usr/lib/python2.7 /usr/lib/python3.6 /usr/lib/python3.8 /etc/python /etc/python2.7 /etc/python3.6 /usr/local/lib/python2.7 /usr/local/lib/python3.6 /usr/share/python /usr/share/man/man1/python.1.gz
make run выдаёт следующее:

Кликните здесь для просмотра всего текста

Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
docker build -t minetest-novnc-docker .
Sending build context to Docker daemon  17.92kB
Step 1/18 : FROM ubuntu:rolling
 ---> 1e4467b07108
Step 2/18 : ENV HOME /root
 ---> Using cache
 ---> 3407a6efb0a8
Step 3/18 : ENV DEBIAN_FRONTEND noninteractive
 ---> Using cache
 ---> f3a0533ea69a
Step 4/18 : ENV LC_ALL C.UTF-8
 ---> Using cache
 ---> d7fd056a3c51
Step 5/18 : ENV LANG en_US.UTF-8
 ---> Using cache
 ---> 934b4b9811c7
Step 6/18 : ENV LANGUAGE en_US.UTF-8
 ---> Using cache
 ---> 160a76a0f65b
Step 7/18 : RUN dpkg --add-architecture i386
 ---> Using cache
 ---> 57809f8a94e2
Step 8/18 : RUN apt-get update && apt-get -y install xvfb x11vnc xdotool wget tar supervisor net-tools fluxbox
 ---> Using cache
 ---> 357d77a7dfcd
Step 9/18 : RUN apt-get -y install minetest
 ---> Using cache
 ---> 41ac99526ebb
Step 10/18 : ADD supervisord.conf /etc/supervisor/conf.d/supervisord.conf
 ---> Using cache
 ---> 3e93cf58d6cb
Step 11/18 : ENV WINEPREFIX /root/prefix32
 ---> Using cache
 ---> 6ca42cb2589e
Step 12/18 : ENV WINEARCH win32
 ---> Using cache
 ---> fd901c7b053b
Step 13/18 : ENV DISPLAY :0
 ---> Using cache
 ---> 1b5a5e6bea09
Step 14/18 : WORKDIR /root/
 ---> Using cache
 ---> d803b9b94520
Step 15/18 : RUN wget -O - https://github.com/novnc/noVNC/archive/v1.1.0.tar.gz | tar -xzv -C /root/ && mv /root/noVNC-1.1.0 /root/novnc && ln -s /root/novnc/vnc_lite.html /root/novnc/index.html
 ---> Using cache
 ---> 82c91196b4bb
Step 16/18 : RUN wget -O - https://github.com/novnc/websockify/archive/v0.8.0.tar.gz | tar -xzv -C /root/ && mv /root/websockify-0.8.0 /root/novnc/utils/websockify
 ---> Using cache
 ---> 265223c2766c
Step 17/18 : EXPOSE 8080
 ---> Using cache
 ---> a65d75d83457
Step 18/18 : CMD ["/usr/bin/supervisord"]
 ---> Using cache
 ---> a9fe960c3661
Successfully built a9fe960c3661
Successfully tagged minetest-novnc-docker:latest
docker run --rm -p 8080:8080 minetest-novnc-docker
2020-08-19 15:23:31,754 CRIT Supervisor is running as root.  Privileges were not dropped because no user is specified in the config file.  If you intend to run as root, you can set user=root in the config file to avoid this message.
2020-08-19 15:23:31,754 INFO Included extra file "/etc/supervisor/conf.d/supervisord.conf" during parsing
2020-08-19 15:23:31,758 INFO RPC interface 'supervisor' initialized
2020-08-19 15:23:31,758 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2020-08-19 15:23:31,759 INFO supervisord started with pid 1
2020-08-19 15:23:32,761 INFO spawned: 'X11' with pid 7
2020-08-19 15:23:32,764 INFO spawned: 'app' with pid 8
2020-08-19 15:23:32,766 INFO spawned: 'fluxbox' with pid 9
2020-08-19 15:23:32,770 INFO spawned: 'novnc' with pid 10
2020-08-19 15:23:32,782 INFO spawned: 'x11vnc' with pid 11
Warning: Failed to open file(/usr/share/fluxbox/nls/C.UTF-8/fluxbox.cat)
for translation, using default messages.
###############################################################
#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#
#@                                                           @#
#@  **  WARNING  **  WARNING  **  WARNING  **  WARNING  **   @#
#@                                                           @#
#@        YOU ARE RUNNING X11VNC WITHOUT A PASSWORD!!        @#
#@                                                           @#
#@  This means anyone with network access to this computer   @#
#@  may be able to view and control your desktop.            @#
#@                                                           @#
#@ >>> If you did not mean to do this Press CTRL-C now!! <<< @#
#@                                                           @#
#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#
Warning: could not find self.pem
Using local websockify at /root/novnc/utils/websockify/run
Starting webserver and WebSockets proxy on port 8080
/usr/bin/env: ‘python’: No such file or directory
ALSA lib confmisc.c:767:(parse_card) cannot find card '0'
ALSA lib conf.c:4693:(_snd_config_evaluate) function snd_func_card_driver returned error: No such file or directory
ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings
ALSA lib conf.c:4693:(_snd_config_evaluate) function snd_func_concat returned error: No such file or directory
ALSA lib confmisc.c:1246:(snd_func_refer) error evaluating name
ALSA lib conf.c:4693:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:5181:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2642:(snd_pcm_open_noupdate) Unknown PCM default
AL lib: (EE) ALCplaybackAlsa_open: Could not open playback device 'default': No such file or directory
terminate called after throwing an instance of 'std::runtime_error'
  what():  Audio: Global Initialization: Device Open
Failed to read: session.ignoreBorder
Setting default value
Failed to read: session.forcePseudoTransparency
Setting default value
Failed to read: session.colorsPerChannel
Setting default value
Failed to read: session.doubleClickInterval
Setting default value
Failed to read: session.tabPadding
Setting default value
Failed to read: session.styleOverlay
Setting default value
Failed to read: session.slitlistFile
Setting default value
Failed to read: session.appsFile
Setting default value
Failed to read: session.tabsAttachArea
Setting default value
Failed to read: session.cacheLife
Setting default value
Failed to read: session.cacheMax
Setting default value
Failed to read: session.autoRaiseDelay
Setting default value
Failed to read: session.ignoreBorder
Setting default value
Failed to read: session.forcePseudoTransparency
Setting default value
Failed to read: session.colorsPerChannel
Setting default value
Failed to read: session.doubleClickInterval
Setting default value
Failed to read: session.tabPadding
Setting default value
Failed to read: session.styleOverlay
Setting default value
Failed to read: session.slitlistFile
Setting default value
Failed to read: session.appsFile
Setting default value
Failed to read: session.tabsAttachArea
Setting default value
Failed to read: session.cacheLife
Setting default value
Failed to read: session.cacheMax
Setting default value
Failed to read: session.autoRaiseDelay
Setting default value
2020-08-19 15:23:33,169 INFO exited: app (terminated by SIGABRT (core dumped); not expected)
#@                                                           @#
#@  You can create an x11vnc password file by running:       @#
#@                                                           @#
#@       x11vnc -storepasswd password /path/to/passfile      @#
#@  or   x11vnc -storepasswd /path/to/passfile               @#
#@  or   x11vnc -storepasswd                                 @#
#@                                                           @#
#@  (the last one will use ~/.vnc/passwd)                    @#
#@                                                           @#
#@  and then starting x11vnc via:                            @#
#@                                                           @#
#@      x11vnc -rfbauth /path/to/passfile                    @#
#@                                                           @#
#@  an existing ~/.vnc/passwd file from another VNC          @#
#@  application will work fine too.                          @#
#@                                                           @#
#@  You can also use the -passwdfile or -passwd options.     @#
#@  (note -passwd is unsafe if local users are not trusted)  @#
#@                                                           @#
#@  Make sure any -rfbauth and -passwdfile password files    @#
#@  cannot be read by untrusted users.                       @#
#@                                                           @#
#@  Use x11vnc -usepw to automatically use your              @#
#@  ~/.vnc/passwd or ~/.vnc/passwdfile password files.       @#
#@  (and prompt you to create ~/.vnc/passwd if neither       @#
#@  file exists.)  Under -usepw, x11vnc will exit if it      @#
#@  cannot find a password to use.                           @#
#@                                                           @#
#@                                                           @#
#@  Even with a password, the subsequent VNC traffic is      @#
#@  sent in the clear.  Consider tunnelling via ssh(1):      @#
#@                                                           @#
#@    http://www.karlrunge.com/x11vnc/#tunnelling            @#
#@                                                           @#
#@  Or using the x11vnc SSL options: -ssl and -stunnel       @#
#@                                                           @#
#@  Please Read the documentation for more info about        @#
#@  passwords, security, and encryption.                     @#
#@                                                           @#
#@    http://www.karlrunge.com/x11vnc/faq.html#faq-passwd    @#
#@                                                           @#
#@  To disable this warning use the -nopw option, or put     @#
#@  'nopw' on a line in your ~/.x11vncrc file.               @#
#@                                                           @#
#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#
###############################################################
19/08/2020 15:23:33 x11vnc version: 0.9.16 lastmod: 2019-01-05  pid: 11
2020-08-19 15:23:33,835 INFO success: X11 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2020-08-19 15:23:33,835 INFO success: fluxbox entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2020-08-19 15:23:33,835 INFO success: novnc entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2020-08-19 15:23:33,836 INFO success: x11vnc entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
Failed to start WebSockets proxy
 
2020-08-19 15:23:33,861 INFO exited: novnc (exit status 1; not expected)
Failed to read: 2020-08-19 15:23:33,907 INFO spawned: 'novnc' with pid 25
session.screen0.opaqueMove
Setting default value
Failed to read: session.screen0.fullMaximization
Setting default value
Failed to read: session.screen0.maxIgnoreIncrement
Setting default value
Failed to read: session.screen0.maxDisableMove
Setting default value
Failed to read: session.screen0.maxDisableResize
Setting default value
Failed to read: session.screen0.workspacewarping
Setting default value
Failed to read: session.screen0.showwindowposition
Setting default value
Failed to read: session.screen0.autoRaise
Setting default value
Failed to read: session.screen0.clickRaises
Setting default value
Failed to read: session.screen0.defaultDeco
Setting default value
Failed to read: session.screen0.tab.placement
Setting default value
Failed to read: session.screen0.windowMenu
Setting default value
Failed to read: session.screen0.noFocusWhileTypingDelay
Setting default value
Failed to read: session.screen0.workspaces
Setting default value
Failed to read: session.screen0.edgeSnapThreshold
Setting default value
Failed to read: session.screen0.window.focus.alpha
Setting default value
Failed to read: session.screen0.window.unfocus.alpha
Setting default value
Failed to read: session.screen0.menu.alpha
Setting default value
Failed to read: session.screen0.menuDelay
Setting default value
Failed to read: session.screen0.tab.width
Setting default value
Failed to read: session.screen0.tooltipDelay
Setting default value
Failed to read: session.screen0.allowRemoteActions
Setting default value
Failed to read: session.screen0.clientMenu.usePixmap
Setting default value
Failed to read: session.screen0.tabs.usePixmap
Setting default value
Failed to read: session.screen0.tabs.maxOver
Setting default value
Failed to read: session.screen0.tabs.intitlebar
Setting default value
Failed to read: session.screen0.focusModel
Setting default value
Failed to read: session.screen0.tabFocusModel
Setting default value
Failed to read: session.screen0.focusNewWindows
Setting default value
Failed to read: session.screen0.focusSameHead
Setting default value
Failed to read: session.screen0.rowPlacementDirection
Setting default value
Failed to read: session.screen0.colPlacementDirection
Setting default value
Failed to read: session.screen0.windowPlacement
Setting default value
Failed to read: session.ignoreBorder
Setting default value
Failed to read: session.forcePseudoTransparency
Setting default value
Failed to read: session.colorsPerChannel
Setting default value
Failed to read: session.doubleClickInterval
Setting default value
Failed to read: session.tabPadding
Setting default value
Failed to read: session.styleOverlay
Setting default value
Failed to read: session.slitlistFile
Setting default value
Failed to read: session.appsFile
Setting default value
Failed to read: session.tabsAttachArea
Setting default value
Failed to read: session.cacheLife
Setting default value
Failed to read: session.cacheMax
Setting default value
Failed to read: session.autoRaiseDelay
Setting default value
Failed to read: session.screen0.opaqueMove
Setting default value
Failed to read: session.screen0.fullMaximization
Setting default value
Failed to read: session.screen0.maxIgnoreIncrement
Setting default value
Failed to read: session.screen0.maxDisableMove
Setting default value
Failed to read: session.screen0.maxDisableResize
Setting default value
Failed to read: session.screen0.workspacewarping
Setting default value
Failed to read: session.screen0.showwindowposition
Setting default value
Failed to read: session.screen0.autoRaise
Setting default value
Failed to read: session.screen0.clickRaises
Setting default value
Failed to read: session.screen0.defaultDeco
Setting default value
Failed to read: session.screen0.tab.placement
Setting default value
Failed to read: session.screen0.windowMenu
Setting default value
Failed to read: session.screen0.noFocusWhileTypingDelay
Setting default value
Failed to read: session.screen0.workspaces
Setting default value
Failed to read: session.screen0.edgeSnapThreshold
Setting default value
Failed to read: session.screen0.window.focus.alpha
Setting default value
Failed to read: session.screen0.window.unfocus.alpha
Setting default value
Failed to read: session.screen0.menu.alpha
Setting default value
Failed to read: session.screen0.menuDelay
Setting default value
Failed to read: session.screen0.tab.width
Setting default value
Failed to read: session.screen0.tooltipDelay
Setting default value
Failed to read: session.screen0.allowRemoteActions
Setting default value
Failed to read: session.screen0.clientMenu.usePixmap
Setting default value
Failed to read: session.screen0.tabs.usePixmap
Setting default value
Failed to read: session.screen0.tabs.maxOver
Setting default value
Failed to read: session.screen0.tabs.intitlebar
Setting default value
Failed to read: session.screen0.focusModel
Setting default value
Failed to read: session.screen0.tabFocusModel
Setting default value
Failed to read: session.screen0.focusNewWindows
Setting default value
Failed to read: session.screen0.focusSameHead
Setting default value
Failed to read: session.screen0.rowPlacementDirection
Setting default value
Failed to read: session.screen0.colPlacementDirection
Setting default value
Failed to read: session.screen0.windowPlacement
Setting default value
19/08/2020 15:23:33 Using X display :0
19/08/2020 15:23:33 rootwin: 0x388 reswin: 0x400001 dpy: 0x8307b0c0
19/08/2020 15:23:33
19/08/2020 15:23:33 ------------------ USEFUL INFORMATION ------------------
19/08/2020 15:23:33 X DAMAGE available on display, using it for polling hints.
19/08/2020 15:23:33   To disable this behavior use: '-noxdamage'
19/08/2020 15:23:33
19/08/2020 15:23:33   Most compositing window managers like 'compiz' or 'beryl'
19/08/2020 15:23:33   cause X DAMAGE to fail, and so you may not see any screen
19/08/2020 15:23:33   updates via VNC.  Either disable 'compiz' (recommended) or
19/08/2020 15:23:33   supply the x11vnc '-noxdamage' command line option.
19/08/2020 15:23:33
19/08/2020 15:23:33 Wireframing: -wireframe mode is in effect for window moves.
19/08/2020 15:23:33   If this yields undesired behavior (poor response, painting
19/08/2020 15:23:33   errors, etc) it may be disabled:
19/08/2020 15:23:33    - use '-nowf' to disable wireframing completely.
19/08/2020 15:23:33    - use '-nowcr' to disable the Copy Rectangle after the
19/08/2020 15:23:33      moved window is released in the new position.
19/08/2020 15:23:33   Also see the -help entry for tuning parameters.
19/08/2020 15:23:33   You can press 3 Alt_L's (Left "Alt" key) in a row to
19/08/2020 15:23:33   repaint the screen, also see the -fixscreen option for
19/08/2020 15:23:33   periodic repaints.
19/08/2020 15:23:33
19/08/2020 15:23:33 XFIXES available on display, resetting cursor mode
19/08/2020 15:23:33   to: '-cursor most'.
19/08/2020 15:23:33   to disable this behavior use: '-cursor arrow'
19/08/2020 15:23:33   or '-noxfixes'.
19/08/2020 15:23:33 using XFIXES for cursor drawing.
19/08/2020 15:23:33 GrabServer control via XTEST.
19/08/2020 15:23:33
19/08/2020 15:23:33 Scroll Detection: -scrollcopyrect mode is in effect to
19/08/2020 15:23:33   use RECORD extension to try to detect scrolling windows
19/08/2020 15:23:33   (induced by either user keystroke or mouse input).
19/08/2020 15:23:33   If this yields undesired behavior (poor response, painting
19/08/2020 15:23:33   errors, etc) it may be disabled via: '-noscr'
19/08/2020 15:23:33   Also see the -help entry for tuning parameters.
19/08/2020 15:23:33   You can press 3 Alt_L's (Left "Alt" key) in a row to
19/08/2020 15:23:33   repaint the screen, also see the -fixscreen option for
19/08/2020 15:23:33   periodic repaints.
19/08/2020 15:23:33
19/08/2020 15:23:33 XKEYBOARD: number of keysyms per keycode 7 is greater
19/08/2020 15:23:33   than 4 and 51 keysyms are mapped above 4.
19/08/2020 15:23:33   Automatically switching to -xkb mode.
19/08/2020 15:23:33   If this makes the key mapping worse you can
19/08/2020 15:23:33   disable it with the "-noxkb" option.
19/08/2020 15:23:33   Also, remember "-remap DEAD" for accenting characters.
19/08/2020 15:23:33
19/08/2020 15:23:33 X FBPM extension not supported.
Xlib:  extension "DPMS" missing on display ":0".
19/08/2020 15:23:33 X display is not capable of DPMS.
19/08/2020 15:23:33 --------------------------------------------------------
19/08/2020 15:23:33
19/08/2020 15:23:33 Default visual ID: 0x21
19/08/2020 15:23:33 Read initial data from X display into framebuffer.
19/08/2020 15:23:33 initialize_screen: fb_depth/fb_bpp/fb_Bpl 24/32/4096
19/08/2020 15:23:33
19/08/2020 15:23:33 X display :0 is 32bpp depth=24 true color
19/08/2020 15:23:33
19/08/2020 15:23:33 Autoprobing TCP port
19/08/2020 15:23:33 Autoprobing selected TCP port 5900
19/08/2020 15:23:33 Autoprobing TCP6 port
19/08/2020 15:23:33 Autoprobing selected TCP6 port 5900
19/08/2020 15:23:33 listen6: bind: Address already in use
19/08/2020 15:23:33 Not listening on IPv6 interface.
19/08/2020 15:23:33
19/08/2020 15:23:33 Xinerama is present and active (e.g. multi-head).
19/08/2020 15:23:33 Xinerama: number of sub-screens: 1
19/08/2020 15:23:33 Xinerama: no blackouts needed (only one sub-screen)
19/08/2020 15:23:33
19/08/2020 15:23:33 fb read rate: 680 MB/sec
19/08/2020 15:23:33 fast read: reset -wait  ms to: 10
19/08/2020 15:23:33 fast read: reset -defer ms to: 10
19/08/2020 15:23:33 The X server says there are 10 mouse buttons.
19/08/2020 15:23:33 screen setup finished.
19/08/2020 15:23:33
19/08/2020 15:23:33 WARNING: You are running x11vnc WITHOUT a password.  See
19/08/2020 15:23:33 WARNING: the warning message printed above for more info.
19/08/2020 15:23:33
 
The VNC desktop is:      5c2037d22477:0
PORT=5900
 
******************************************************************************
Have you tried the x11vnc '-ncache' VNC client-side pixel caching feature yet?
 
The scheme stores pixel data offscreen on the VNC viewer side for faster
retrieval.  It should work with any VNC viewer.  Try it by running:
 
    x11vnc -ncache 10 ...
 
One can also add -ncache_cr for smooth 'copyrect' window motion.
More info: http://www.karlrunge.com/x11vnc/faq.html#faq-client-caching
 
Warning: could not find self.pem
Using local websockify at /root/novnc/utils/websockify/run
Starting webserver and WebSockets proxy on port 8080
/usr/bin/env: ‘python’: No such file or directory
Failed to read: session.screen0.slit.acceptKdeDockapps
Setting default value
Failed to read: session.screen0.slit.autoHide
Setting default value
Failed to read: session.screen0.slit.maxOver
Setting default value
Failed to read: session.screen0.slit.placement
Setting default value
Failed to read: session.screen0.slit.alpha
Setting default value
Failed to read: session.screen0.slit.onhead
Setting default value
Failed to read: session.screen0.slit.layer
Setting default value
Failed to read: session.screen0.toolbar.autoHide
Setting default value
Failed to read: session.screen0.toolbar.maxOver
Setting default value
Failed to read: session.screen0.toolbar.visible
Setting default value
Failed to read: session.screen0.toolbar.alpha
Setting default value
Failed to read: session.screen0.toolbar.layer
Setting default value
Failed to read: session.screen0.toolbar.onhead
Setting default value
Failed to read: session.screen0.toolbar.placement
Setting default value
Failed to read: session.screen0.toolbar.height
Setting default value
Failed to read: session.screen0.iconbar.mode
Setting default value
Failed to read: session.screen0.iconbar.alignment
Setting default value
Failed to read: session.screen0.iconbar.iconWidth
Setting default value
Failed to read: session.screen0.iconbar.iconTextPadding
Setting default value
Failed to read: session.screen0.iconbar.usePixmap
Setting default value
Failed to start WebSockets proxy
 
 
root@a_1:~/1# ^C

Текст слишком длинный, поэтому продолжение в первом комменте.
0
cpp_developer
Эксперт
20123 / 5690 / 1417
Регистрация: 09.04.2010
Сообщений: 22,546
Блог
20.08.2020, 13:31
Ответы с готовыми решениями:

Ошибка /usr/lib/php5/sessionclean: «/usr/lib/php5/20131226/: cannot read file data: Is a directory»
Как исправить? С сервера приходят письма

Не могу установить ни одну программу /bin/sh: /usr/bin/yum: /usr/bin/python: bad interpreter: No such file or
Добрый день. Устанавливал на VDS сервер (CentOS) firstvds python. Оказалось там стоял уже python 2.6, а мне нужно python 3.4. Ну я не долго...

Dmenu не видит symlink в /usr/bin
Привет народ, такая проблема: хочу создать симлинк на вызов программы с параметрами, пишу ln -s &quot;/usr/bin/emacsclient -c&quot;...

1
22 / 56 / 9
Регистрация: 29.09.2011
Сообщений: 618
20.08.2020, 13:31  [ТС]
Кликните здесь для просмотра всего текста

Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
2020-08-19 15:23:34,998 INFO spawned: 'app' with pid 44
2020-08-19 15:23:34,998 INFO success: novnc entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2020-08-19 15:23:34,999 INFO exited: novnc (exit status 1; not expected)
2020-08-19 15:23:35,001 INFO spawned: 'novnc' with pid 45
ALSA lib confmisc.c:767:(parse_card) cannot find card '0'
ALSA lib conf.c:4693:(_snd_config_evaluate) function snd_func_card_driver returned error: No such file or directory
ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings
ALSA lib conf.c:4693:(_snd_config_evaluate) function snd_func_concat returned error: No such file or directory
ALSA lib confmisc.c:1246:(snd_func_refer) error evaluating name
ALSA lib conf.c:4693:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:5181:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2642:(snd_pcm_open_noupdate) Unknown PCM default
AL lib: (EE) ALCplaybackAlsa_open: Could not open playback device 'default': No such file or directory
terminate called after throwing an instance of 'std::runtime_error'
  what():  Audio: Global Initialization: Device Open
Warning: could not find self.pem
Using local websockify at /root/novnc/utils/websockify/run
Starting webserver and WebSockets proxy on port 8080
/usr/bin/env: ‘python’: No such file or directory
2020-08-19 15:23:35,164 INFO exited: app (terminated by SIGABRT (core dumped); not expected)
Failed to start WebSockets proxy
 
2020-08-19 15:23:36,045 INFO success: novnc entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2020-08-19 15:23:36,045 INFO exited: novnc (exit status 1; not expected)
2020-08-19 15:23:37,048 INFO spawned: 'novnc' with pid 57
Warning: could not find self.pem
Using local websockify at /root/novnc/utils/websockify/run
Starting webserver and WebSockets proxy on port 8080
/usr/bin/env: ‘python’: No such file or directory
Failed to start WebSockets proxy
 
2020-08-19 15:23:38,071 INFO spawned: 'app' with pid 68
2020-08-19 15:23:38,071 INFO success: novnc entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2020-08-19 15:23:38,072 INFO exited: novnc (exit status 1; not expected)
2020-08-19 15:23:38,074 INFO spawned: 'novnc' with pid 69
ALSA lib confmisc.c:767:(parse_card) cannot find card '0'
ALSA lib conf.c:4693:(_snd_config_evaluate) function snd_func_card_driver returned error: No such file or directory
ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings
ALSA lib conf.c:4693:(_snd_config_evaluate) function snd_func_concat returned error: No such file or directory
ALSA lib confmisc.c:1246:(snd_func_refer) error evaluating name
ALSA lib conf.c:4693:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:5181:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2642:(snd_pcm_open_noupdate) Unknown PCM default
AL lib: (EE) ALCplaybackAlsa_open: Could not open playback device 'default': No such file or directory
terminate called after throwing an instance of 'std::runtime_error'
  what():  Audio: Global Initialization: Device Open
Warning: could not find self.pem
Using local websockify at /root/novnc/utils/websockify/run
Starting webserver and WebSockets proxy on port 8080
/usr/bin/env: ‘python’: No such file or directory
2020-08-19 15:23:38,249 INFO exited: app (terminated by SIGABRT (core dumped); not expected)
Failed to start WebSockets proxy
 
2020-08-19 15:23:39,122 INFO success: novnc entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2020-08-19 15:23:39,123 INFO exited: novnc (exit status 1; not expected)
2020-08-19 15:23:39,125 INFO spawned: 'novnc' with pid 81
Warning: could not find self.pem
Using local websockify at /root/novnc/utils/websockify/run
Starting webserver and WebSockets proxy on port 8080
/usr/bin/env: ‘python’: No such file or directory
^C^C^CFailed to start WebSockets proxy
 
2020-08-19 15:23:40,142 INFO success: novnc entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2020-08-19 15:23:40,142 INFO exited: novnc (exit status 1; not expected)
2020-08-19 15:23:40,142 WARN received SIGINT indicating exit request
2020-08-19 15:23:40,142 INFO waiting for X11, app, fluxbox, x11vnc to die
caught signal: 15
19/08/2020 15:23:40 deleted 32 tile_row polling images.
2020-08-19 15:23:40,146 INFO stopped: x11vnc (exit status 2)
^C^C^C^C^C2020-08-19 15:23:41,147 WARN received SIGINT indicating exit request
2020-08-19 15:23:41,153 INFO stopped: fluxbox (exit status 0)
^C^C^C2020-08-19 15:23:42,154 WARN received SIGINT indicating exit request
^C^C^C^C^C^C/usr/lib/python3/dist-packages/supervisor/options.py:470: UserWarning: Supervisord is running as root and it is searching for its configuration file in default locations (including its current working directory); you probably want to specify a "-c" argument specifying an absolute path to a configuration file for improved security.
  self.warnings.warn(
2020-08-19 15:23:43,161 INFO stopped: X11 (exit status 0)
0
Надоела реклама? Зарегистрируйтесь и она исчезнет полностью.
raxper
Эксперт
30234 / 6612 / 1498
Регистрация: 28.12.2010
Сообщений: 21,154
Блог
20.08.2020, 13:31
Помогаю со студенческими работами здесь

Определить, сколько исполняемых файлов в каталоге /usr/bin
Помогите написать сценарий на bash. Определить, сколько исполняемых файлов в каталоге /usr/bin. Подсказка:можно предварительно получить...

E: Sub-process /usr/bin/dpkg returned an error code (100)
Здравствуйте Есть большая необходимость научится работать с ОС Ubuntu 17.04 zesty. Начинаю настраивать работу в GitLab Шаг 1. sudo...

Ошибка fatal error C1083: Cannot open include file: ***: No such file or directory
Помогите пожалуйста исправить ошибку. При компиляции возникает вот такая беда. подробности в скриншотах. даже если переносишь все файлы в...

fatal error C1083: Cannot open include file: 'windows.h': No such file or directory
Почему Visul C++ 2005 Express Editional ругается на # include &lt;windows.h&gt;, пишет:&gt;g:\documents and settings\max\мои документы\visual studio...

fatal error C1083: Cannot open include file: 'Date.h': No such file or directory
Всем добрый вечер! У меня проблема. Мне нужно, чтобы мой класс содержал обьект другого класса как элемент данных, я его добавила в проект,...


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
2
Ответ Создать тему
Новые блоги и статьи
SDL3 для Web (WebAssembly): Реализация движения на Box2D v3 - трение и коллизии с повёрнутыми стенами
8Observer8 20.02.2026
Содержание блога Box2D позволяет легко создать главного героя, который не проходит сквозь стены и перемещается с заданным трением о препятствия, которые можно располагать под углом, как верхнее. . .
Конвертировать закладки radiotray-ng в m3u-плейлист
damix 19.02.2026
Это можно сделать скриптом для PowerShell. Использование . \СonvertRadiotrayToM3U. ps1 <path_to_bookmarks. json> Рядом с файлом bookmarks. json появится файл bookmarks. m3u с результатом. # Check if. . .
Семь CDC на одном интерфейсе: 5 U[S]ARTов, 1 CAN и 1 SSI
Eddy_Em 18.02.2026
Постепенно допиливаю свою "многоинтерфейсную плату". Выглядит вот так: https:/ / www. cyberforum. ru/ blog_attachment. php?attachmentid=11617&stc=1&d=1771445347 Основана на STM32F303RBT6. На борту пять. . .
Камера Toupcam IUA500KMA
Eddy_Em 12.02.2026
Т. к. у всяких "хикроботов" слишком уж мелкий пиксель, для подсмотра в ESPriF они вообще плохо годятся: уже 14 величину можно рассмотреть еле-еле лишь на экспозициях под 3 секунды (а то и больше),. . .
И ясному Солнцу
zbw 12.02.2026
И ясному Солнцу, и светлой Луне. В мире покоя нет и люди не могут жить в тишине. А жить им немного лет.
«Знание-Сила»
zbw 12.02.2026
«Знание-Сила» «Время-Деньги» «Деньги -Пуля»
SDL3 для Web (WebAssembly): Подключение Box2D v3, физика и отрисовка коллайдеров
8Observer8 12.02.2026
Содержание блога Box2D - это библиотека для 2D физики для анимаций и игр. С её помощью можно определять были ли коллизии между конкретными объектами и вызывать обработчики событий столкновения. . . .
SDL3 для Web (WebAssembly): Загрузка PNG с прозрачным фоном с помощью SDL_LoadPNG (без SDL3_image)
8Observer8 11.02.2026
Содержание блога Библиотека SDL3 содержит встроенные инструменты для базовой работы с изображениями - без использования библиотеки SDL3_image. Пошагово создадим проект для загрузки изображения. . .
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2026, CyberForum.ru