-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bash_history
2000 lines (1999 loc) · 31.4 KB
/
.bash_history
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
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
sudo kill 12221
ps -e | grep vlc
ps -e | grep bansh
banshee --play The_Good_Life_Chill_2015.mp3
banshee --play The_Good_Life_Chill_2015.mp3 2>&1
mpg321 The_Good_Life_Chill_2015.mp3
mpg321 The_Good_Life_Chill_2015.mp3 &
kill %1
ps -e | grep vlc
kill 15115
sudokill 15115
sudo kill 15115
ps -e | grep vlc
sudo kill 15129
ps -e | grep mpg
kill 15161
ps -e | grep vlc
sudo -u achille cvlc The_Good_Life_Chill_2015.mp3
sudo -u root cvlc The_Good_Life_Chill_2015.mp3
sudo -u pi cvlc The_Good_Life_Chill_2015.mp3
ps -e | grep vlc
sudo kill 15201
ps -e | grep vlc
ps -e | grep mplayer
ls
cd ..
ls
php -f index.php
cp index.php /music
ls
sudo cp index.php /music
cd music
ls
cd ..
ls
sudo cp index.php ./music
cd music
ls
php -f index.php
php -s 0.0.0.0:8000 index.php
ifconfig
php -S 0.0.0.0:8000 index.php
php -f index.php
sudo /etc/init.d/lightdm stop
touch apache_rem
ls
rm apache_rem
ls
service apache2 start
service lighttpd stop
sudo service lighttpd stop
service apache2 start
sudo service apache2 start
sudo nano /etc/apache2/apache2.conf
sudo service apache2 restart
ps -e | grep mplayer
kill 15608
sudo kill 15608
sudo adduser achille www-data
sudo service apache2 restart
sudo service apache2 stop
ls
cd ...
cd ..
ls
sudo php -S 0.0.0.0:80
sudo php -S 0.0.0.0:80 &
l
ls
sudo php -S 0.0.0.0:80 &
jobs
kill %1
jobs
sudo php -S 0.0.0.0:80 &
jobs
kill %1
sudo kill %1
kill %1
jobs
kill %1
root
su
jobs
sudo kill %1
ps -e | grep php
sudo kill 15758
sudo php -S 0.0.0.0:80 &
jobs
aptitude
sudo apt-get install php5
sudo apt-get install libapache2-mod-php5
ls
nano index.html
ls
cp index.html indextest.html
nano indextest.html
nano index.html
apt-get install php5 libapache2-mod-php5
sudo apt-get install php5 libapache2-mod-php5
ls
mv index.html index.php
ls
rm index.php
ls
mv indextest.html index.php
nano index.php
exit
sudo php -S 0.0.0.0:80
exit
cd /var/log/lighttpd/
sudo cd /var/log/lighttpd/
ls
chmod 777 music
cd music
ls
cd ..
ls
chmod 700 music
ls
ls -a
nano .bashrc
ls
cd ..
ls
chmod 700 mi
chmod 700 pi
ls
chmod 777 pi
ls
cd pi
ls
cd music
ls
cd ..
ls
rm toto
rm -r toto
ls
cd ..
ls
chmod 755 pi
ls
cd pi
ls
s
ls
cd ..
chmod 775 pi
ls
chmod 777 pi
chmod 755 pi
chmod 775 pi
chmod 777 pi
cd pi
ls
rm -r toto
ls
cd ..
ls
chmod 755 pi
ls
cd pi
ls
cd ..
chmod 775 pi
ls
cd pi
ls
cd ..
ls
chmod 777 pi
ls
chmod 700 pi
ls
cd pi
ls
rm -r toto
ls
chmod 777 mucis
chmod 777 music
ls
cd ..
ls
chmod 755 pi
ls
cd pi
ls
cd music
ls
man paplay
apt-get install paplay
sudo apt-get install paplay
sudo apt-get install PulseAudio
sudo apt-get install mpg123
mpg123 The_Good_Life_Chill_2015.mp3
mpg123 The_Good_Life_Chill_2015.mp3 &
jobs
kill %1
play The_Good_Life_Chill_2015.mp3
apt-get install sox
sudo apt-get install sox
play The_Good_Life_Chill_2015.mp3
sudo apt-get install libsox-fmt-mp3
man bison
play The_Good_Life_Chill_2015.mp3
play The_Good_Life_Chill_2015.mp3 ls
ls
rm -r toto
nano sound.sh
ls
./sound.sh
chmod 777 sound.sh
ls
nano sound.sh
ls
./sound.sh
./sound.sh &
sudo apt-get install vlc vlc-plugin-pulse mozilla-plugin-vlc
cvlc The_Good_Life_Chill_2015.mp3
cvlc The_Good_Life_Chill_2015.mp3 &
kill %1
ls
jobs
kill %2
ls
nano sound.sh
jobs
./sound.sh
jobs
ls
rm toto
y
ls
rm -r toto
ls
jobs
nano ./sound.sh
rm -r toto
ls
nano sound.sh
man cvlc
sudo apt-get install mpg321
mpg321 The_Good_Life_Chill_2015.mp3
nano sound.sh
ls
cd ..
ls
sudo php -S 0.0.0.0:80
netstat -a
netstat -a | grep 80
ps -e | grep php
ps -e | grep apache
ps -e | grep lighttpd
sudo service lighttpd stop
sudo service apache2 stop
sudo php -S 0.0.0.0:80
netstat -tulpn
sudo netstat -nlp | grep 80
kill 15762
sudo kill 15762
sudo php -S 0.0.0.0:80
sudo netstat -nlp | grep 80
sudo kill 15763
sudo netstat -nlp | grep 80
sudo php -S 0.0.0.0:80
ls
cd music/
ls
rm index.php
ls
cd ..
ls
nano .bashrc
cd music/
mplayer The_Good_Life_No.3_A_Deep_House_Summer_Mix_2015_vid-mp3.org.mp3
player The_Good_Life_Chill_2015.mp3
mplayer The_Good_Life_Chill_2015.mp3
sudo halt
cd /etc
ls
cd /init.d
ls
nano init.d
sudo nano init.d
su
ls
cd init.d
ls
sudo nano createserver.sh
chmod 755 createserver.sh
sudo chmod 755 createserver.sh
ls
sudo reboot
nano .bashrc
cd /etc/init.d/
ls
nano checkroot.sh
nano apache2
nano createserver.sh
sudo nano createserver.sh
sudo netstat -nlp | grep 80
sudo update-rc.d /etc/init.d/createserver.sh defaults
sudo update-rc.d /createserver.sh defaults
sudo update-rc.d /etc/init.d/createserver.sh defaults
sudo update-rc.d /etc/init.d/cre defaults
sudo update-rc.d /etc/init.d/createserver.sh defaults
sudo update-rc.d createserver.sh defaults
update-rc.d /etc/init.d/createserver.sh defaults
sudo update-rc.d createserver.sh defaults
sudo netstat -nlp | grep 80
ls
cd remember_dir/
ls
nano command_rem
sudo reboot
cd /etc/init.d
ls
nano oldcreateserver.sh
sudo nano oldcreateserver.sh
sudo reboot
mv oldcreateserver.sh createserver.sh
sudo mv oldcreateserver.sh createserver.sh
ls
sudo reboot
sudo php -S 0.0.0.0:80
service apache2 stop
sudo php -S 0.0.0.0:80
service apache2 stop
service lighttpd stop
sudo service lighttpd stop
sudo service apache2 stop
sudo php -S 0.0.0.0:80
cd /etc/init.d
ls
sudo nano oldcreateserver.sh
nano apache2
nano raspi-config
nano mysql
nano networking
sudo nano oldcreateserver.sh
sudo update-rc.d oldcreateserver.sh defaults
sudo reboot
ls
sudo netstat -nlp | grep 80
sudo service apache2 stop
sudo php -S 0.0.0.0:80 &
cd /etc/init.d
ls
jobs
kill %1
sudo netstat -nlp | grep 80
kill 3051
sudo kill 3051
kill 3051
sudo kill 3051
insserv -r createserver.sh
insserv -r oldcreateserver.sh
sudo insserv -r oldcreateserver.sh
mv oldcreateserver.sh createserver.sh
sudo mv oldcreateserver.sh createserver.sh
sudo insserv -r createserver.sh
sudo nano createserver.sh
sudo insserv createserver.sh
man insserv
sudo reboot
cd /etc/init.d
ls
nano apache2
nano skeleton
sudo netstat -nlp | grep 80
cd /etc/init.d
sudo insserv -r lighttpd
sudo reboot
exit
sudo netstat -nlp | grep 80
man curl
sudo curl https://yt-dl.org/downloads/2015.06.25/youtube-dl -o /usr/local/bin/youtube-dl
sudo chmod a+rx /usr/local/bin/youtube-dl
ls
youtube-dl --extract-audio --audio-format mp3 https://www.youtube.com/watch?v=wIyFCW91H0Y
ls
mplayer Mulan\ _Comme\ un\ homme_\ HD-wIyFCW91H0Y.m4a
nano remember_dir/
cd remember_dir/
ls
nano command_rem
sudo halt
ls
cd remember_dir/
ls
nano command_rem
ls
cd ..
ls
ps -e | grep youtu
ls
pwd
ls
youtube-dl --extract-audio --audio-format mp3 https://www.youtube.com/watch?v=qzNMkVKuGws
ls
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
ls
nano ~/.zshrc
exit
ls
nano ~/.zshrc
exit
sudo passwd achille
sudo netstat -nlp | grep 80
ls
rm Mulan\ _Comme\ un\ homme_\ HD-wIyFCW91H0Y.m4a
ls
cd music/
ls
cd ..
ls
sudo nano index.php
ls
man git
git init
git add README.md
git add -A
git reset *
git reset
ls
ls -a
git rm --cached *
rm .git
rm -rf .git
ls
ls -a
nano .pulse
cd .aptitude/
ls
cd cache
nano config
cd ..
ls
git init
nano .gitignore
ls
nano index.php
git add -A
git commit -m "correct a little mistake"
git push -u origin master
ls
nano index.php
ps -e | grep zsh
1
chsh -s /bin/zsh
cd /bin/
ls
cd ..
ls
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
cd
ls -a
cd .oh-my-zsh/
ls
chmod 777 oh-my-zsh.sh
./oh-my-zsh.sh
ls
cd /bin
ls
cd
ls
rm Халк\ крушит.\ Новый\ способ\ исполнения\ пенальти-qzNMkVKuGws.m4a
ls
youtube-dl --extract-audio --audio-format mp3 https://www.youtube.com/watch?v=T-pq3u-Ey5M
sudo apt-get install -y libav-tools
ls
rm 1st\ Grader\ Backs\ Down\ Homophobe\ Street\ Preacher-T-pq3u-Ey5M.webm
ls
youtube-dl --extract-audio --audio-format mp3 https://www.youtube.com/watch?v=T-pq3u-Ey5M
rm 1st\ Grader\ Backs\ Down\ Homophobe\ Street\ Preacher-T-pq3u-Ey5M.mp3
youtube-dl --extract-audio --audio-format mp3 https://www.youtube.com/watch?v=T-pq3u-Ey5M &
ls
rm 1st\ Grader\ Backs\ Down\ Homophobe\ Street\ Preacher-T-pq3u-Ey5M.mp3
cd remember_dir/
ls
cd ..
ls
ls -l
ls -a
ls
rm toto
ls
youtube-dl --extract-audio --audio-format mp3 \"https:\/\/www.youtube.com\/watch?v=T-pq3u-Ey5M
ls
which youtube-dl
root
su
ls
pwd
ls
which youtube-dl
chmod 777 /usr/local/bin/youtube-dl
sudo chmod 777 /usr/local/bin/youtube-dl
ls
youtube-dl -o "/home/pi https://www.youtube.com/watch?v=GMuZdN84PJg
youtube-dl -o /home/pi https://www.youtube.com/watch?v=GMuZdN84PJg
youtube-dl -o /home/pi http://www.youtube.com/watch?v=coq9klG41R8
ls
youtube-dl -o /home/pi/toto http://www.youtube.com/watch?v=coq9klG41R8
ls
rm toto
youtube-dl -o "/home/pi/toto" 'http://www.youtube.com/watch?v=coq9klG41R8'
rm toto
ls
rm toto
ls
cd remember_dir/
nano command_rem
ls
cd ..
ls
l
ls
rm S\'il\ Te\ Plait-coq9klG41R8.mp3
ls
rm S\'il\ Te\ Plait-coq9klG41R8.mp3
ls
rm coq9klG41R8.mp4
ls
cd music/
ls
cd ..
ls
cd music/
rm S\'il\ Te\ Plait-coq9klG41R8.mp3
cd ..
ls
cd music/
ls
touch toto
ls
rm toto
ls
l
ls
ps -e | grep youtube
man mplayer
man mplayer | grep idle
ls
ps -e | grep youtube | cut -d ' ' -f1
ps -e | grep youtube | cut -d ' ' -f1-
ps -e | grep youtube | cut -d ' ' -f2-
ps -e | grep youtube | cut -d ' ' -f-
ps -e | grep youtube | cut -d ' ' -f
ps -e | grep youtube | cut -d ' ' -f 1
ps -e | grep youtube | cut -d ' ' -f 2
ps -e | grep youtube | cut -d ' ' -f 2 | sudo kill
ps -e | grep youtube | cut -d ' ' -f 2 | kill
kill ps -e | grep youtube | cut -d ' ' -f 2
ps -e | grep youtube | cut -d ' ' -f 2 | kill
ps -e | grep youtube | cut -d ' ' -f 2
ps -e | grep youtube | cut -d ' ' -f 2 | kill
kill $(ps -e | grep youtube | cut -d ' ' -f 2)
sudo kill $(ps -e | grep youtube | cut -d ' ' -f 2)
ps -e | grep youtube | cut -d ' ' -f 2
sudo kill $(ps -e | grep youtube | cut -d ' ' -f 2)
ps -e | grep youtube
sudo netstat -lnp | grep 80
ls
cd ..
ls
which kill
chmod 777 /bin/kill
sudo chmod 777 /bin/kill
ls
cd music/
ls
mplayer -idle The_Good_Life_Chill_2015.mp3
ls
cp The_Good_Life_Chill_2015.mp3 /home/pi
ls
cd ..
ls
cd music/
ls
rm *.m4a
ls
rm *E.mp3
ls
mplayer Black\ M\ -\ Foutue\ mlodie\ \(audio\)-ZsnYgCy0YrI.mp3
mplayer -idle ./music/Black\ M\ -\ Foutue\ mlodie\ (audio)-ZsnYgCy0YrI.mp3
mplayer -idle ./music/Black\ M\ -\ Foutue\ mlodie\ \( audio\) -ZsnYgCy0YrI.mp3
cd ..
ls
ls -a
rm The_Good_Life_Chill_2015.mp3
ls
ls -a
git add -A
git commit -m "first commit with local website working"
git remote add origin https://github.com/Name-less/Pi.git
git commit -m "first commit with local website working"
git config --global user.name Name-less
git commit -m "first commit with local website working"
git push -u origin master
git credential-osxkeychain
curl -s -O https://github-media-downloads.s3.amazonaws.com/osx/git-credential-osxkeychain
chmod u+x git-credential-osxkeychain
kill $(ps -e | grep mplayer | cut -d ' ' -f 2)
ls
ps -e | grep mplayer
kill $(ps -e | grep mplayer | cut -d ' ' -f 2)
sudo kill 4393
kill $(ps -e | grep mplayer | cut -d ' ' -f 2)
sudo kill $(ps -e | grep mplayer | cut -d ' ' -f 2)
ps -e | grep mplayer
sudo kill $(ps -e | grep mplayer | cut -d ' ' -f 2)
ps -e | grep mplayer
sudo kill $(ps -e | grep mplayer | cut -d ' ' -f 2)
ps -e | grep mplayer
sudo kill $(ps -e | grep mplayer | cut -d ' ' -f 2)
ps -e | grep mplayer
sudo kill $(ps -e | grep mplayer | cut -d ' ' -f 2)
ps -e | grep mplayer
sudo kill $(ps -e | grep mplayer | cut -d ' ' -f 2)
ps -e | grep cvlc
ps -e | grep mplayer
sudo kill 4526
ps -e | grep cvlc
ps -e | grep vlc
ps -e | grep mplayer
sudo kill 4541
ls
ps -e | grep mplayer
sudo kill 4554
ps -e | grep mplayer
sudo kill 4560
ps -e | grep mplayer
sudo kill 4566
ps -e | grep mplayer
sudo kill 4572
sudo kill $(ps -e | grep mplayer | cut -d ' ' -f 2)
mplayer -idle ./music/The_Good_Life_Chill_2015.mp3 &
mplayer -idle ./music/The_Good_Life_Chill_2015.mp3
sudo kill $(ps -e | grep mplayer | cut -d ' ' -f 2)
ps -e | grep mplayer
sudo kill $(ps -e | grep mplayer | cut -d ' ' -f 2)
ps -e | grep mplayer
sudo kill $(ps -e | grep mplayer | cut -d ' ' -f 2)
ps -e | grep mplayer
sudo kill $(ps -e | grep mplayer | cut -d ' ' -f 2)
ps -e | grep mplayer
sudo kill 4702
ps -e | grep mplayer
sudo kill 4702
ps -e | grep mplayer
ps -e | grep you
ps -e | grep mp
sudo kill $(ps -e | grep mplayer | cut -d ' ' -f 2)
kill -SIGCONT $(ps -e | grep mplayer | cut -d ' ' -f 2)
sudo kill $(ps -e | grep mplayer | cut -d ' ' -f 2)
ps -e |grep mplayer
sudo kill $(ps -e | grep mplayer | cut -d ' ' -f 2)
kill -9 4702
sudo kill $(ps -e | grep mplayer | cut -d ' ' -f 2)
kill -SIGSTOP $(ps -e | grep mplayer | cut -d ' ' -f 2)
sudo kill -SIGSTOP $(ps -e | grep mplayer | cut -d ' ' -f 2)
sudo kill -SIGCONT $(ps -e | grep mplayer | cut -d ' ' -f 2)
sudo kill -SIGSTOP $(ps -e | grep mplayer | cut -d ' ' -f 2)
ps -e | prep you
ps -e | grep you
ls
rm git-credential-osxkeychain
ls
cd music/
ls
cd .
cd ..
ls
nano index.php
ps -e | grep you
nano index.php
ps -e | grep you
nano index.php
ps -e | grep you
nano index.php
ps -e | grep you
nano index.php
git add -A
git commit -m "minor modifications"
git push -u origin master
sudo halt
man amixer
amixer sset 'Master' 50%
amixer scontrols
amixer sset 'PCM' 50%
amixer sset 'PCM' 90%
amixer sset 'PCM' 80%
amixer sset 'PCM' 70%
amixer sset 'PCM' 1000%
amixer sset 'PCM' 100%
amixer sset 'PCM' 90%
amixer sset 'PCM' 80%
amixer sset 'PCM' 70%
awk -F"[][]" '/dB/ { print $2 }' <(amixer sget Master)
awk -F"[][]" '/dB/ { print $2 }' <(amixer sget PCM)
amixer --quiet set Master 75%
amixer --quiet set PCM 75%
amixer -q
amixer -q set PCM
amixer -q set PCM 90%
amixer -q set PCM 60%
awk -F"[][]" '/dB/ { print $2 }' <(amixer sget PCM)
ls
nano sound_value
awk -F"[][]" '/dB/ { print $2 }' <(amixer sget PCM)
ps -e | grep you
ls
git add -A
git commit -m "possibility to up and down song"
git push -u origin master
ps -e | grep you
ps -e | grep mpla
sudo kill 3336
sudo kill 3588
ps -e | grep mpla
kill -9 3336
sudo kill -9 3336
ls
cd music/
ls
cd ..
nano inls
ls
cd music/
ls
mv Bigflo\ \&\ Oli\ -\ Comme\ d\'hab-lNR_LkDju6g.mp3 Bigflo\ \_\ Oli\ -\ Comme\ d\'hab-lNR_LkDju6g.mp3
ls
exit
ls
nano index.php
ls
nano TODO
ls
cd /etc/init.d
ls
cd ..
ls
cd php5
ls
nano conf.d
cd apache2/
ls
nano conf.d
ls
nano php.ini
cd /etc/init.d
ls
nano createserver.sh
cd
ls
git add -A
git commit -m "add a TODO file"
git push -u origin master
ls
nano index.php
ps -e | grep mplayer
sudo kill -9 3842
sudo kill -9 4046
sudo kill -9 4171
ps -e | grep mplayer
kill 4183
sudo kill 4183
kill 4183
ps -e | grep mplayer
sudo kill 4189
ps -e | grep mplayer
nano index.php
ls
pwd
mkdir nidWebSite
mv index.php nidWebSite/
mv sound_value nidWebSite/
mv music/ nidWebSite/
ls
cd nidWebSite/
ls
cd ..
ls
mv music/ nidWebSite/
ms
ls
cd /etc/init.d
ls
sudo nano createserver.sh
cd
ls
mv nidWebSite/ achille
ls
sudo reboot
cd achille/
ls
sudo netstat -lnp | grep 80
ls
nano index.php
ls
cd ..
ls
mv index.php~ achille/
ls
cd achille/
ls
sudo kill 1955
ls
sudo php -S 0.0.0.0:80 &
ls
sudo netstat -lnp | grep 80
cd /etc/init.d
ls
cd
kill 2828
sudo kill 2828
ls
cd ..
ls
cd pi
ls
sudo php -S 0.0.0.0:80 &
cd /etc/init.d
ls
sudo nano createserver.sh
sudo reboot
ls
cd achille
ls
man npm
npm install angular
nano package.json
npm install angularjs
npm install
node -v
node
sudo apt-get install nodejs
nodejs -v
nano package.json
rm package.json
npm install -g grunt-cli
sudo npm update npm -g
npm install -g grunt-cli
npm config set registry https://registry.npmjs.org/
npm install -g grunt-cli
sudo apt-get purge nodejs npm
curl -sL https://deb.nodesource.com/setup | sudo bash -
sudo apt-get install -y nodejs
npm install -g grunt-cli
sudo npm install -g grunt-cli
npm install -g bower
sudo npm install -g bower
git clone "[email protected]:<github username>/angular.js.git"
git clone "[email protected]:Name-less/angular.js.git"
sudo npm install -g yo
sudo npm install -g generator-angular
ls
mkdir app
cd app
ls
yo angular
lsls
ls
nano pa
ls
cd achille/
ls
cd app/
ls
nano package.json
ls
cd app
ls
nano 404.html
ls
pws
pwd
ls
nano index.html
ls
cd ..
ls
cd ..
ls
rm -rf app
ls
mkdir app
cd app
nano package.json
ls
npm install
ls
cd node_modules/
ls
cd ..
ls
cd ..
ls
rm -rf app
ls
nano index.php
ls
mkdir app
cd app
ls
git clone https://github.com/Name-less/angularJsNidSite.git
ls
cd angularJsNidSite/
ls
bower install
npm install
ls
cd app
ls
nano index.html
pwd
nano index.html
ls
nano index.html
ls
pwd
nano index.html
ls
cd bower_components/
ls
cd ..
ls
cd ..
ls
bower install angular-material
ls
cd app
ls
cd bower_components/
ls
cd ..
ls
nano index.html
ls
nano index-async.html
ls
nano index.html
ls
nano mainApp.js
ls
nano index.html
nano mainApp.js
nano index.html
bower install angular-aria
nano index.html
mv index.html index.php
sudo halt
ls
cd achille/
ls
cd app/
ls
pwd
mv angularJsNidSite/ /home/pi/achille
ls
cd ..
ls
cd app
ls
cd ..
ls
rm -rf app
ls
cd ..
ls
cd achille
ls
mv angularJsNidSite/ /home/pi
ls
cd ..
ls
mv angularJsNidSite/ achillejs
ls
pwd
ls
cd achille
ls
cd ..
ls
cd achillejs
ls
cd app
ls
rm index-async.html
ls
mv mainApp.js app.js
ls
nano music.php
ls
cd ..
ls
git add -A
git commit -m "project configured, start the music part"
git push -u origin master