Friday, June 14, 2019

install clementine di ubuntu

langkah pertama
masukan perintah pada terminal linux dengan akses root
#apt-get install clementine
 
 
setelah itu tekan y dan tunggu hinggal proses installasi selesai.....
setelah proses installasi selesai clementine belum bisa memutar file musik..??
 
langkah yang harus di lakukan adalah dengan perintah di bawah ini..
 
sudo add-apt-repository ppa:mc3man/gstffmpeg-keep
 
 
sudo apt-get update
 
sudo apt-get install gstreamer0.10-ffmpeg
 
 
plugin  Now try playing back a .mkv

sudo apt-add-repository ppa:strukturag/libde265
sudo apt-get update
sudo apt-get install gstreamer0.10-libde265
sudo apt-get install gstreamer1.0-libde265 
 
There is also a VLC plugin available:
sudo apt-get install vlc-plugin-libde265
 

Wednesday, May 22, 2019

Repository Debian 8 Terbaru 2019


Berikut ini beberapa daftar mirror repository Debian 8 yang sudah ada tahun lalu di indonesia, yang dapat di gunakan dalam proses penginstallan debian anda di rumah  okee caranya adalah copy paste repo yang ada di bawah ini dan ketik pada terminal



untuk menggunakan langkah awal


# mv /etc/apt/sources.list /etc/apt/sources.list.bak

untuk melakukan proses backup

dan langakah kedua

#nano /etc/apt/sources.list

 setelah muncul hapus silahkan paste salah satu repo di bawah ini



KAMBING-UI

deb http://kambing.ui.ac.id/debian/ jessie main contrib non-free
deb http://kambing.ui.ac.id/debian/ jessie-updates main contrib non-free
deb http://kambing.ui.ac.id/debian-security/ jessie/updates main contrib non-free

KEBO VLSM

deb http://kebo.vlsm.org/debian/ jessie main contrib non-free
deb http://kebo.vlsm.org/debian/ jessie-updates main contrib non-free
deb http://kebo.vlsm.org/debian-security/ jessie/updates main contrib non-free

DATA UTAMA SURABAYA

deb http://kartolo.sby.datautama.net.id/debian/ jessie main contrib non-free
deb http://kartolo.sby.datautama.net.id/debian/ jessie-updates main contrib non-free
deb http://kartolo.sby.datautama.net.id/debian-security/ jessie/updates main contrib non-free

UNEJ

deb http://mirror.unej.ac.id/debian/ jessie main contrib non-free
deb http://mirror.unej.ac.id/debian/ jessie-updates main contrib non-free
deb http://mirror.unej.ac.id/debian-security/ jessie/updates main contrib non-free

referensi:

[1] https://dnaite.blogspot.com/2015/06/daftar-mirror-repository-lokal-debian-8.html

Friday, May 10, 2019

ekstrak Files Menggunakan di Linux

ekstrak Files Menggunakan di Linux


RAR adalah alat yang paling populer untuk membuat dan mengekstrak arsip terkompresi (Rar) file. Ketika kita men-download file arsip dari web, kita diperlukan alat rar untuk mengekstrak mereka. RAR tersedia secara bebas di bawah sistem operasi Windows untuk menangani file yang dikompresi, tapi sayangnya alat rar tidak pra-instal dengan sistem Linux, kita perlu menginstalnya menggunakan alat pihak ketiga untuk membuka, ekstrak, uncompress atau unrar file arsip
Langkah 1: Cara Install Unrar di Linux
ketikan pada terminal menggunakan akses root
# apt-get install rar
Langkah 2: Cara Buka / Ekstrak File RAR di Linux

Untuk membuka / ekstrak file RAR di direktori kerja saat ini, cukup gunakan perintah berikut dengan e opsi unrar.




# unrar e file.rar




Untuk membuka / ekstrak file RAR di jalur tertentu atau direktori tujuan, hanya menggunakan e opsi unrar, itu akan mengekstrak semua file dalam direktori tujuan tertentu.


