Advertisement
Guest User

install macplayer

a guest
Feb 14th, 2017
404
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 52.62 KB | None | 0 0
  1. rock@rabian-rock:~/tmp$ ls
  2. installmacplayer.sh macplay.cgi prepare_upload.sh set720p.sh
  3. logmacplayer macplay_socket sendkeymacplayer
  4. macplay macplayer set1080p.sh
  5. rock@rabian-rock:~/tmp$ bash ./installmacplayer.sh
  6. + sudo su -p -c 'export NEW_EGLPLATFORM=surfaceflinger; find /etc|xargs grep EGL_PLATFORM 2>/dev/null|cut -f1 -d":"|xargs sed -i -e "s/EGL_PLATFORM=.*/EGL_PLATFORM=${NEW_EGLPLATFORM}/"'
  7. + sudo su -c 'find /etc|xargs grep EGL_PLATFORM 2>/dev/null'
  8. /etc/profile.d/libhybris_path_eglplatform.sh:EGL_PLATFORM=surfaceflinger
  9. /etc/profile.d/libhybris_path_eglplatform.sh:export EGL_PLATFORM
  10. /etc/environment:EGL_PLATFORM=surfaceflinger
  11. /etc/bash.bashrc:EGL_PLATFORM=surfaceflinger
  12. /etc/bash.bashrc:export EGL_PLATFORM
  13. + sudo su -p -c 'export NEW_EGLPLATFORM=surfaceflinger; sed -i -e "s/EGL_PLATFORM_DEFAULT=.*/EGL_PLATFORM_DEFAULT=${NEW_EGLPLATFORM}/" /usr/local/share/libhybris/libhybris.sh'
  14. + sudo su -c 'grep "EGL_PLATFORM_DEFAULT=" /usr/local/share/libhybris/libhybris.sh 2>/dev/null'
  15. EGL_PLATFORM_DEFAULT=surfaceflinger
  16. + chmod a+x installmacplayer.sh logmacplayer macplay macplay.cgi macplay_socket macplayer prepare_upload.sh sendkeymacplayer set1080p.sh set720p.sh
  17. + sudo cp logmacplayer macplay macplay_socket sendkeymacplayer /usr/local/sbin/
  18. + sudo cp macplayer /usr/local/bin/
  19. + sudo cp set1080p.sh set720p.sh /usr/local/sbin/
  20. + sudo cp macplay.cgi /usr/lib/cgi-bin/
  21. cp: cannot create regular file '/usr/lib/cgi-bin/': Not a directory
  22. rock@rabian-rock:~/tmp$ cd
  23. rock@rabian-rock:~$ ls
  24. Desktop
  25. Documents
  26. Downloads
  27. Music
  28. Pictures
  29. Public
  30. Templates
  31. Videos
  32. kodi.sh
  33. machybris-rk3288_4.4.2-0.1.1_armhf.deb
  34. machybris-rk3288_4.4.2_rkpatch-0.1.1_armhf.deb
  35. mackodi_isengard-jessie-0.1.1_armhf.deb.mackodiplay
  36. mackodi_isengard-jessie-0.1.1_armhf.deb.new
  37. macplay.sh
  38. macplay2.sh
  39. macplayer
  40. macplayer2
  41. rk3188
  42. sintel_trailer-1080p.mp4
  43. tmp
  44. rock@rabian-rock:~$ sudo su
  45. root@rabian-rock:/home/rock# macplay
  46. macplay macplay_socket macplayer
  47. root@rabian-rock:/home/rock# macplay
  48. macplay macplay_socket macplayer
  49. root@rabian-rock:/home/rock# which macplay
  50. /usr/local/sbin/macplay
  51. root@rabian-rock:/home/rock# cat /usr/local/sbin/macplay
  52. #!/bin/bash
  53. set -x
  54.  
  55. SOCKIN=50505
  56. SOCKOUT=60606
  57.  
  58. echo "<br>"
  59. if [ -z "$1" ]; then
  60. echo "$0: no input given! <br>"
  61. elif [ ${#1} = 1 ]; then
  62. echo "$0: command '$1' <br>"
  63. if [ $(ps -ef|grep macplayer|wc -l) = 1 ]; then
  64. echo "$0: macplayer not running, not sending command! <br>"
  65. else
  66. echo -n "$1"|socat - udp-sendto:127.0.0.1:$SOCKIN
  67. fi
  68. else
  69.  
  70. echo "$0: play '$1' <br>"
  71. if ! [ $(ps -ef|grep macplayer|wc -l) = 1 ]; then
  72. echo "$0: macplayer already running, stopping it first! then play<br>"
  73. echo -n "q"|socat - udp-sendto:127.0.0.1:$SOCKIN
  74. sleep 2
  75. fi
  76.  
  77. # kill 'm all
  78. sudo pkill -9 macplayer
  79. sudo pkill -9 surfaceflinger
  80.  
  81. # player args
  82. FILE="$1"
  83. #FILE=http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts
  84. BIN=/usr/local/bin/macplayer
  85.  
  86. #screen -d -m sudo su -c "EGL_PLATFORM=surfaceflinger $BIN '$FILE'"
  87. screen -d -m sudo su -c "macplay_socket $SOCKIN $SOCKOUT '$FILE'"
  88.  
  89. fi
  90.  
  91. export DISPLAY=:0.0
  92. xrefresh || true
  93. root@rabian-rock:/home/rock# macplay http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts
  94. + SOCKIN=50505
  95. + SOCKOUT=60606
  96. + echo '<br>'
  97. <br>
  98. + '[' -z http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts ']'
  99. + '[' 66 = 1 ']'
  100. + echo '/usr/local/sbin/macplay: play '\''http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts'\'' <br>'
  101. /usr/local/sbin/macplay: play 'http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts' <br>
  102. ++ ps -ef
  103. ++ grep macplayer
  104. ++ wc -l
  105. + '[' 1 = 1 ']'
  106. + sudo pkill -9 macplayer
  107. + sudo pkill -9 surfaceflinger
  108. + FILE=http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts
  109. + BIN=/usr/local/bin/macplayer
  110. + screen -d -m sudo su -c 'macplay_socket 50505 60606 '\''http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts'\'''
  111. /usr/local/sbin/macplay: line 36: screen: command not found
  112. + export DISPLAY=:0.0
  113. + DISPLAY=:0.0
  114. + xrefresh
  115. No protocol specified
  116. xrefresh: unable to open display ':0.0'
  117. + true
  118. root@rabian-rock:/home/rock# sudo apt-get install screen
  119. Reading package lists... Done
  120. Building dependency tree
  121. Reading state information... Done
  122. The following packages were automatically installed and are no longer required:
  123. libasn1-8-heimdal libgssapi3-heimdal libhcrypto4-heimdal
  124. libheimbase1-heimdal libheimntlm0-heimdal libhx509-5-heimdal libirs-export91
  125. libisccfg-export90 libkrb5-26-heimdal libroken18-heimdal libwind0-heimdal
  126. Use 'apt-get autoremove' to remove them.
  127. Suggested packages:
  128. iselect screenie byobu
  129. The following NEW packages will be installed:
  130. screen
  131. 0 upgraded, 1 newly installed, 0 to remove and 8 not upgraded.
  132. Need to get 536 kB of archives.
  133. After this operation, 777 kB of additional disk space will be used.
  134. Get:1 http://http.debian.net/debian/ jessie/main screen armhf 4.2.1-3+deb8u1 [536 kB]
  135. Fetched 536 kB in 4s (129 kB/s)
  136. perl: warning: Setting locale failed.
  137. perl: warning: Please check that your locale settings:
  138. LANGUAGE = (unset),
  139. LC_ALL = (unset),
  140. LC_TIME = "nl_NL.UTF-8",
  141. LC_MONETARY = "nl_NL.UTF-8",
  142. LC_ADDRESS = "nl_NL.UTF-8",
  143. LC_TELEPHONE = "nl_NL.UTF-8",
  144. LC_NAME = "nl_NL.UTF-8",
  145. LC_MEASUREMENT = "nl_NL.UTF-8",
  146. LC_IDENTIFICATION = "nl_NL.UTF-8",
  147. LC_NUMERIC = "nl_NL.UTF-8",
  148. LC_PAPER = "nl_NL.UTF-8",
  149. LANG = "C.UTF-8"
  150. are supported and installed on your system.
  151. perl: warning: Falling back to a fallback locale ("C.UTF-8").
  152. locale: Cannot set LC_ALL to default locale: No such file or directory
  153. debconf: delaying package configuration, since apt-utils is not installed
  154. Selecting previously unselected package screen.
  155. (Reading database ... 231852 files and directories currently installed.)
  156. Preparing to unpack .../screen_4.2.1-3+deb8u1_armhf.deb ...
  157. Unpacking screen (4.2.1-3+deb8u1) ...
  158. Processing triggers for man-db (2.7.0.2-5) ...
  159. Processing triggers for systemd (215-17+deb8u5) ...
  160. Setting up screen (4.2.1-3+deb8u1) ...
  161. locale: Cannot set LC_ALL to default locale: No such file or directory
  162. Processing triggers for systemd (215-17+deb8u5) ...
  163. root@rabian-rock:/home/rock# macplay http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts
  164. + SOCKIN=50505
  165. + SOCKOUT=60606
  166. + echo '<br>'
  167. <br>
  168. + '[' -z http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts ']'
  169. + '[' 66 = 1 ']'
  170. + echo '/usr/local/sbin/macplay: play '\''http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts'\'' <br>'
  171. /usr/local/sbin/macplay: play 'http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts' <br>
  172. ++ ps -ef
  173. ++ grep macplayer
  174. ++ wc -l
  175. + '[' 1 = 1 ']'
  176. + sudo pkill -9 macplayer
  177. + sudo pkill -9 surfaceflinger
  178. + FILE=http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts
  179. + BIN=/usr/local/bin/macplayer
  180. + screen -d -m sudo su -c 'macplay_socket 50505 60606 '\''http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts'\'''
  181. + export DISPLAY=:0.0
  182. + DISPLAY=:0.0
  183. + xrefresh
  184. No protocol specified
  185. xrefresh: unable to open display ':0.0'
  186. + true
  187. root@rabian-rock:/home/rock# exit
  188. exit
  189. rock@rabian-rock:~$ macplay http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts
  190. + SOCKIN=50505
  191. + SOCKOUT=60606
  192. + echo '<br>'
  193. <br>
  194. + '[' -z http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts ']'
  195. + '[' 66 = 1 ']'
  196. + echo '/usr/local/sbin/macplay: play '\''http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts'\'' <br>'
  197. /usr/local/sbin/macplay: play 'http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts' <br>
  198. ++ ps -ef
  199. ++ grep macplayer
  200. ++ wc -l
  201. + '[' 1 = 1 ']'
  202. + sudo pkill -9 macplayer
  203. + sudo pkill -9 surfaceflinger
  204. + FILE=http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts
  205. + BIN=/usr/local/bin/macplayer
  206. + screen -d -m sudo su -c 'macplay_socket 50505 60606 '\''http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts'\'''
  207. + export DISPLAY=:0.0
  208. + DISPLAY=:0.0
  209. + xrefresh
  210. rock@rabian-rock:~$ ps -ef
  211. UID PID PPID C STIME TTY TIME CMD
  212. root 1 0 0 05:06 ? 00:00:03 /sbin/init
  213. root 2 0 0 05:06 ? 00:00:00 [kthreadd]
  214. root 3 2 0 05:06 ? 00:00:00 [ksoftirqd/0]
  215. root 5 2 0 05:06 ? 00:00:01 [kworker/u:0]
  216. root 6 2 0 05:06 ? 00:00:00 [migration/0]
  217. root 7 2 0 05:06 ? 00:00:00 [migration/1]
  218. root 9 2 0 05:06 ? 00:00:00 [ksoftirqd/1]
  219. root 10 2 0 05:06 ? 00:00:00 [migration/2]
  220. root 12 2 0 05:06 ? 00:00:00 [ksoftirqd/2]
  221. root 13 2 0 05:06 ? 00:00:00 [migration/3]
  222. root 15 2 0 05:06 ? 00:00:00 [ksoftirqd/3]
  223. root 16 2 0 05:06 ? 00:00:00 [khelper]
  224. root 17 2 0 05:06 ? 00:00:00 [suspend_sys_syn]
  225. root 18 2 0 05:06 ? 00:00:00 [suspend]
  226. root 19 2 0 05:06 ? 00:00:04 [kconsole]
  227. root 20 2 0 05:06 ? 00:00:00 [sync_supers]
  228. root 21 2 0 05:06 ? 00:00:00 [bdi-default]
  229. root 22 2 0 05:06 ? 00:00:00 [kblockd]
  230. root 23 2 0 05:06 ? 00:00:00 [khubd]
  231. root 24 2 0 05:06 ? 00:00:00 [irq/58-rk30-adc]
  232. root 26 2 0 05:06 ? 00:00:00 [cfg80211]
  233. root 27 2 0 05:06 ? 00:00:02 [fb-vsync]
  234. root 28 2 0 05:06 ? 00:00:00 [fb-vsync]
  235. root 29 2 0 05:06 ? 00:00:00 [hdmi-it66121]
  236. root 30 2 0 05:06 ? 00:00:00 [kworker/u:1]
  237. root 31 2 0 05:06 ? 00:00:00 [it66121 irq]
  238. root 32 2 0 05:06 ? 00:00:00 [cfinteractive]
  239. root 34 2 0 05:06 ? 00:00:00 [rk3188_cpufreqd]
  240. root 35 2 0 05:06 ? 00:00:00 [irq/42-vdpu]
  241. root 36 2 0 05:06 ? 00:00:00 [irq/41-vepu]
  242. root 37 2 0 05:06 ? 00:00:00 [kswapd0]
  243. root 38 2 0 05:06 ? 00:00:00 [ksmd]
  244. root 39 2 0 05:06 ? 00:00:00 [fsnotify_mark]
  245. root 40 2 0 05:06 ? 00:00:00 [crypto]
  246. root 54 2 0 05:06 ? 00:00:00 [irq/95-rga]
  247. root 61 2 0 05:06 ? 00:00:00 [f_mtp]
  248. root 62 2 0 05:06 ? 00:00:00 [file-storage]
  249. root 63 2 0 05:06 ? 00:00:00 [irq/173-rtc_hym]
  250. root 64 2 0 05:06 ? 00:00:00 [binder]
  251. root 65 2 0 05:06 ? 00:00:00 [krfcommd]
  252. root 66 2 0 05:06 ? 00:00:00 [ddrtestd]
  253. root 67 2 0 05:06 ? 00:00:00 [ddrfreqd]
  254. root 74 2 0 05:06 ? 00:00:06 [rknand_buffer]
  255. root 75 2 0 05:06 ? 00:00:08 [rk_ftl_gc]
  256. root 76 2 0 05:06 ? 00:00:00 [mtdblock0]
  257. root 77 2 0 05:06 ? 00:00:00 [mtdblock1]
  258. root 78 2 0 05:06 ? 00:00:00 [mtdblock2]
  259. root 79 2 0 05:06 ? 00:00:00 [mtdblock3]
  260. root 80 2 0 05:06 ? 00:00:07 [mtdblock4]
  261. root 124 2 0 05:06 ? 00:00:00 [kworker/3:1]
  262. root 127 2 0 05:06 ? 00:00:00 [jbd2/mtdblock4-]
  263. root 128 2 0 05:06 ? 00:00:00 [ext4-dio-unwrit]
  264. root 148 2 0 05:06 ? 00:00:00 [flush-31:4]
  265. root 149 2 0 05:06 ? 00:00:00 [kauditd]
  266. root 154 1 0 05:06 ? 00:00:01 /lib/systemd/systemd-journald
  267. root 155 1 0 05:06 ? 00:00:00 /lib/systemd/systemd-udevd
  268. root 370 1 0 05:06 ? 00:00:03 /usr/sbin/NetworkManager --no-da
  269. root 373 1 0 05:06 ? 00:00:00 /usr/sbin/sshd -D
  270. root 379 1 0 05:06 ? 00:00:00 /usr/sbin/cron -f
  271. root 380 1 0 05:06 ? 00:00:00 /usr/sbin/ModemManager
  272. root 385 1 0 05:06 ? 00:00:00 /system/bin/servicemanager --sta
  273. root 386 2 0 05:06 ? 00:00:00 [loop0]
  274. root 388 2 0 05:06 ? 00:00:00 [ext4-dio-unwrit]
  275. root 390 1 0 05:06 ? 00:00:00 /system/bin/mediaserver
  276. root 405 2 0 05:06 ? 00:00:00 [mali_freq_workq]
  277. root 470 1 0 05:06 ? 00:00:00 /lib/systemd/systemd-logind
  278. avahi 782 1 0 05:06 ? 00:00:00 avahi-daemon: running [rabian-ro
  279. ntp 808 1 0 05:06 ? 00:00:00 /usr/sbin/ntpd -p /var/run/ntpd.
  280. message+ 810 1 0 05:06 ? 00:00:02 /usr/bin/dbus-daemon --system --
  281. Debian-+ 823 1 0 05:06 ? 00:00:00 /usr/sbin/exim4 -bd -q30m
  282. avahi 825 782 0 05:06 ? 00:00:00 avahi-daemon: chroot helper
  283. root 827 2 0 05:06 ? 00:00:00 [kworker/2:2]
  284. root 830 1 0 05:06 ? 00:00:01 /usr/sbin/syslog-ng -F
  285. root 837 1 0 05:06 ? 00:00:00 /usr/lib/policykit-1/polkitd --n
  286. root 850 1 0 05:06 tty1 00:00:00 /sbin/agetty --noclear tty1 linu
  287. root 851 1 0 05:06 ttyFIQ0 00:00:00 /sbin/agetty --keep-baud 115200
  288. root 859 1 0 05:06 ? 00:00:00 /usr/sbin/lightdm
  289. root 860 2 0 05:06 ? 00:00:00 [kworker/1:2]
  290. root 869 859 0 05:06 tty7 00:00:05 /usr/bin/X :0 -seat seat0 -auth
  291. root 876 859 0 05:06 ? 00:00:00 lightdm --session-child 13 16
  292. rock 881 1 0 05:06 ? 00:00:00 /lib/systemd/systemd --user
  293. rock 882 881 0 05:06 ? 00:00:00 (sd-pam)
  294. rock 888 876 0 05:06 ? 00:00:00 x-session-manager
  295. root 903 2 0 05:06 ? 00:00:00 [ksdioirqd/mmc1]
  296. root 928 2 0 05:06 ? 00:00:00 [RTW_XMIT_THREAD]
  297. root 929 2 0 05:06 ? 00:00:04 [RTW_CMD_THREAD]
  298. root 930 2 0 05:06 ? 00:00:00 [RTWHALXT-wlan1]
  299. root 931 2 0 05:06 ? 00:00:00 [RTWHALXT-p2p0]
  300. root 932 1 0 05:06 ? 00:00:01 /sbin/wpa_supplicant -u -s -O /r
  301. rock 938 888 0 05:06 ? 00:00:00 /usr/bin/ssh-agent /usr/bin/dbus
  302. rock 941 1 0 05:06 ? 00:00:00 /usr/bin/dbus-launch --exit-with
  303. rock 942 1 0 05:06 ? 00:00:00 /usr/bin/dbus-daemon --fork --pr
  304. rock 946 1 0 05:06 ? 00:00:00 /usr/lib/dconf/dconf-service
  305. rock 950 1 0 05:06 ? 00:00:00 gnome-keyring-daemon --start
  306. rock 955 888 0 05:06 ? 00:00:01 /usr/bin/mate-settings-daemon
  307. rock 957 888 0 05:06 ? 00:00:00 marco
  308. rock 962 888 0 05:06 ? 00:00:01 mate-panel
  309. rock 964 1 0 05:06 ? 00:00:00 /usr/lib/gvfs/gvfsd
  310. rock 986 1 0 05:06 ? 00:00:00 /usr/lib/gvfs/gvfs-udisks2-volum
  311. rock 987 888 0 05:06 ? 00:00:02 caja
  312. root 989 1 0 05:06 ? 00:00:00 /usr/lib/udisks2/udisksd --no-de
  313. rock 990 888 0 05:06 ? 00:00:01 /usr/bin/python /usr/bin/blueman
  314. rock 992 888 0 05:06 ? 00:00:06 nm-applet
  315. rock 1003 888 0 05:06 ? 00:00:00 /usr/lib/arm-linux-gnueabihf/pol
  316. rock 1006 888 0 05:06 ? 00:00:00 mate-screensaver
  317. rock 1007 888 0 05:06 ? 00:00:00 mate-power-manager
  318. rock 1013 1 0 05:06 ? 00:00:00 /usr/lib/gvfs/gvfs-mtp-volume-mo
  319. rock 1025 1 0 05:06 ? 00:00:00 /usr/lib/gvfs/gvfs-gphoto2-volum
  320. rock 1027 1 0 05:06 ? 00:00:00 /usr/lib/at-spi2-core/at-spi-bus
  321. rock 1031 1027 0 05:06 ? 00:00:00 /usr/bin/dbus-daemon --config-fi
  322. rock 1034 1 0 05:06 ? 00:00:00 /usr/lib/at-spi2-core/at-spi2-re
  323. rock 1038 1 0 05:06 ? 00:00:00 /usr/lib/gvfs/gvfs-goa-volume-mo
  324. rock 1043 1 0 05:06 ? 00:00:00 /usr/lib/gvfs/gvfs-afc-volume-mo
  325. root 1046 1 0 05:06 ? 00:00:00 /usr/lib/upower/upowerd
  326. rock 1061 1 0 05:06 ? 00:00:00 /usr/lib/gvfs/gvfsd-trash --spaw
  327. rock 1066 1 0 05:06 ? 00:00:00 /usr/lib/arm-linux-gnueabihf/gco
  328. rock 1079 1 0 05:06 ? 00:00:00 /usr/lib/mate-panel/wnck-applet
  329. rock 1085 1 0 05:06 ? 00:00:01 /usr/lib/mate-panel/clock-applet
  330. rock 1086 1 0 05:06 ? 00:00:01 /usr/lib/mate-panel/notification
  331. root 1494 2 0 05:09 ? 00:00:00 [ax88772a]
  332. root 1586 370 0 05:10 ? 00:00:00 /sbin/dhclient -d -q -sf /usr/li
  333. root 1695 373 0 05:11 ? 00:00:00 sshd: rock [priv]
  334. rock 1697 1695 0 05:11 ? 00:00:00 sshd: rock@pts/0
  335. rock 1698 1697 0 05:11 pts/0 00:00:00 -bash
  336. root 1703 2 0 05:11 ? 00:00:00 [kworker/0:1]
  337. root 1727 2 0 05:12 ? 00:00:00 [kworker/2:1]
  338. root 1829 2 0 05:12 ? 00:00:00 [kworker/1:1]
  339. root 1836 1 0 05:12 ? 00:00:00 /usr/lib/packagekit/packagekitd
  340. root 1848 2 0 05:14 ? 00:00:00 [kworker/3:0]
  341. root 1853 2 0 05:18 ? 00:00:00 [kworker/0:2]
  342. root 1854 373 0 05:18 ? 00:00:00 sshd: rock [priv]
  343. rock 1856 1854 0 05:18 ? 00:00:00 sshd: rock@pts/1
  344. rock 1857 1856 0 05:18 pts/1 00:00:00 -bash
  345. root 1864 2 0 05:19 ? 00:00:00 [kworker/3:2]
  346. rock 1865 1698 0 05:20 pts/0 00:00:00 lftp mac-l1.com@mac-l1.com
  347. root 1941 2 0 05:23 ? 00:00:00 [kworker/2:0]
  348. root 2049 2 0 05:23 ? 00:00:00 [kworker/0:0]
  349. rock 2124 1857 0 05:23 pts/1 00:00:00 ps -ef
  350. rock@rabian-rock:~$ macplayer
  351. macplayer: error while loading shared libraries: libfdk-aac.so.0: cannot open shared object file: No such file or directory
  352. rock@rabian-rock:~$ sudo apt-get install libfdk-aac
  353. Reading package lists... Done
  354. Building dependency tree
  355. Reading state information... Done
  356. E: Unable to locate package libfdk-aac
  357. rock@rabian-rock:~$ sudo apt-get install libfdk-aac-dev
  358. Reading package lists... Done
  359. Building dependency tree
  360. Reading state information... Done
  361. The following packages were automatically installed and are no longer required:
  362. libasn1-8-heimdal libgssapi3-heimdal libhcrypto4-heimdal
  363. libheimbase1-heimdal libheimntlm0-heimdal libhx509-5-heimdal libirs-export91
  364. libisccfg-export90 libkrb5-26-heimdal libroken18-heimdal libwind0-heimdal
  365. Use 'apt-get autoremove' to remove them.
  366. The following extra packages will be installed:
  367. libfdk-aac0
  368. The following NEW packages will be installed:
  369. libfdk-aac-dev libfdk-aac0
  370. 0 upgraded, 2 newly installed, 0 to remove and 8 not upgraded.
  371. Need to get 324 kB of archives.
  372. After this operation, 718 kB of additional disk space will be used.
  373. Do you want to continue? [Y/n] y
  374. Get:1 http://http.debian.net/debian/ jessie/non-free libfdk-aac0 armhf 0.1.3+20140816-2 [286 kB]
  375. Get:2 http://http.debian.net/debian/ jessie/non-free libfdk-aac-dev armhf 0.1.3+20140816-2 [38.0 kB]
  376. Fetched 324 kB in 5s (59.2 kB/s)
  377. perl: warning: Setting locale failed.
  378. perl: warning: Please check that your locale settings:
  379. LANGUAGE = (unset),
  380. LC_ALL = (unset),
  381. LC_TIME = "nl_NL.UTF-8",
  382. LC_MONETARY = "nl_NL.UTF-8",
  383. LC_ADDRESS = "nl_NL.UTF-8",
  384. LC_TELEPHONE = "nl_NL.UTF-8",
  385. LC_NAME = "nl_NL.UTF-8",
  386. LC_MEASUREMENT = "nl_NL.UTF-8",
  387. LC_IDENTIFICATION = "nl_NL.UTF-8",
  388. LC_NUMERIC = "nl_NL.UTF-8",
  389. LC_PAPER = "nl_NL.UTF-8",
  390. LANG = "C.UTF-8"
  391. are supported and installed on your system.
  392. perl: warning: Falling back to a fallback locale ("C.UTF-8").
  393. locale: Cannot set LC_ALL to default locale: No such file or directory
  394. debconf: delaying package configuration, since apt-utils is not installed
  395. Selecting previously unselected package libfdk-aac0:armhf.
  396. (Reading database ... 231910 files and directories currently installed.)
  397. Preparing to unpack .../libfdk-aac0_0.1.3+20140816-2_armhf.deb ...
  398. Unpacking libfdk-aac0:armhf (0.1.3+20140816-2) ...
  399. Selecting previously unselected package libfdk-aac-dev:armhf.
  400. Preparing to unpack .../libfdk-aac-dev_0.1.3+20140816-2_armhf.deb ...
  401. Unpacking libfdk-aac-dev:armhf (0.1.3+20140816-2) ...
  402. Setting up libfdk-aac0:armhf (0.1.3+20140816-2) ...
  403. Setting up libfdk-aac-dev:armhf (0.1.3+20140816-2) ...
  404. Processing triggers for libc-bin (2.19-18+deb8u6) ...
  405. rock@rabian-rock:~$ macplay http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts
  406. + SOCKIN=50505
  407. + SOCKOUT=60606
  408. + echo '<br>'
  409. <br>
  410. + '[' -z http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts ']'
  411. + '[' 66 = 1 ']'
  412. + echo '/usr/local/sbin/macplay: play '\''http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts'\'' <br>'
  413. /usr/local/sbin/macplay: play 'http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts' <br>
  414. ++ ps -ef
  415. ++ grep macplayer
  416. ++ wc -l
  417. + '[' 1 = 1 ']'
  418. + sudo pkill -9 macplayer
  419. + sudo pkill -9 surfaceflinger
  420. + FILE=http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts
  421. + BIN=/usr/local/bin/macplayer
  422. + screen -d -m sudo su -c 'macplay_socket 50505 60606 '\''http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/0640/06401.ts'\'''
  423. + export DISPLAY=:0.0
  424. + DISPLAY=:0.0
  425. + xrefresh
  426. rock@rabian-rock:~$ macplayer
  427. machybrisegl: VT_ACTIVATE: Operation not permitted
  428. machybrisegl: chvt(10) failed!
  429. I(0x421d9340): setSchedulingParams:809 thead(0x421d9340): policy FIFO, prio 99 [1-99]
  430. Creating EGL surface.
  431. machybrisegl: VT_ACTIVATE: Operation not permitted
  432. machybrisegl: chvt(7) failed!
  433. chvt: VT_ACTIVATE: Operation not permitted
  434. /bin/sh: 1: cannot create /sys/class/display/display0.HDMI/enable: Permission denied
  435. /bin/sh: 1: cannot create /sys/class/display/display0.HDMI/enable: Permission denied
  436. rock@rabian-rock:~$ sudo su
  437. root@rabian-rock:/home/rock# env
  438. LC_PAPER=nl_NL.UTF-8
  439. XDG_SESSION_ID=c3
  440. LC_ADDRESS=nl_NL.UTF-8
  441. LC_MONETARY=nl_NL.UTF-8
  442. SHELL=/bin/bash
  443. TERM=xterm
  444. LC_NUMERIC=nl_NL.UTF-8
  445. USER=root
  446. LC_TELEPHONE=nl_NL.UTF-8
  447. SUDO_USER=rock
  448. SUDO_UID=1000
  449. USERNAME=root
  450. MAIL=/var/mail/root
  451. PATH=/usr/local/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
  452. LC_IDENTIFICATION=nl_NL.UTF-8
  453. PWD=/home/rock
  454. LANG=C.UTF-8
  455. LC_MEASUREMENT=nl_NL.UTF-8
  456. EGL_PLATFORM=surfaceflinger
  457. SHLVL=1
  458. SUDO_COMMAND=/bin/su
  459. HOME=/root
  460. LOGNAME=root
  461. SUDO_GID=1001
  462. DISPLAY=localhost:11.0
  463. LC_TIME=nl_NL.UTF-8
  464. LC_NAME=nl_NL.UTF-8
  465. _=/usr/bin/env
  466. root@rabian-rock:/home/rock# macplayer
  467. machybrisegl: chvt(10) succeeded!
  468. machybrisegl: start_surfaceflinger() succeeded!
  469. I(0x422e8000): setSchedulingParams:809 thead(0x422e8000): policy FIFO, prio 99 [1-99]
  470. Creating EGL surface.
  471. Primary display width: 1280.000000, height: 720.000000
  472. Creating GL texture.
  473. I(0x422e8000): setupGraphics2:643 windowWidth=1280
  474. I(0x422e8000): setupGraphics2:644 windowHeight=720
  475. I(0x48b05390): run:886 StdinThread START
  476. I(0x49305390): run:872 DecoderThread START
  477. I(0x49305390): printSchedulingParams:823 thead(0x49305390): policy FIFO, prio 99 [0-0]
  478. ffplay version 3.2-macplayer-3.2 Copyright (c) 2003-2016 the FFmpeg developers
  479. built with gcc 4.9.2 (Debian 4.9.2-10)
  480. configuration: --prefix=/home/rock/macplayer/ffmpeg/ffmpeg-install --extra-version=macplayer-3.2 --pkg-config-flags=--static --enable-ffplay --disable-ffmpeg --disable-ffprobe --disable-ffserver --disable-doc --enable-gpl --enable-runtime-cpudetect --enable-muxer=all --enable-demuxer=all --enable-encoder=all --enable-decoder=all --enable-protocol=all --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-nonfree --disable-shared --enable-static --enable-pthreads
  481. libavutil 55. 34.100 / 55. 34.100
  482. libavcodec 57. 64.100 / 57. 64.100
  483. libavformat 57. 56.100 / 57. 56.100
  484. libavdevice 57. 1.100 / 57. 1.100
  485. libswscale 4. 2.100 / 4. 2.100
  486. libswresample 2. 3.100 / 2. 3.100
  487. libpostproc 54. 1.100 / 54. 1.100
  488. Simple media player
  489. usage: ffplay [options] input_file
  490.  
  491. An input file must be specified
  492. Use -h to get full help or, even better, run 'man ffplay'
  493. machybrisegl: stop_surfaceflinger() succeeded!
  494. machybrisegl: chvt(7) succeeded!
  495. root@rabian-rock:/home/rock# macplayer /home/rock/sintel_trailer-1080p.mp4
  496. machybrisegl: chvt(10) succeeded!
  497. machybrisegl: start_surfaceflinger() succeeded!
  498. I(0x4226e000): setSchedulingParams:809 thead(0x4226e000): policy FIFO, prio 99 [1-99]
  499. Creating EGL surface.
  500. Primary display width: 1280.000000, height: 720.000000
  501. Creating GL texture.
  502. I(0x4226e000): setupGraphics2:643 windowWidth=1280
  503. I(0x4226e000): setupGraphics2:644 windowHeight=720
  504. I(0x48915390): run:886 StdinThread START
  505. I(0x492ff390): run:872 DecoderThread START
  506. I(0x492ff390): printSchedulingParams:823 thead(0x492ff390): policy FIFO, prio 99 [0-0]
  507. ffplay version 3.2-macplayer-3.2 Copyright (c) 2003-2016 the FFmpeg developers
  508. built with gcc 4.9.2 (Debian 4.9.2-10)
  509. configuration: --prefix=/home/rock/macplayer/ffmpeg/ffmpeg-install --extra-version=macplayer-3.2 --pkg-config-flags=--static --enable-ffplay --disable-ffmpeg --disable-ffprobe --disable-ffserver --disable-doc --enable-gpl --enable-runtime-cpudetect --enable-muxer=all --enable-demuxer=all --enable-encoder=all --enable-decoder=all --enable-protocol=all --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-nonfree --disable-shared --enable-static --enable-pthreads
  510. libavutil 55. 34.100 / 55. 34.100
  511. libavcodec 57. 64.100 / 57. 64.100
  512. libavformat 57. 56.100 / 57. 56.100
  513. libavdevice 57. 1.100 / 57. 1.100
  514. libswscale 4. 2.100 / 4. 2.100
  515. libswresample 2. 3.100 / 2. 3.100
  516. libpostproc 54. 1.100 / 54. 1.100
  517. X11 connection rejected because of wrong authentication.
  518. xcb_connection_has_error() returned true
  519. I(0x4a805390): setSchedulingParams:809 thead(0x4a805390): policy FIFO, prio 80 [1-99]
  520. Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/home/rock/sintel_trailer-1080p.mp4':
  521. Metadata:
  522. major_brand : isom
  523. minor_version : 512
  524. compatible_brands: isomiso2avc1mp41
  525. creation_time : 1970-01-01T00:00:00.000000Z
  526. title : Sintel Trailer
  527. artist : Durian Open Movie Team
  528. encoder : Lavf52.62.0
  529. copyright : (c) copyright Blender Foundation | durian.blender.org
  530. description : Trailer for the Sintel open movie project
  531. Duration: 00:00:52.21, start: 0.000000, bitrate: 2240 kb/s
  532. Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1920x1080, 2108 kb/s, 24 fps, 24 tbr, 24 tbn, 48 tbc (default)
  533. Metadata:
  534. creation_time : 1970-01-01T00:00:00.000000Z
  535. handler_name : VideoHandler
  536. Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 126 kb/s (default)
  537. Metadata:
  538. creation_time : 1970-01-01T00:00:00.000000Z
  539. handler_name : SoundHandler
  540. X11 connection rejected because of wrong authentication.
  541. xcb_connection_has_error() returned true
  542. I(0x4ba7b390): setSchedulingParams:809 thead(0x4ba7b390): policy FIFO, prio 70 [1-99]
  543. D(0x4a805390): Open:308 CDVDVideoCodecHybris::Open - trying to open, codec(28), profile(0), level(1251204464)
  544. I(0x4b1ff390): setSchedulingParams:809 thead(0x4b1ff390): policy FIFO, prio 90 [1-99]
  545. I(0x4226e000): InitSurfaceTexture:1014 CDVDVideoCodecHybris::InitSurfaceTexture::1014 - m_textureId = 1
  546. I(0x4226e000): InitSurfaceTexture:1020 CDVDVideoCodecHybris::InitSurfaceTexture::1020 - decoding_session = 12a95c8
  547. I(0x4226e000): InitSurfaceTexture:1024 CDVDVideoCodecHybris::InitSurfaceTexture::1024 - igbc_wrapper = 12a8d78
  548. I(0x4226e000): InitSurfaceTexture:1027 CDVDVideoCodecHybris::InitSurfaceTexture::1027 - m_surfaceTexture = 12a8f08
  549. I(0x4226e000): InitSurfaceTexture:1030 CDVDVideoCodecHybris::InitSurfaceTexture::1030 - m_frameAvailable = 12a96c0
  550. I(0x4226e000): InitSurfaceTexture:1032 CDVDVideoCodecHybris::InitSurfaceTexture::1032 - igbp = 12a9648
  551. I(0x4226e000): InitSurfaceTexture:1034 CDVDVideoCodecHybris::InitSurfaceTexture::1034 - m_surface = 1284310
  552. I(0x4226e000): handleMessage:932 VIDEO_RESIZED (1920x1080)!!!
  553. I(0x513c1390): setSchedulingParams:809 thead(0x513c1390): policy FIFO, prio 50 [1-99]
  554. ALSA lib pcm.c:7843:(snd_pcm_recover) underrun occurred
  555. I(0x513c1390): OutputFormatChanged:883 CDVDVideoCodecHybris:: width(1920), height(1080), stride(1920), slice-height(1080), color-format(1)
  556. I(0x513c1390): OutputFormatChanged:886 CDVDVideoCodecHybris:: crop-left(0), crop-top(0), crop-right(0), crop-bottom(0)
  557. I(0x513c1390): OutputFormatChanged:889 CDVDVideoCodecHybris:: Direct Surface Rendering
  558. I(0x4226e000): handleMessage:932 VIDEO_RESIZED (1920x1080)!!!
  559. ALSA lib pcm.c:7843:(snd_pcm_recover) underrun occurred 0B f=0/0
  560. machybrisegl: stop_surfaceflinger() succeeded!0KB sq= 0B f=0/0
  561. machybrisegl: chvt(7) succeeded!
  562. root@rabian-rock:/home/rock# exit512KB vq= 5801KB sq= 0B f=0/0
  563. exit
  564. rock@rabian-rock:~$ sudo apt-get install apache2
  565. Reading package lists... Done
  566. Building dependency tree
  567. Reading state information... Done
  568. The following packages were automatically installed and are no longer required:
  569. libasn1-8-heimdal libgssapi3-heimdal libhcrypto4-heimdal
  570. libheimbase1-heimdal libheimntlm0-heimdal libhx509-5-heimdal libirs-export91
  571. libisccfg-export90 libkrb5-26-heimdal libroken18-heimdal libwind0-heimdal
  572. Use 'apt-get autoremove' to remove them.
  573. The following extra packages will be installed:
  574. apache2-data apache2-utils ssl-cert
  575. Suggested packages:
  576. apache2-doc apache2-suexec-pristine apache2-suexec-custom openssl-blacklist
  577. The following NEW packages will be installed:
  578. apache2 apache2-data apache2-utils ssl-cert
  579. 0 upgraded, 4 newly installed, 0 to remove and 8 not upgraded.
  580. Need to get 586 kB of archives.
  581. After this operation, 1500 kB of additional disk space will be used.
  582. Do you want to continue? [Y/n] y
  583. Get:1 http://http.debian.net/debian/ jessie/main apache2-utils armhf 2.4.10-10+deb8u7 [196 kB]
  584. Get:2 http://http.debian.net/debian/ jessie/main apache2-data all 2.4.10-10+deb8u7 [163 kB]
  585. Get:3 http://http.debian.net/debian/ jessie/main apache2 armhf 2.4.10-10+deb8u7 [207 kB]
  586. Get:4 http://http.debian.net/debian/ jessie/main ssl-cert all 1.0.35 [20.9 kB]
  587. Fetched 586 kB in 12s (47.8 kB/s)
  588. perl: warning: Setting locale failed.
  589. perl: warning: Please check that your locale settings:
  590. LANGUAGE = (unset),
  591. LC_ALL = (unset),
  592. LC_TIME = "nl_NL.UTF-8",
  593. LC_MONETARY = "nl_NL.UTF-8",
  594. LC_ADDRESS = "nl_NL.UTF-8",
  595. LC_TELEPHONE = "nl_NL.UTF-8",
  596. LC_NAME = "nl_NL.UTF-8",
  597. LC_MEASUREMENT = "nl_NL.UTF-8",
  598. LC_IDENTIFICATION = "nl_NL.UTF-8",
  599. LC_NUMERIC = "nl_NL.UTF-8",
  600. LC_PAPER = "nl_NL.UTF-8",
  601. LANG = "C.UTF-8"
  602. are supported and installed on your system.
  603. perl: warning: Falling back to a fallback locale ("C.UTF-8").
  604. locale: Cannot set LC_ALL to default locale: No such file or directory
  605. debconf: delaying package configuration, since apt-utils is not installed
  606. Selecting previously unselected package apache2-utils.
  607. (Reading database ... 231928 files and directories currently installed.)
  608. Preparing to unpack .../apache2-utils_2.4.10-10+deb8u7_armhf.deb ...
  609. Unpacking apache2-utils (2.4.10-10+deb8u7) ...
  610. Selecting previously unselected package apache2-data.
  611. Preparing to unpack .../apache2-data_2.4.10-10+deb8u7_all.deb ...
  612. Unpacking apache2-data (2.4.10-10+deb8u7) ...
  613. Selecting previously unselected package apache2.
  614. Preparing to unpack .../apache2_2.4.10-10+deb8u7_armhf.deb ...
  615. Unpacking apache2 (2.4.10-10+deb8u7) ...
  616. Selecting previously unselected package ssl-cert.
  617. Preparing to unpack .../ssl-cert_1.0.35_all.deb ...
  618. Unpacking ssl-cert (1.0.35) ...
  619. Processing triggers for man-db (2.7.0.2-5) ...
  620. Processing triggers for systemd (215-17+deb8u5) ...
  621. Setting up apache2-utils (2.4.10-10+deb8u7) ...
  622. Setting up apache2-data (2.4.10-10+deb8u7) ...
  623. Setting up apache2 (2.4.10-10+deb8u7) ...
  624. Enabling module mpm_event.
  625. Enabling module authz_core.
  626. Enabling module authz_host.
  627. Enabling module authn_core.
  628. Enabling module auth_basic.
  629. Enabling module access_compat.
  630. Enabling module authn_file.
  631. Enabling module authz_user.
  632. Enabling module alias.
  633. Enabling module dir.
  634. Enabling module autoindex.
  635. Enabling module env.
  636. Enabling module mime.
  637. Enabling module negotiation.
  638. Enabling module setenvif.
  639. Enabling module filter.
  640. Enabling module deflate.
  641. Enabling module status.
  642. Enabling conf charset.
  643. Enabling conf localized-error-pages.
  644. Enabling conf other-vhosts-access-log.
  645. Enabling conf security.
  646. Enabling conf serve-cgi-bin.
  647. Enabling site 000-default.
  648. Setting up ssl-cert (1.0.35) ...
  649. locale: Cannot set LC_ALL to default locale: No such file or directory
  650. Processing triggers for systemd (215-17+deb8u5) ...
  651. rock@rabian-rock:~$ sudo a2dismod mpm_event
  652. perl: warning: Setting locale failed.
  653. perl: warning: Please check that your locale settings:
  654. LANGUAGE = (unset),
  655. LC_ALL = (unset),
  656. LC_PAPER = "nl_NL.UTF-8",
  657. LC_ADDRESS = "nl_NL.UTF-8",
  658. LC_MONETARY = "nl_NL.UTF-8",
  659. LC_NUMERIC = "nl_NL.UTF-8",
  660. LC_TELEPHONE = "nl_NL.UTF-8",
  661. LC_IDENTIFICATION = "nl_NL.UTF-8",
  662. LC_MEASUREMENT = "nl_NL.UTF-8",
  663. LC_TIME = "nl_NL.UTF-8",
  664. LC_NAME = "nl_NL.UTF-8",
  665. LANG = "C.UTF-8"
  666. are supported and installed on your system.
  667. perl: warning: Falling back to a fallback locale ("C.UTF-8").
  668. Module mpm_event disabled.
  669. To activate the new configuration, you need to run:
  670. service apache2 restart
  671. rock@rabian-rock:~$ sudo service apache2 restart
  672. Job for apache2.service failed. See 'systemctl status apache2.service' and 'journalctl -xn' for details.
  673. rock@rabian-rock:~$ sudo a2enmod mpm_prefork
  674. perl: warning: Setting locale failed.
  675. perl: warning: Please check that your locale settings:
  676. LANGUAGE = (unset),
  677. LC_ALL = (unset),
  678. LC_PAPER = "nl_NL.UTF-8",
  679. LC_ADDRESS = "nl_NL.UTF-8",
  680. LC_MONETARY = "nl_NL.UTF-8",
  681. LC_NUMERIC = "nl_NL.UTF-8",
  682. LC_TELEPHONE = "nl_NL.UTF-8",
  683. LC_IDENTIFICATION = "nl_NL.UTF-8",
  684. LC_MEASUREMENT = "nl_NL.UTF-8",
  685. LC_TIME = "nl_NL.UTF-8",
  686. LC_NAME = "nl_NL.UTF-8",
  687. LANG = "C.UTF-8"
  688. are supported and installed on your system.
  689. perl: warning: Falling back to a fallback locale ("C.UTF-8").
  690. Considering conflict mpm_event for mpm_prefork:
  691. Considering conflict mpm_worker for mpm_prefork:
  692. Enabling module mpm_prefork.
  693. To activate the new configuration, you need to run:
  694. service apache2 restart
  695. rock@rabian-rock:~$ sudo service apache2 restart
  696. rock@rabian-rock:~$ sudo systemctl restart apache2
  697. rock@rabian-rock:~$ sudo a2enmod cgi
  698. perl: warning: Setting locale failed.
  699. perl: warning: Please check that your locale settings:
  700. LANGUAGE = (unset),
  701. LC_ALL = (unset),
  702. LC_PAPER = "nl_NL.UTF-8",
  703. LC_ADDRESS = "nl_NL.UTF-8",
  704. LC_MONETARY = "nl_NL.UTF-8",
  705. LC_NUMERIC = "nl_NL.UTF-8",
  706. LC_TELEPHONE = "nl_NL.UTF-8",
  707. LC_IDENTIFICATION = "nl_NL.UTF-8",
  708. LC_MEASUREMENT = "nl_NL.UTF-8",
  709. LC_TIME = "nl_NL.UTF-8",
  710. LC_NAME = "nl_NL.UTF-8",
  711. LANG = "C.UTF-8"
  712. are supported and installed on your system.
  713. perl: warning: Falling back to a fallback locale ("C.UTF-8").
  714. AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message
  715. Enabling module cgi.
  716. To activate the new configuration, you need to run:
  717. service apache2 restart
  718. rock@rabian-rock:~$ sudo systemctl restart apache2
  719. rock@rabian-rock:~$ cd tmp/
  720. rock@rabian-rock:~/tmp$ ls
  721. installmacplayer.sh macplay.cgi prepare_upload.sh set720p.sh
  722. logmacplayer macplay_socket sendkeymacplayer
  723. macplay macplayer set1080p.sh
  724. rock@rabian-rock:~/tmp$ bash installmacplayer.sh
  725. + sudo su -p -c 'export NEW_EGLPLATFORM=surfaceflinger; find /etc|xargs grep EGL_PLATFORM 2>/dev/null|cut -f1 -d":"|xargs sed -i -e "s/EGL_PLATFORM=.*/EGL_PLATFORM=${NEW_EGLPLATFORM}/"'
  726. + sudo su -c 'find /etc|xargs grep EGL_PLATFORM 2>/dev/null'
  727. /etc/profile.d/libhybris_path_eglplatform.sh:EGL_PLATFORM=surfaceflinger
  728. /etc/profile.d/libhybris_path_eglplatform.sh:export EGL_PLATFORM
  729. /etc/environment:EGL_PLATFORM=surfaceflinger
  730. /etc/bash.bashrc:EGL_PLATFORM=surfaceflinger
  731. /etc/bash.bashrc:export EGL_PLATFORM
  732. + sudo su -p -c 'export NEW_EGLPLATFORM=surfaceflinger; sed -i -e "s/EGL_PLATFORM_DEFAULT=.*/EGL_PLATFORM_DEFAULT=${NEW_EGLPLATFORM}/" /usr/local/share/libhybris/libhybris.sh'
  733. + sudo su -c 'grep "EGL_PLATFORM_DEFAULT=" /usr/local/share/libhybris/libhybris.sh 2>/dev/null'
  734. EGL_PLATFORM_DEFAULT=surfaceflinger
  735. + chmod a+x installmacplayer.sh logmacplayer macplay macplay.cgi macplay_socket macplayer prepare_upload.sh sendkeymacplayer set1080p.sh set720p.sh
  736. + sudo cp logmacplayer macplay macplay_socket sendkeymacplayer /usr/local/sbin/
  737. + sudo cp macplayer /usr/local/bin/
  738. + sudo cp set1080p.sh set720p.sh /usr/local/sbin/
  739. + sudo cp macplay.cgi /usr/lib/cgi-bin/
  740. rock@rabian-rock:~/tmp$ ls /home/rock/sintel_trailer-1080p.mp4
  741. /home/rock/sintel_trailer-1080p.mp4
  742. rock@rabian-rock:~/tmp$ sudo vi /etc/sudoers
  743. rock@rabian-rock:~/tmp$ sudo su
  744. root@rabian-rock:/home/rock/tmp# vi /etc/sudoers
  745. root@rabian-rock:/home/rock/tmp# sudo usermod -aG sudo www-data
  746. root@rabian-rock:/home/rock/tmp# sudo setcap CAP_SYS_ADMIN+ep /usr/local/bin/macplayer
  747. root@rabian-rock:/home/rock/tmp# ls
  748. installmacplayer.sh macplay.cgi prepare_upload.sh set720p.sh
  749. logmacplayer macplay_socket sendkeymacplayer
  750. macplay macplayer set1080p.sh
  751. root@rabian-rock:/home/rock/tmp# reboot
  752. Connection to rabian-rock closed by remote host.
  753. Connection to rabian-rock closed.
  754. marc@marc-laptop-2:~$ _rabian-rock
  755. Warning: the RSA host key for 'rabian-rock' differs from the key for the IP address '192.168.123.30'
  756. Offending key for IP in /home/marc/.ssh/known_hosts:54
  757. Matching host key in /home/marc/.ssh/known_hosts:15
  758. Are you sure you want to continue connecting (yes/no)? yes
  759. rock@rabian-rock's password:
  760.  
  761. The programs included with the Debian GNU/Linux system are free software;
  762. the exact distribution terms for each program are described in the
  763. individual files in /usr/share/doc/*/copyright.
  764.  
  765. Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
  766. permitted by applicable law.
  767. Last login: Wed Feb 15 05:18:37 2017 from marc-laptop-2
  768. rock@rabian-rock:~$ macplay "http://www.video-unified.com/4K/Transformer/Transformer.ayk/Transformer.m3u8?debit_max=8000000&debut=1&fin=30"
  769. + SOCKIN=50505
  770. + SOCKOUT=60606
  771. + echo '<br>'
  772. <br>
  773. + '[' -z 'http://www.video-unified.com/4K/Transformer/Transformer.ayk/Transformer.m3u8?debit_max=8000000&debut=1&fin=30' ']'
  774. + '[' 109 = 1 ']'
  775. + echo '/usr/local/sbin/macplay: play '\''http://www.video-unified.com/4K/Transformer/Transformer.ayk/Transformer.m3u8?debit_max=8000000&debut=1&fin=30'\'' <br>'
  776. /usr/local/sbin/macplay: play 'http://www.video-unified.com/4K/Transformer/Transformer.ayk/Transformer.m3u8?debit_max=8000000&debut=1&fin=30' <br>
  777. ++ ps -ef
  778. ++ grep macplayer
  779. ++ wc -l
  780. + '[' 1 = 1 ']'
  781. + sudo pkill -9 macplayer
  782. + sudo pkill -9 surfaceflinger
  783. + FILE='http://www.video-unified.com/4K/Transformer/Transformer.ayk/Transformer.m3u8?debit_max=8000000&debut=1&fin=30'
  784. + BIN=/usr/local/bin/macplayer
  785. + screen -d -m sudo su -c 'macplay_socket 50505 60606 '\''http://www.video-unified.com/4K/Transformer/Transformer.ayk/Transformer.m3u8?debit_max=8000000&debut=1&fin=30'\'''
  786. + export DISPLAY=:0.0
  787. + DISPLAY=:0.0
  788. + xrefresh
  789. rock@rabian-rock:~$ sudo su
  790. root@rabian-rock:/home/rock# macplay_socket 50505 60606 'http://www.video-unified.com/4K/Transformer/Transformer.ayk/Transformer.m3u8?debit_max=8000000&debut=1&fin=30'
  791. + socat -T1 - udp4-listen:50505,reuseaddr,fork
  792. /usr/local/sbin/macplay_socket: line 4: socat: command not found
  793. + macplayer 'http://www.video-unified.com/4K/Transformer/Transformer.ayk/Transformer.m3u8?debit_max=8000000&debut=1&fin=30'
  794. ++ socat - udp-sendto:127.0.0.1:60606
  795. /usr/local/sbin/macplay_socket: line 4: socat: command not found
  796. ++ ps -ef
  797. ++ grep 50505
  798. ++ awk '{print $2}'
  799. ++ xargs kill -9
  800. Killed
  801. root@rabian-rock:/home/rock# sudo apt-get install socat
  802. Reading package lists... Done
  803. Building dependency tree
  804. Reading state information... Done
  805. The following packages were automatically installed and are no longer required:
  806. libasn1-8-heimdal libgssapi3-heimdal libhcrypto4-heimdal
  807. libheimbase1-heimdal libheimntlm0-heimdal libhx509-5-heimdal libirs-export91
  808. libisccfg-export90 libkrb5-26-heimdal libroken18-heimdal libwind0-heimdal
  809. Use 'apt-get autoremove' to remove them.
  810. The following NEW packages will be installed:
  811. socat
  812. 0 upgraded, 1 newly installed, 0 to remove and 8 not upgraded.
  813. Need to get 314 kB of archives.
  814. After this operation, 796 kB of additional disk space will be used.
  815. Get:1 http://http.debian.net/debian/ jessie/main socat armhf 1.7.2.4-2 [314 kB]
  816. Fetched 314 kB in 3s (92.0 kB/s)
  817. perl: warning: Setting locale failed.
  818. perl: warning: Please check that your locale settings:
  819. LANGUAGE = (unset),
  820. LC_ALL = (unset),
  821. LC_TIME = "nl_NL.UTF-8",
  822. LC_MONETARY = "nl_NL.UTF-8",
  823. LC_ADDRESS = "nl_NL.UTF-8",
  824. LC_TELEPHONE = "nl_NL.UTF-8",
  825. LC_NAME = "nl_NL.UTF-8",
  826. LC_MEASUREMENT = "nl_NL.UTF-8",
  827. LC_IDENTIFICATION = "nl_NL.UTF-8",
  828. LC_NUMERIC = "nl_NL.UTF-8",
  829. LC_PAPER = "nl_NL.UTF-8",
  830. LANG = "C.UTF-8"
  831. are supported and installed on your system.
  832. perl: warning: Falling back to a fallback locale ("C.UTF-8").
  833. locale: Cannot set LC_ALL to default locale: No such file or directory
  834. debconf: delaying package configuration, since apt-utils is not installed
  835. Selecting previously unselected package socat.
  836. (Reading database ... 232455 files and directories currently installed.)
  837. Preparing to unpack .../socat_1.7.2.4-2_armhf.deb ...
  838. Unpacking socat (1.7.2.4-2) ...
  839. Processing triggers for man-db (2.7.0.2-5) ...
  840. Setting up socat (1.7.2.4-2) ...
  841. root@rabian-rock:/home/rock# macplay_socket 50505 60606 'http://www.video-unified.com/4K/Transformer/Transformer.ayk/Transformer.m3u8?debit_max=8000000&debut=1&fin=30'
  842. + socat -T1 - udp4-listen:50505,reuseaddr,fork
  843. + macplayer 'http://www.video-unified.com/4K/Transformer/Transformer.ayk/Transformer.m3u8?debit_max=8000000&debut=1&fin=30'
  844. ++ socat - udp-sendto:127.0.0.1:60606
  845. X11 connection rejected because of wrong authentication.
  846. ^C++ grep 50505
  847. ++ xargs kill -9
  848. ++ ps -ef
  849. ++ awk '{print $2}'
  850. Killed
  851. root@rabian-rock:/home/rock# exit
  852. exit
  853. rock@rabian-rock:~$ ps -ef
  854. UID PID PPID C STIME TTY TIME CMD
  855. root 1 0 1 05:39 ? 00:00:02 /sbin/init
  856. root 2 0 0 05:39 ? 00:00:00 [kthreadd]
  857. root 3 2 0 05:39 ? 00:00:00 [ksoftirqd/0]
  858. root 4 2 0 05:39 ? 00:00:00 [kworker/0:0]
  859. root 5 2 0 05:39 ? 00:00:00 [kworker/u:0]
  860. root 6 2 0 05:39 ? 00:00:00 [migration/0]
  861. root 7 2 0 05:39 ? 00:00:00 [migration/1]
  862. root 8 2 0 05:39 ? 00:00:00 [kworker/1:0]
  863. root 9 2 0 05:39 ? 00:00:00 [ksoftirqd/1]
  864. root 10 2 0 05:39 ? 00:00:00 [migration/2]
  865. root 11 2 0 05:39 ? 00:00:00 [kworker/2:0]
  866. root 12 2 0 05:39 ? 00:00:00 [ksoftirqd/2]
  867. root 13 2 0 05:39 ? 00:00:00 [migration/3]
  868. root 14 2 0 05:39 ? 00:00:00 [kworker/3:0]
  869. root 15 2 0 05:39 ? 00:00:00 [ksoftirqd/3]
  870. root 16 2 0 05:39 ? 00:00:00 [khelper]
  871. root 17 2 0 05:39 ? 00:00:00 [suspend_sys_syn]
  872. root 18 2 0 05:39 ? 00:00:00 [suspend]
  873. root 19 2 1 05:39 ? 00:00:04 [kconsole]
  874. root 20 2 0 05:39 ? 00:00:00 [sync_supers]
  875. root 21 2 0 05:39 ? 00:00:00 [bdi-default]
  876. root 22 2 0 05:39 ? 00:00:00 [kblockd]
  877. root 23 2 0 05:39 ? 00:00:00 [khubd]
  878. root 24 2 0 05:39 ? 00:00:00 [irq/58-rk30-adc]
  879. root 25 2 0 05:39 ? 00:00:00 [kworker/0:1]
  880. root 26 2 0 05:39 ? 00:00:00 [cfg80211]
  881. root 27 2 0 05:39 ? 00:00:00 [fb-vsync]
  882. root 28 2 0 05:39 ? 00:00:00 [fb-vsync]
  883. root 29 2 0 05:39 ? 00:00:00 [hdmi-it66121]
  884. root 30 2 0 05:39 ? 00:00:01 [kworker/u:1]
  885. root 31 2 0 05:39 ? 00:00:00 [it66121 irq]
  886. root 32 2 0 05:39 ? 00:00:00 [cfinteractive]
  887. root 33 2 0 05:39 ? 00:00:00 [kworker/u:2]
  888. root 34 2 0 05:39 ? 00:00:00 [rk3188_cpufreqd]
  889. root 35 2 0 05:39 ? 00:00:00 [irq/42-vdpu]
  890. root 36 2 0 05:39 ? 00:00:00 [irq/41-vepu]
  891. root 37 2 0 05:39 ? 00:00:00 [kswapd0]
  892. root 38 2 0 05:39 ? 00:00:00 [ksmd]
  893. root 39 2 0 05:39 ? 00:00:00 [fsnotify_mark]
  894. root 40 2 0 05:39 ? 00:00:00 [crypto]
  895. root 54 2 0 05:39 ? 00:00:00 [irq/95-rga]
  896. root 61 2 0 05:39 ? 00:00:00 [f_mtp]
  897. root 62 2 0 05:39 ? 00:00:00 [file-storage]
  898. root 63 2 0 05:39 ? 00:00:00 [irq/173-rtc_hym]
  899. root 64 2 0 05:39 ? 00:00:00 [binder]
  900. root 65 2 0 05:39 ? 00:00:00 [krfcommd]
  901. root 66 2 0 05:39 ? 00:00:00 [ddrtestd]
  902. root 67 2 0 05:39 ? 00:00:00 [ddrfreqd]
  903. root 74 2 0 05:39 ? 00:00:00 [kworker/2:1]
  904. root 75 2 0 05:39 ? 00:00:00 [rknand_buffer]
  905. root 76 2 0 05:39 ? 00:00:00 [rk_ftl_gc]
  906. root 77 2 0 05:39 ? 00:00:00 [mtdblock0]
  907. root 78 2 0 05:39 ? 00:00:00 [mtdblock1]
  908. root 79 2 0 05:39 ? 00:00:00 [mtdblock2]
  909. root 80 2 0 05:39 ? 00:00:00 [mtdblock3]
  910. root 81 2 2 05:39 ? 00:00:07 [mtdblock4]
  911. root 86 2 0 05:39 ? 00:00:00 [kworker/3:1]
  912. root 126 2 0 05:39 ? 00:00:00 [kworker/1:1]
  913. root 129 2 0 05:39 ? 00:00:00 [jbd2/mtdblock4-]
  914. root 130 2 0 05:39 ? 00:00:00 [ext4-dio-unwrit]
  915. root 131 2 0 05:39 ? 00:00:00 [ax88772a]
  916. root 132 2 0 05:39 ? 00:00:00 [kworker/0:2]
  917. root 149 2 0 05:39 ? 00:00:00 [flush-31:4]
  918. root 150 2 0 05:39 ? 00:00:00 [kauditd]
  919. root 155 1 0 05:39 ? 00:00:01 /lib/systemd/systemd-journald
  920. root 156 1 0 05:39 ? 00:00:00 /lib/systemd/systemd-udevd
  921. root 385 1 1 05:39 ? 00:00:02 /usr/sbin/NetworkManager --no-da
  922. root 388 1 0 05:39 ? 00:00:00 /usr/sbin/sshd -D
  923. root 396 1 0 05:39 ? 00:00:00 /usr/sbin/cron -f
  924. root 398 2 0 05:39 ? 00:00:00 [loop0]
  925. root 399 1 0 05:39 ? 00:00:00 /usr/sbin/ModemManager
  926. root 402 2 0 05:39 ? 00:00:00 [ext4-dio-unwrit]
  927. root 418 2 0 05:39 ? 00:00:00 [mali_freq_workq]
  928. root 422 1 0 05:39 ? 00:00:00 /system/bin/servicemanager --sta
  929. root 456 1 0 05:39 ? 00:00:00 /system/bin/mediaserver
  930. root 539 1 0 05:39 ? 00:00:00 /lib/systemd/systemd-logind
  931. ntp 768 1 0 05:39 ? 00:00:00 /usr/sbin/ntpd -p /var/run/ntpd.
  932. avahi 811 1 0 05:39 ? 00:00:00 avahi-daemon: running [rabian-ro
  933. message+ 847 1 0 05:39 ? 00:00:02 /usr/bin/dbus-daemon --system --
  934. Debian-+ 856 1 0 05:39 ? 00:00:00 /usr/sbin/exim4 -bd -q30m
  935. avahi 861 811 0 05:39 ? 00:00:00 avahi-daemon: chroot helper
  936. root 865 1 0 05:39 ? 00:00:00 /usr/sbin/apache2 -k start
  937. www-data 869 865 0 05:39 ? 00:00:00 /usr/sbin/apache2 -k start
  938. www-data 870 865 0 05:39 ? 00:00:00 /usr/sbin/apache2 -k start
  939. www-data 871 865 0 05:39 ? 00:00:00 /usr/sbin/apache2 -k start
  940. www-data 872 865 0 05:39 ? 00:00:00 /usr/sbin/apache2 -k start
  941. www-data 873 865 0 05:39 ? 00:00:00 /usr/sbin/apache2 -k start
  942. root 876 1 0 05:39 ? 00:00:00 /usr/sbin/syslog-ng -F
  943. root 879 2 0 05:39 ? 00:00:00 [ksdioirqd/mmc1]
  944. root 907 1 1 05:40 ? 00:00:02 /usr/lib/policykit-1/polkitd --n
  945. root 915 1 0 05:40 tty1 00:00:00 /sbin/agetty --noclear tty1 linu
  946. root 921 1 0 05:40 ttyFIQ0 00:00:00 /sbin/agetty --keep-baud 115200
  947. root 929 1 0 05:40 ? 00:00:00 /usr/sbin/lightdm
  948. root 930 2 0 05:40 ? 00:00:00 [kworker/0:3]
  949. root 935 929 2 05:40 tty7 00:00:05 /usr/bin/X :0 -seat seat0 -auth
  950. root 939 2 0 05:40 ? 00:00:00 [RTW_XMIT_THREAD]
  951. root 940 2 0 05:40 ? 00:00:01 [RTW_CMD_THREAD]
  952. root 941 2 0 05:40 ? 00:00:00 [RTWHALXT-wlan1]
  953. root 942 2 0 05:40 ? 00:00:00 [RTWHALXT-p2p0]
  954. root 945 929 0 05:40 ? 00:00:00 lightdm --session-child 13 16
  955. root 946 1 0 05:40 ? 00:00:00 /sbin/wpa_supplicant -u -s -O /r
  956. root 953 385 0 05:40 ? 00:00:00 /sbin/dhclient -d -q -sf /usr/li
  957. rock 955 1 0 05:40 ? 00:00:00 /lib/systemd/systemd --user
  958. rock 957 955 0 05:40 ? 00:00:00 (sd-pam)
  959. rock 960 945 0 05:40 ? 00:00:00 x-session-manager
  960. rock 1029 960 0 05:40 ? 00:00:00 /usr/bin/ssh-agent /usr/bin/dbus
  961. rock 1033 1 0 05:40 ? 00:00:00 /usr/bin/dbus-launch --exit-with
  962. rock 1036 1 0 05:40 ? 00:00:00 /usr/bin/dbus-daemon --fork --pr
  963. rock 1040 1 0 05:40 ? 00:00:00 /usr/lib/dconf/dconf-service
  964. rock 1050 1 0 05:40 ? 00:00:00 gnome-keyring-daemon --start
  965. rock 1055 960 0 05:40 ? 00:00:01 /usr/bin/mate-settings-daemon
  966. rock 1057 960 0 05:40 ? 00:00:00 marco
  967. rock 1062 960 0 05:40 ? 00:00:01 mate-panel
  968. rock 1064 1 0 05:40 ? 00:00:00 /usr/lib/gvfs/gvfsd
  969. rock 1085 960 1 05:40 ? 00:00:02 caja
  970. rock 1087 1 0 05:40 ? 00:00:00 /usr/lib/gvfs/gvfs-udisks2-volum
  971. rock 1089 960 0 05:40 ? 00:00:01 /usr/bin/python /usr/bin/blueman
  972. root 1090 1 0 05:40 ? 00:00:00 /usr/lib/udisks2/udisksd --no-de
  973. rock 1092 960 3 05:40 ? 00:00:07 nm-applet
  974. rock 1099 960 0 05:40 ? 00:00:00 /usr/lib/arm-linux-gnueabihf/pol
  975. rock 1105 960 0 05:40 ? 00:00:00 mate-screensaver
  976. rock 1109 960 0 05:40 ? 00:00:00 mate-power-manager
  977. rock 1113 1 0 05:40 ? 00:00:00 /usr/lib/gvfs/gvfs-mtp-volume-mo
  978. rock 1120 1 0 05:40 ? 00:00:00 /usr/lib/gvfs/gvfs-gphoto2-volum
  979. rock 1126 1 0 05:40 ? 00:00:00 /usr/lib/at-spi2-core/at-spi-bus
  980. rock 1134 1 0 05:40 ? 00:00:00 /usr/lib/gvfs/gvfs-goa-volume-mo
  981. rock 1135 1126 0 05:40 ? 00:00:00 /usr/bin/dbus-daemon --config-fi
  982. rock 1138 1 0 05:40 ? 00:00:00 /usr/lib/gvfs/gvfsd-trash --spaw
  983. rock 1140 1 0 05:40 ? 00:00:00 /usr/lib/at-spi2-core/at-spi2-re
  984. rock 1149 1 0 05:40 ? 00:00:00 /usr/lib/gvfs/gvfs-afc-volume-mo
  985. root 1155 1 0 05:40 ? 00:00:00 /usr/lib/upower/upowerd
  986. rock 1159 1 0 05:40 ? 00:00:00 /usr/lib/mate-panel/wnck-applet
  987. rock 1180 1 0 05:40 ? 00:00:00 /usr/lib/mate-panel/clock-applet
  988. rock 1181 1 1 05:40 ? 00:00:02 /usr/lib/mate-panel/notification
  989. rock 1183 1 0 05:40 ? 00:00:00 /usr/lib/arm-linux-gnueabihf/gco
  990. root 1190 2 0 05:40 ? 00:00:00 [kworker/1:2]
  991. root 1195 2 0 05:40 ? 00:00:00 [kworker/2:2]
  992. root 1205 2 0 05:40 ? 00:00:00 [kworker/3:2]
  993. www-data 1227 865 0 05:40 ? 00:00:00 /usr/sbin/apache2 -k start
  994. root 1279 388 0 05:41 ? 00:00:00 sshd: rock [priv]
  995. rock 1281 1279 0 05:41 ? 00:00:00 sshd: rock@pts/0
  996. rock 1282 1281 0 05:41 pts/0 00:00:00 -bash
  997. root 1421 1 1 05:43 ? 00:00:00 /usr/lib/packagekit/packagekitd
  998. www-data 1503 1 0 05:43 ? 00:00:00 SCREEN -d -m sudo su -c macplay_
  999. root 1505 1503 0 05:43 pts/1 00:00:00 sudo su -c macplay_socket 50505
  1000. root 1506 1505 0 05:43 pts/1 00:00:00 su -c macplay_socket 50505 60606
  1001. root 1507 1 1 05:43 ? 00:00:00 /lib/systemd/systemd --user
  1002. root 1508 1507 0 05:43 ? 00:00:00 (sd-pam)
  1003. root 1510 1506 0 05:43 ? 00:00:00 /bin/bash /usr/local/sbin/macpla
  1004. root 1511 1510 0 05:43 ? 00:00:00 socat -T1 - udp4-listen:50505,re
  1005. root 1512 1510 16 05:43 ? 00:00:00 macplayer http://www.video-unifi
  1006. root 1513 1510 0 05:43 ? 00:00:00 /bin/bash /usr/local/sbin/macpla
  1007. root 1514 1513 0 05:43 ? 00:00:00 /bin/bash /usr/local/sbin/macpla
  1008. root 1515 1514 1 05:43 ? 00:00:00 socat - udp-sendto:127.0.0.1:606
  1009. root 1519 1 3 05:43 ? 00:00:00 /system/bin/surfaceflinger
  1010. rock 1558 1282 0 05:43 pts/0 00:00:00 ps -ef
  1011. rock@rabian-rock:~$
  1012. rock@rabian-rock:~$
  1013. rock@rabian-rock:~$ sudo reboot
  1014. Connection to rabian-rock closed by remote host.
  1015. Connection to rabian-rock closed.
  1016. marc@marc-laptop-2:~$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement