Gyaan With Anand Nayyar1 month ago
Installing NextCloud on Ubuntu 16.04
Step 1: Login in Root
#su -
password:
Step 2: Update the System
#apt-get update
Step 3: Install LAMP Server + PHP Extension
#apt-get install lamp-server^
#apt-get install libapache2-mod-php7.0 php7.0-mbstring php7.0-curl php7.0-zip php7.0-gd php7.0-mysql php7.0-mcrypt
#apt-get install php-xml
Step 4: Download NextCloud
#wget...
Tuesday, June 13, 2017
Monday, June 12, 2017
Format Partisi Hardisk dengan Linux
Tidak terasa sudah berada lagi dibulan baru ini, sekarang bulan Maret, semoga anda semua masih semangat. Masih berhubungan mengenai seputar Linux, jika sebelumnya membahas tentang distro LinuxUbuntu berkolaborasi dengan Android. Artikel ini saya buat karena termotivasi karena blog saya sudah...
Monday, June 5, 2017
Uninstall Apache Ubuntu
Just copy and paste it terminal.
$ sudo service apache2 stop
$ sudo apt-get purge apache2 apache2-utils apache2.2-bin apache2-common
$ sudo apt-get autoremove
$ whereis apache2
$ sudo rm -rf /etc/apache2...
Thursday, June 1, 2017
Delete All File Linux By Name
You don't even need to use rm in this case if you are afraid. Use find:
find . -name "*.bak" -type f -delete
But use it with precaution. Run first:
find . -name "*.bak" -type f
to see exactly which files you will remove.
Also, make sure that -delete is the last argument in your command. If you put it before the -name *.bak argument, it will delete...