#unrar e file.rar / home /




Untuk membuka / ekstrak file RAR dengan struktur direktori asli mereka. hanya mengeluarkan bawah perintah dengan x pilihan unrar. Ini akan mengekstrak sesuai struktur folder mereka lihat di bawah output dari perintah




# unrar x file.rar




Untuk daftar file dalam penggunaan file arsip unrar l pilihan. Ini akan menampilkan daftar file dengan ukuran mereka, tanggal, waktu dan perizinan.




#unrar l file.rar




Untuk menguji integritas file arsip, gunakan opsi unrar t. Perintah di bawah akan melakukan cek integritas lengkap untuk setiap file dan menampilkan status file.




#unrar t file.rar




Untuk membuat file arsip (RAR) di Linux, jalankan perintah berikut dengan opsi rar a. Ini akan membuat file arsip untuk direktori file.




# rar a file.rar file




Untuk menghapus file dari file arsip, jalankan perintah.




#rar d file.rar




Untuk memulihkan atau memperbaiki file arsip atau file, jalankan perintah dengan opsi rar r.




#rar r filename.rar




Untuk memperbarui atau menambahkan file ke file yang ada arsip, gunakan perintah berikut dengan opsi rar u



#rar u file.rar file.txt




Ini adalah fitur yang sangat menarik dari alat Rar, memungkinkan kita untuk mengatur password untuk arsip berkas. Untuk melindungi sandi arsip file pilihan menggunakan rar p a.

rar a p tecmint.rar

Masukkan password (tidak kelihatan):

Masukkan kembali password:




oke sekian dulu lanjut versi zipnya kapan-kapan



sumber: http://www.tecmint.com/how-to-open-extract-and-create-rar-files-in-linux/



Wednesday, May 1, 2019

how to install the program Apache and Allow in Firewall

 Step 1: Install Apache and Allow in Firewall


The Apache web server is among the most popular web servers in the world. It's well-documented, and has been in wide use for much of the history of the web, which makes it a great default choice for hosting a website.
We can install Apache easily using Ubuntu's package manager, apt. A package manager allows us to install most software pain-free from a repository maintained by Ubuntu. You can learn more about how to use apt here.
For our purposes, we can get started by typing these commands:
  • sudo apt-get update
  • sudo apt-get install apache2
Since we are using a sudo command, these operations get executed with root privileges. It will ask you for your regular user's password to verify your intentions.
Once you've entered your password, apt will tell you which packages it plans to install and how much extra disk space they'll take up. Press Y and hit Enter to continue, and the installation will proceed.

Set Global ServerName to Suppress Syntax Warnings

Next, we will add a single line to the /etc/apache2/apache2.conf file to suppress a warning message. While harmless, if you do not set ServerName globally, you will receive the following warning when checking your Apache configuration for syntax errors:
  • sudo apache2ctl configtest
Output
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 Syntax OK
Open up the main configuration file with your text edit:
  • sudo nano /etc/apache2/apache2.conf
Inside, at the bottom of the file, add a ServerName directive, pointing to your primary domain name. If you do not have a domain name associated with your server, you can use your server's public IP address:
Note
If you don't know your server's IP address, skip down to the section on how to find your server's public IP address to find it.
/etc/apache2/apache2.conf
. . .
ServerName server_domain_or_IP
Save and close the file when you are finished.
Next, check for syntax errors by typing:
  • sudo apache2ctl configtest
Since we added the global ServerName directive, all you should see is:
Output
Syntax OK
Restart Apache to implement your changes:
  • sudo systemctl restart apache2
You can now begin adjusting the firewall.

Adjust the Firewall to Allow Web Traffic

Next, assuming that you have followed the initial server setup instructions to enable the UFW firewall, make sure that your firewall allows HTTP and HTTPS traffic. You can make sure that UFW has an application profile for Apache like so:
  • sudo ufw app list
