Labels

Thursday, October 27, 2011

How to Start Networking in Backtrack

This is always a huge topic and it seems simple to many of us but the fact of the matter is we have a lot of "new" people so we need to be clear about this sort of thing. (Note all commands should be run as root or with sudo) 1. To start networking in Backtrack 4 final issue the following command. /etc/init.d/networking start This will attempt to start all the interfaces in the /etc/network/interfaces file. root@bt:~# cat /etc/network/interfaces auto lo iface lo inet loopback auto eth0 iface eth0 inet dhcp auto eth1 iface eth1 inet dhcp auto ...
Continue Reading »

Tuesday, October 25, 2011

Install BackTrack in VMWare.

Follow the basic install instructions here to get BackTrack installed in a VMware machine. Log into BackTrack. To install the VMWare drivers, the kernel source and headers need to be in place. By default in the BackTrack 4 final release, the kernel (denoted by {version} ) is configured and ready. However in some cases, you might need to make sure you have the latest kernel sources by typing in: apt-get update apt-get install linux-source cd /usr/src tar jxpf linux-source-{version}.tar.bz2 ln -s linux-source-{version} linux cd linux zcat /proc/config.gz ...
Continue Reading »

Monday, October 24, 2011

Setting DNS Server di Ubuntu

When using the internet, then it implies that we use DNS (Domain Name System). The main function of this control system is to translate host names into IP numbers (IP address) or vice versa so that the name is easily remembered by Internet users. System control also serves to provide information about a host to the entire Internet network. About how the DNS Server itself will not be discussed in this article but the way its setting alone secaara simple. 1. Installing Bind Software that is widely used as a DNS server is Bind. Of course we must ...
Continue Reading »

BackTrack Clean Hard Drive Install

This method of installation is the simplest available. The assumption is that the whole hard drive is going to be used for BackTrack. 1. Boot BackTrack on the machine to be installed. Once booted, type in “startx” to get to the KDE graphical     interface. 2. Double click the “install.sh” script on the desktop, or run the command “ubiquity” in console. 3. Select your geographical location and click “forward”.  Same for the Keyboard layout.4. The next screen allows you to configure the partitioning layout. The assumption is that ...
Continue Reading »

Saturday, October 22, 2011

how to install Kubuntu KDE in Ubuntu

Ubuntu default desktop uses Gnome window manager, which can be a difficult transition for Windows users. KDE desktop will be much more familiar to Windows users, such as KDE has something comparable to the start menu. If you've installed Ubuntu, and you do not want to completely reset with Kubuntu, you can only install the KDE window manager to install kubuntu-desktop package and its dependencies. You can install kubuntu using GUI tools, but the easiest way is to open a terminal window, and type the following command: sudo apt-get install kubuntu-desktop You ...
Continue Reading »

Friday, October 21, 2011

How to Install VGA Driver nVidia GeForce on Ubuntu

Times where I will discuss how to install nVidia drivers on Ubuntu, just here's how: 1) Download Newest Nvidia drivers from www.nvidia.com 2) Open the module blacklist as admin gksudo gedit / etc / modprobe.d / blacklist.conf Add these lines and save: blacklist vga16fb blacklist nouveau blacklist rivafb blacklist nvidiafb blacklist rivatv 3) Previously installed Uninstall any Nvidia drivers: sudo apt-get –purge remove nvidia-* or sudo apt-get --purge remove nvidia-* 4) Reboot your computer 5) Choose the kernel recovery mode, choose root ...
Continue Reading »

Thursday, October 20, 2011

How to install Visio in Linux

Visio is one application that might be a favorite in the flowcharts ordiagrams and concepts. Visio is an application output window, butmake no mistake in Linux can be installed visio but its applicationnamed "him". Well it looks like the following How to install it simply type the command on the console / terminal: # Sudo apt-get install him ...
Continue Reading »

Tuesday, October 18, 2011

Membuat Paging di CodeIgniter

Mengapa kita perlu menggunakan paging pada sebuah applikasi web? Anda mungkin akan bertanya-tanya tentang hal itu. Paging adalah salah satu cara untuk melakukan optimasi query. Dalam sebuah kasus saya pernah mengerjakan project yang datanya dalam satu tabel itu sampai ratusan ribu record. Seandainya data tersebut di tampilkan pada sebuah halaman web saja, maka akan menghabiskan tempat. Dan akan terasa tidak enak untuk dilihat. Oleh karena itu digunakan paging untuk mengantisipasi hal itu. CodeIgniter mempunyai class pagination untuk mengatasi hal ...
Continue Reading »

Monday, October 17, 2011

Validasi di CodeIgniter

Masalah keamanan adalah masalah klasik yang selalu menghantui semua pengguna dan pengembang website, dan untuk mencegah agar tidak terjadi hal-hal yang tidak kita inginkan salah satunya adalah dengan melakukan validasi data. CodeIgniter mempunyai sebuah class untuk melakukan validasi yaitu form_validation. Validasi biasa dilakukan ketika user mengisikan data pada sebuah form.             Baik langsung saja saya jelaskan bagaimana caranya menggunakan class form_validation. Buat sebuah controller dengan nama form.php ...
Continue Reading »

Sunday, October 16, 2011

Getting Started Create a Website with CodeIgniter

CodeIgniter has a concept of MVC (Model View Controller) in the creation of websites. MVC concept has many maanfaat among others split between logic and presentation, thus making the website could be more structured. Models are typically used to query the database for example insert, update, delete or select. While the View is used to display the output of existing processes. Controller is used to connect between the Model and View. Controllers can also be used to validate input before the data entered into the database. Next let's start creating ...
Continue Reading »

Saturday, October 15, 2011

How to install Google Chrome in Ubuntu

Welcome to the sofyan id, in this tutorial, I will discuss on how to install the application search google chrome on ubuntu. Software: Google Chrome. Operating System: Ubuntu. Skill Level: Newbie. Estimated Time: 20 Minutes. Google Chrome is a search application (bworser) to explore the Internet world. Google Chrome is an application developed by Google's corporate giants. Google Chrome is a lightweight and simple, yet very powerful. The first phase to install google chrome, Google Chrome Download apalikasi here first. Open the link above, at ...
Continue Reading »

Monday, October 10, 2011

Operating File and Directory Structure in Ubuntu

Experiment 1: Directory 1.Melihat HOME directory $ pwd $ Echo $ HOME 2. view current directory and parent directory $ pwd $ Cd. $ pwd $ Cd .. $ pwd $ cd 3.make one directory, more than one directory or sub directory $ pwd $ Mkdir A B C A / D A / E B / F A / D / A $ Ls-l $ Ls-l A $ Ls-l A / D 4. Remove one or more directories can only be done on an empty directory and can only be removed by the owner unless it is granted permission to access $ Rmdir B (There is an error, why?) $ Ls-l B $ Rmdir B / F B $ Ls-l B (There is an error, why?) 5.Navigasi ...
Continue Reading »