Khalila*Sharen

Male, 17 tahun

Jakarta, Indonesia

Ya, aku adalah penjahat. Kejahatanku adalah keingintahuanku. Kejahatanku adalah menilai orang berdasarkan perkataan dan pikiran mereka. Kejahatanku adalah menjadi lebih pintar dari kalian, sebuah dosa yang tak akan bisa kalian ampuni
::
Start
Welcome to my Blog
Shutdown

Navbar3

Search This Blog

Rabu, 29 Januari 2014

Autotrash

Hapus file sampah secara otomatis

type:
apt-get update
apt-get install autotrash

autotrash -d 10

See:

-d <days of age to purge>,
--delete <number of megabytes to purge>, or
--min-free <number of megabytes to make free>

Read More --►

Scalpel

Type:
dd if=/dev/sda1 of=/media/dataku/imagerecovery.img
untuk menyalin partisi /dev/sda1 yang ingin direcovery menjadi image.

install scalpel
apt-get install scalpel

konfigurasi
gedit /etc/scalpel/scalpel.conf
hilangkan tanda # untuk merecovery data yang berextensi PDF *contoh

mkdir recovery
scalpel -o recovery imagerecoveri.img

done..
Read More --►

Jumat, 24 Januari 2014

Remastersys

gedit /etc/apt/sources.list

copas

deb http://www.geekconnection.org/remastersys/repository karmic/

save

apt-get update
apt-get install remastersys
apt-get install ubiquity-frontend-gtk

Read More --►

Untuxcut with Arpon

apt-get install arpon


gedit /etc/default/arpon
Code:
# Defaults for arpon initscript
# sourced by /etc/init.d/arpon
# installed at /etc/default/arpon by the maintainer scripts

# You must choose between static ARP inspection (SARPI) and
# dynamic ARP inspection (DARPI)
#
# For SARPI uncomment the following line (please edit also /etc/arpon.sarpi)
# DAEMON_OPTS="-q -f /var/log/arpon/arpon.log -g -s"

# For DARPI uncomment the following line
# DAEMON_OPTS="-q -f /var/log/arpon/arpon.log -g -d"

# Modify to RUN="yes" when you are ready
RUN="yes"

konfigurasi arpon ini, untuk mengaktifkan arpon maka lihat pada baris ini

# Modify to RUN=”yes” when you are ready

RUN=”no”

see this:
Code:
# Modify to RUN=”yes” when you are ready

RUN=”no”

change it:
Code:
# Modify to RUN=”yes” when you are ready

RUN=”yes”

save..
Read More --►

Iso Create

-->begin

#!/bin/bash

# AUTHOR: (c) Eugenio F. <eug.alfe@gmail.com>
# VERSION: 1.4
# LICENSE: GPL (http://www.gnu.org/licenses/gpl.html)
# REQUIRES: mkisofs/genisoimage and zenity
# NAME:  Create ISO
# INSTALLATION: Copy to the "~/.gnome2/nautilus-scripts" directory
# DESCRIPTION: Create a iso file from directory or file.

for File in "$@"
do
IFS=""
 if [ -d "$File" ]; then
  genisoimage -J -joliet-long -allow-lowercase -allow-limited-size -R -iso-level 4 -o "$File.iso" $File 2>&1 \
  | sed -u 's/.* \(.*[0-9]\)\.\([0-9]\+%\)\(.*\)/\1\n# Completed\t\t\t\t\t\t\t\t\t\t\t\t\1.\2/' \
  | zenity --progress --width="430" --auto-kill --title="Creating \"$File.iso\"" 2> /dev/null
 else
  genisoimage -allow-limited-size -r -o "$File".iso "$File" 2>&1 \
  | sed -u 's/.* \(.*[0-9]\)\.\([0-9]\+%\)\(.*\)/\1\n# Completed\t\t\t\t\t\t\t\t\t\t\t\t\1.\2/' \
  | zenity --progress --width="430" --auto-kill --title="Creating \"$File.iso\"" 2> /dev/null
 fi;
done
<--end
save to: ./gnome/nautilus-scripts/

klik kanan pada folder ISO Creator,  tab permissions, centang Allow executing file ad program.
link


Read More --►

Minggu, 19 Januari 2014

Install Virtualbox on Backbox

Terminal:
apt-get update
apt-get install virtualbox-qt
Done
Read More --►

install kernel-headers

terminal:
apt-get update
apt-cache search linux-headers-$(uname -r)
apt-get install linux-headers-$(uname -r)
done
Read More --►