Output
Available applications: Apache Apache Full Apache Secure OpenSSH
If you look at the Apache Full profile, it should show that it enables traffic to ports 80 and 443:
  • sudo ufw app info "Apache Full"
Output
Profile: Apache Full Title: Web Server (HTTP,HTTPS) Description: Apache v2 is the next generation of the omnipresent Apache web server. Ports: 80,443/tcp
Allow incoming traffic for this profile:
  • sudo ufw allow in "Apache Full"
You can do a spot check right away to verify that everything went as planned by visiting your server's public IP address in your web browser (see the note under the next heading to find out what your public IP address is if you do not have this information already):
http://your_server_IP_address
You will see the default Ubuntu 16.04 Apache web page, which is there for informational and testing purposes. It should look something like this:

Friday, April 19, 2019

install Apache2 With PHP5 And MySQL ubuntu


Langkah sangat mudah masuk ke terminal linux  dengan akses root
1 ketikan perintah untuk menginstall paket mysql
          #apt-get update
          # apt-get install mysql-server mysql-client
 setelah perintah berjalan akan ada perintah untuk memasukan passwor mysql


setelah mengisi pasword ketik ulang passwor yang anda masukan










setelah selesai mengisi passwor biarkan proses berjalan sampai dengan tampilan berikut





penginstalan untuk mysql selesai.......

2. untuk menginstal php5 cukup ketikan perintah di teminal

# apt-get install php5 libapache2-mod-php5


 Tunggu hingga proses penginstalan selesai

3.untuk menginstal paket pendukung php5

# apt-get install php5-mysql php5-curl php5-gd php5-intl php-pear php5-imagick php5-imap php5-mcrypt php5-memcache  php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl php5-pgsql php5-cli build-essential php5-dev

4 untuk memasang phpmyadmin ketikan perintah sebagai berikut

# apt-get install phpmyadmin

tunggu proses hingga selesai  dan masukan password untuk login ke phpmyadmin....

5.untuk menginstall apache2 untuk menjalankan webservice...

# apt-get install apache2

tunggu hingga sampai selesai  terus reboot komputer andaa.....enjoy saja...








Tuesday, April 2, 2019

Repository Lokal Debian 8 Jessie terbaru



#KAMBING-UI
deb http://kambing.ui.ac.id/debian/ jessie main contrib non-free
deb http://kambing.ui.ac.id/debian/ jessie-updates main contrib non-free
deb http://kambing.ui.ac.id/debian-security/ jessie/updates main contrib non-free

Berikut ini adalah daftar repository Debian 8 yang saya rangkum dalam blog ini.


#KEBO VLSM
deb http://kebo.vlsm.org/debian/ jessie main contrib non-free
deb http://kebo.vlsm.org/debian/ jessie-updates main contrib non-free
deb http://kebo.vlsm.org/debian-security/ jessie/updates main contrib non-free

#DATA UTAMA SURABAYA
deb http://kartolo.sby.datautama.net.id/debian/ jessie main contrib non-free
deb http://kartolo.sby.datautama.net.id/debian/ jessie-updates main contrib non-free
deb http://kartolo.sby.datautama.net.id/debian-security/ jessie/updates main contrib non-free

#UNEJ
deb http://mirror.unej.ac.id/debian/ jessie main contrib non-free
deb http://mirror.unej.ac.id/debian/ jessie-updates main contrib non-free
deb http://mirror.unej.ac.id/debian-security/ jessie/updates main contrib non-free 


untuk mengganti repo pada debian 8 salah satunya adalah masuk sebagi super user atau root
copy semua list repository yang anda inginkan untuk debian 8 pada terminal

# nano  /etc/apt/sources.list
untuk menghapus list repository yang sudah ada pada debian anda dengan cara tekan tombol ctrl+k


Ganti seluruh isi didalamnya dengan salah satu dari repository lokal diatas. Jika sudah simpan file tersebut dan update list repositorynya dengan perintah ini : tekan ctrl+ X lanjut Y tekan enter

lalu lanjutkan untuk #apt-get upgrade