About

Pages

Senin, 14 Januari 2013

Setting IP Address pada Linux melalui Terminal Console (Debian)

Berikut ini adalah beberapa cara setting IP Address pada Linux. Cara ini saya terapkan pada distro Debian dan Ubuntu. Distro lain silakan menyesuaikan letak file konfigurasinya.
1. Setting Melalui Terminal CLI (Command Line Interface)
Setting melalui terminal CLI hanya bersifat sementara. Artinya setting ini akan hilang jika komputer di reboot. Syntaxnya adalah sebagai berikut:
ifconfig [nama_device] [ip_address] netmask [netmask]
Contoh:
ifconfig eth0 192.168.1.1 netmask 255.255.255.0
Sedangkan untuk menambahkan gateway bisa menggunakan perintah berikut:
route add default gw [ip_gateway]
Contoh:
route add default gw 192.168.1.254
2. Mengubah Langsung File Konfigurasi
Letak file konfigurasi IP Address untuk Debian dan Ubuntu adalah di /etc/network/interfaces. Distro lain silakan menyesuaikan. Pada prinsipnya isi file-nya sama. Hanya letaknya saja yang berbeda (tergantung distro). Edit file tersebut dengan langkah sebagai berikut dengan menggunakan editor kesayangan Anda (Penulis lebih suka menggunakan editor vi atau vim. Artikel tentang bagaimana cara menggunakan editor vi atau vim Insya Allah akan segera saya terbitkan):
Pastikan Anda telah login sebagai root. Pada terminal console ketik perintah berikut:
vi /etc/network/interfaces
Pada layar akan muncul isi file tersebut. Tekan tombol insert atau i pada keyboard untuk mulai mengedit file. Edit sehingga sebagai berikut (sesuaikan dengan settingan yang diperlukan).
auto lo eth0
iface lo inet loopback
iface eth0 inet static
address 192.168.1.1
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.254
Setelah itu tekan tombol Esc pada keyboard lalu ketik “:wq” (tanpa tanda petik) untuk menyimpan konfigurasi dan keluar dari editor vi. Restart network untuk mendapatkan efek dengan mengetikkan perintah berikut pada terminal console:
/etc/init.d/networking restart
atau
/etc/init.d/networking force-reload
Untuk melihat hasil konfigurasi baik dengan cara pertama maupun cara kedua bisa menggunakan perintah berikut:
ifconfig [nama_device]
Contoh:
ifconfig eth0
Perhatikan baris kedua output dari perintah tersebut yaitu di bagian “inet addr”. Hasil konfigurasi Anda akan muncul di situ. Sedangkan untuk melihat settingan gateway yang telah Anda buat bisamenggunakan perintah berikut:
route -n
Perhatikan kolom Gateway. Baris paling bawah menunjukkan gateway hasil settingan Anda. Atau bisa juga dengan menggunakan perintah berikut:
ip route show
Bagian “default via” pada baris paling bawah output perintah di atas adalah hasil konfigurasi gateway yang telah Anda buat.
Sebenarnya masih ada beberapa langkah lagi untuk konfigurasi IP Address di Linux. Baik itu melalui GUI atau terminal console. Nantikan saja artikel selanjutnya tentang ini.

Perintah-perintah Dasar Pada CLI di Linux

Ubuntu sangat terkenal dengan CLI-nya (Command Line Interface). CLI sendiri adalah antar muka yang tidak menyediakan grafik, baik berupa gambar-gambar, jendela-jendela ataupun animasi-animasi yang bisa memanjakan pengguna, melainkan hanya berupa teks yang harus diketikkan oleh pengguna. Jadi, apabila user ingin melakukan operasi dalam sistem operasi tersebut, misalnya melakukan copy,  rename,  cut, delete, dan sebagainya,  maka pengguna harus megetikkan perintah berupa teks dengan cara manual dan bukan dengan klik-klik seperti pada interface GUI (Graphic User Interface).
Pada Ubuntu versi Desktop sudah menggunakan interface grafik, namun juga disediakan sebuah aplikasi yang diperuntukkan bagi pengguna yang ingin menggunakan tampilan/interface CLI, baik hanya untuk belajar atau memang keahliannya menggunakan CLI, karena memang cukup banyak hal yang bisa dilakukan dengan interface CLI ini yang tidak bisa dilakukan pada interface GUI, terlebih pada Ubuntu versi Server yang semuanya harus dilakukan dengan mode teks, walaupun sebenarnya bisa diinstalkan mode grafiknya. Aplikasi pada Ubuntu Desktop yang bisa digunakan untuk menggunakan mode teks adalah Terminal, yang bisa diakses dengan mengklik Aplication –> Accessories –> Terminal.

Ini adalah tampilan dari Terminal di Ubuntu Desktop 10.10
Berikut ini adalah beberapa perintah yang bisa digunakan di sistem operasi Ubuntu pada mode CLI, baik Desktop maupun Server, yang juga banyak untuk bisa digunakan pada distro yang lain. Pada contoh ini saya menggunakan Ubuntu Desktop 10.10.
1. sudo su
Digunakan untuk login sebagai root/pengguna tertinggi
Sintaks sudo su
2. login
Digunakan untuk login sebagai user lain, namun harus menjadi root dulu untuk bisa menjalankan peirntah ini.
Sintaks : login namauser
Contoh : login adam
3. cd
Digunakan untuk berpindah direktori
Sintaks : cd alamat_direktori
Contoh : cd /var/www
4. pwd
Digunakan untuk memperlihatkan di direktori mana posisi kita berada sekarang.
Sintaks : pwd
5. ls
Digunakan untuk melihat isi sebuah direktori.
Sintaks : ls
6. cp
Digunakan untuk melakukan copy file.
Sintaks : cp /direktori/file_yang_ingin_dicopy /direktori tujuan
Contoh : cp /etc/file1.txt /var/www
7. mv
Digunakan untuk melakukan cut atau rename.
Sintaks :
mv /direktori/file_yang_ingin_dicut /direktori tujuan (cut)
mv /direktori/file_yang_ingin_direname /nama_baru_file (rename)
Contoh:
mv /etc/file1.txt /var/www
mv /etc/file1.txt file2.txt
8. mkdir
Digunakan untuk membuat folder baru.
Sintaks : mkdir nama_folder
Contoh : mkdir folder1
9. rmdir
Digunakan untuk menghapus folder.
Sintaks : rmdir nama_folder
Contoh : rmdir folder1
10. touch
Digunakan untuk membuat file baru.
Sintaks : touch nama_file
Contoh : touch file1.txt
11. rm
Digunakan untuk menghapus file.
Sintaks : rm nama_file
Contoh : rm file1.txt
12. more
Digunakan untuk menampilkan isi sebuah file
Sintaks : more nama_fie
Contoh : more file1.txt
13. echo
Digunakan untuk menuliskan sesuatu kata atau kalimat ke sebuah file.
Sintaks : echo “isi pesan” nama_file
Contoh : echo “Hai ini adalah contoh pesan” >> file1.txt
14. adduser
Digunakan untuk menambah user baru.
Sintaks : adduser nama_user
Contoh : adduser adamkurniawan
15. addgroup
Digunakan untuk menambah group baru
Sintaks : addgroup nama_group
Contoh : addgroup grup1
16. lsusb
Digunakan untuk melihat perangkat usb yang sedang terkoneksi ke komputer
Sintaks : lsusb
17. lspci
Digunakan untuk melihat perangkat pci yang sedang terkoneksi ke komputer
Sintaks : lspci
18. lshw
Digunakan untuk melihat hardware komputer.
Sintaks : lshw
19. dmesg
Digunakan untuk melihat hardware yang sedang beraktifitas
Sintaks : dmseg
20. top
Digunakan untuk melihat proses yang sedang berjalan, seperti Task Manager pada Windows.
Sintaks : top
21. cpuinfo
Digunakan untuk melihat spesifikasi komputer.
Sintaks : more /proc/cpuinfo
22. meminfo
Digunakan untuk melihat status RAM
Sintaks : more /proc/meminfo
23. clear
Digunakan untuk membersihkan layar
Sintaks : clear
24. halt
Digunakan untuk mematikan komputer, namun harus sebagai root.
Sintaks : halt
25. reboot
Digunakan untuk merestart komputer, namun harus sebagai root.
Sintaks : reboot
26. exit
Digunakan untuk keluar dari terminal.
Sintaks : exit
27. wget
Digunakan untuk mendownload via terminal
Sintaks : wget link_download
Contoh : wget http://www.insightcalendar.com/Insight_Calendar_1-1_Setup.exe
28. ifconfig
Digunakan untuk melihat konfigurasi ethernet/kartu jaringan.
Sintaks : ifconfig
29. apt-get
Digunakan untuk memperoleh paket/software dari repository ubuntu secara online.
Sintax : apt-get nama_paket
Contoh :
apt-get update (untuk melakukan update repository)
apt-get update wine (untuk mendapatkan paket wine)
30. tar
Digunakan untuk melakukan extract file.
Sintaks : tar [parameter] nama_file
Contoh : tar -xzvf komodo-edit-5.2.4-4343-linux-libcpp6-x86.tar.gz
31. nautilus
Digunakan untuk membuka tampilan GUI secara langsung.
Sintaks : nautilus
Contoh : sudo nautilus (menggunakan mode GUI dengan status root)

KONIGURASI DNS DI LINUX DEBIAN 5 LENNY

DNS (Domain Name System) sistem berbentuk database terdistribusi yang akan memetakan / mengkonversikan nama host mesin / domain ke alamat IP (Internet Protocol) dan sebaliknya dari alamat IP ke nama host yang disebut dengan reverse-mapping, atau lebih mudahnya DNS digunakan untuk mengingat nama daripada alamat IP

Berikut akan dibahas beberapa konfigurasi pada server dengan data sbb:
IP addreess : 192.168.2.5/24
IP DNS : 192.169.2.5/24
IP Mail Server : 192.168.2.6/24
IP Web Server : 192.168.2.7/24
Nama Domain : smkn2.com
Nama Host : server

Cara mengkonfigurasi DNS pada Linux Debian 5 Lenny adalah sbb:
Masuk ke root terminal
Membuat IP Virtual untuk domain mail server dan webserver yang akan diinstal kemudian, perintahnya pico /etc/network/interfaces seperti gambar berikut
Kemudian restart system dengan perintah reboot
Lalu memastikan apakah IP virtual yang kita buat telah terkonfigurasi dengan baik dengan printah ifconfig | less
 Lalu uji koneksi ke 2 IP Virtual tersebut dengan perintah Ping
Menginstall bind9 dengan perintah apt-get install bind9
Masuk ke direktori /etc/bind lalu mengedit file named.conf.local seperti gambar berikut dengan perintah pico named.conf.local
Selanjutnya mengedit file named.conf.options seperti gambar berikut dengan perintah pico named.conf.options
Meng-copy file db.local ke db.smkn2 dan db.127 ke db.192 dengan perintah eksekusi cp db.local db.smkn2 kemudian cp db.127 db.192
Edit file db.smkn2 dengan perintah pico db.smkn2 seperti gambar berikut
Edit file db.192 dengan perintah pico db.192 seperti gambar berikut
 Kemudian Cek apakah domain smkn2.com sudah ada dengan perintah pico /etc/resolv.conf
Setelah itu restart bind9 dengan perintah /etc/init.d/bind9 restart
Lalu cek hasil kerja kita di server dengan perintah nslookup pada semua  domain, mulai dengan nslookup smkn2.com, lalu nslookup server.smkn2.com dst seperti gambar berikut
Kemudian uji koneksi dengan perintah ping pada smkn2.com, server.smkn2.com, mail.smkn2.com dan www.smkn2.com
Terakhir lakukan 2 langkah diatas pada PC client anda seperti gambar berikut, jangan lupa mensetting IP pada PC client agar net-id dan subnetmask sama dengan PC Server (untuk sementara isi manual sebelum mengkonfiguras DHCP)
 Demikian, selamat mencoba, kalau ada masalah, koment di situs ini.

Perintah Keyboard Pada Windows Xp

Keyboard shortcuts pada Windows Xp adalah sebuah perintah yang mana biasa digunakan untuk menjalankan windows xp dan yang pasti mudahkan kita dalam menjalankan misalkan kita mau mengcopy data kita tidak usah repot klik kanan terus cari tulisan copy kita bisa juga menggunakan ctrl+c maka data tersebut sudah tercopy dan siap untuk ditempatkan atau di paste atau kamu pake perintah keyboard ctrl+f. Silahkan dilihat-lihat kali aja bisa bantu anda dalam bekerja menggunakan OS Windows Xp..

GENERAL KEYBOARD SHORTCUTS
• CTRL+C (Copy)
• CTRL+X (Cut)
• CTRL+V (Paste)
• CTRL+Z (Undo)
• DELETE (Delete)
• SHIFT+DELETE (Delete the selected item permanently without placing the item in the Recycle Bin)
• CTRL while dragging an item (Copy the selected item)
• CTRL+SHIFT while dragging an item (Create a shortcut to the selected item)
• F2 key (Rename the selected item)
• CTRL+RIGHT ARROW (Move the insertion point to the beginning of the next word)
• CTRL+LEFT ARROW (Move the insertion point to the beginning of the previous word)
• CTRL+DOWN ARROW (Move the insertion point to the beginning of the next paragraph)
• CTRL+UP ARROW (Move the insertion point to the beginning of the previous paragraph)
• CTRL+SHIFT with any of the arrow keys (Highlight a block of text)
• SHIFT with any of the arrow keys (Select more than one item in a window or on the desktop, or select text in a document)
• CTRL+A (Select all)
• F3 key (Search for a file or a folder)
• ALT+ENTER (View the properties for the selected item)
• ALT+F4 (Close the active item, or quit the active program)
• ALT+ENTER (Display the properties of the selected object)
• ALT+SPACEBAR (Open the shortcut menu for the active window)
• CTRL+F4 (Close the active document in programs that enable you to have multiple documents open simultaneously)
• ALT+TAB (Switch between the open items)
• ALT+ESC (Cycle through items in the order that they had been opened)
• F6 key (Cycle through the screen elements in a window or on the desktop)
• F4 key (Display the Address bar list in My Computer or Windows Explorer)
• SHIFT+F10 (Display the shortcut menu for the selected item)
• ALT+SPACEBAR (Display the System menu for the active window)
• CTRL+ESC (Display the Start menu)
• ALT+Underlined letter in a menu name (Display the corresponding menu)
• Underlined letter in a command name on an open menu (Perform the corresponding command)
• F10 key (Activate the menu bar in the active program)
• RIGHT ARROW (Open the next menu to the right, or open a submenu)
• LEFT ARROW (Open the next menu to the left, or close a submenu)
• F5 key (Update the active window)
• BACKSPACE (View the folder one level up in My Computer or Windows Explorer)
• ESC (Cancel the current task)
• SHIFT when you insert a CD-ROM into the CD-ROM drive (Prevent the CD-ROM from automatically playing)
• CTRL+SHIFT+ESC (Open Task Manager)
DIALOG BOX KEYBOARD SHORTCUTS
If you press SHIFT+F8 in extended selection list boxes, you enable extended selection mode. In this mode, you can use an arrow key to move a cursor without changing the selection. You can press CTRL+SPACEBAR or SHIFT+SPACEBAR to adjust the selection. To cancel extended selection mode, press SHIFT+F8 again. Extended selection mode cancels itself when you move the focus to another control.
• CTRL+TAB (Move forward through the tabs)
• CTRL+SHIFT+TAB (Move backward through the tabs)
• TAB (Move forward through the options)
• SHIFT+TAB (Move backward through the options)
• ALT+Underlined letter (Perform the corresponding command or select the corresponding option)
• ENTER (Perform the command for the active option or button)
• SPACEBAR (Select or clear the check box if the active option is a check box)
• Arrow keys (Select a button if the active option is a group of option buttons)
• F1 key (Display Help)
• F4 key (Display the items in the active list)
• BACKSPACE (Open a folder one level up if a folder is selected in the Save As or Open dialog box)
MICOROSOFT NATURAL KEYBOARD SHORTCUTS
• Windows Logo (Display or hide the Start menu)
• Windows Logo+BREAK (Display the System Properties dialog box)
• Windows Logo+D (Display the desktop)
• Windows Logo+M (Minimize all of the windows)
• Windows Logo+SHIFT+M (Restore the minimized windows)
• Windows Logo+E (Open My Computer)
• Windows Logo+F (Search for a file or a folder)
• CTRL+Windows Logo+F (Search for computers)
• Windows Logo+F1 (Display Windows Help)
• Windows Logo+ L (Lock the keyboard)
• Windows Logo+R (Open the Run dialog box)
• Windows Logo+U (Open Utility Manager)
ACCESSIBILITY KEYBOARD SHORTCUTS
• Right SHIFT for eight seconds (Switch FilterKeys either on or off)
• Left ALT+left SHIFT+PRINT SCREEN (Switch High Contrast either on or off)
• Left ALT+left SHIFT+NUM LOCK (Switch the MouseKeys either on or off)
• SHIFT five times (Switch the StickyKeys either on or off)
• NUM LOCK for five seconds (Switch the ToggleKeys either on or off)
• Windows Logo +U (Open Utility Manager)
WINDOWS EXPLORER KEYBOARD SHORTCUTS
• END (Display the bottom of the active window)
• HOME (Display the top of the active window)
• NUM LOCK+Asterisk sign (*) (Display all of the subfolders that are under the selected folder)
• NUM LOCK+Plus sign (+) (Display the contents of the selected folder)
• NUM LOCK+Minus sign (-) (Collapse the selected folder)
• LEFT ARROW (Collapse the current selection if it is expanded, or select the parent folder)
• RIGHT ARROW (Display the current selection if it is collapsed, or select the first subfolder)
SHORTCUTS KEY FOR CHARACTER MAP
After you double-click a character on the grid of characters, you can move through the grid by using the keyboard shortcuts:
• RIGHT ARROW (Move to the right or to the beginning of the next line)
• LEFT ARROW (Move to the left or to the end of the previous line)
• UP ARROW (Move up one row)
• DOWN ARROW (Move down one row)
• PAGE UP (Move up one screen at a time)
• PAGE DOWN (Move down one screen at a time)
• HOME (Move to the beginning of the line)
• END (Move to the end of the line)
• CTRL+HOME (Move to the first character)
• CTRL+END (Move to the last character)
• SPACEBAR (Switch between Enlarged and Normal mode when a character is selected)
MICROSOFT MANAGEMENT CONSOLE (MMC) MAIN WINDOW
• CTRL+O (Open a saved console)
• CTRL+N (Open a new console)
• CTRL+S (Save the open console)
• CTRL+M (Add or remove a console item)
• CTRL+W (Open a new window)
• F5 key (Update the content of all console windows)
• ALT+SPACEBAR (Display the MMC window menu)
• ALT+F4 (Close the console)
• ALT+A (Display the Action menu)
• ALT+V (Display the View menu)
• ALT+F (Display the File menu)
• ALT+O (Display the Favorites menu)
MMC CONSOLE WINDOWS
• CTRL+P (Print the current page or active pane)
• ALT+Minus sign (-) (Display the window menu for the active console window)
• SHIFT+F10 (Display the Action shortcut menu for the selected item)
• F1 key (Open the Help topic, if any, for the selected item)
• F5 key (Update the content of all console windows)
• CTRL+F10 (Maximize the active console window)
• CTRL+F5 (Restore the active console window)
• ALT+ENTER (Display the Properties dialog box, if any, for the selected item)
• F2 key (Rename the selected item)
• CTRL+F4 (Close the active console window. When a console has only one console window, this shortcut closes the console)
REMOTE DESKTOP CONNECTION NAVIGATION
• CTRL+ALT+END (Open the Microsoft Windows NT Security dialog box)
• ALT+PAGE UP (Switch between programs from left to right)
• ALT+PAGE DOWN (Switch between programs from right to left)
• ALT+INSERT (Cycle through the programs in most recently used order)
• ALT+HOME (Display the Start menu)
• CTRL+ALT+BREAK (Switch the client computer between a window and a full screen)
• ALT+DELETE (Display the Windows menu)
• CTRL+ALT+Minus sign (-) (Place a snapshot of the entire client window area on the Terminal server clipboard and provide the same functionality as pressing ALT+PRINT SCREEN on a local computer.)
• CTRL+ALT+Plus sign (+) (Place a snapshot of the active window in the client on the Terminal server clipboard and provide the same functionality as pressing PRINT SCREEN on a local computer.)
MICROSOFT INTERNET EXPLORER NAVIGATION
• CTRL+B (Open the Organize Favorites dialog box)
• CTRL+E (Open the Search bar)
• CTRL+F (Start the Find utility)
• CTRL+H (Open the History bar)
• CTRL+I (Open the Favorites bar)
• CTRL+L (Open the Open dialog box)
• CTRL+N (Start another instance of the browser with the same Web address)
• CTRL+O (Open the Open dialog box, the same as CTRL+L)
• CTRL+P (Open the Print dialog box)
• CTRL+R (Update the current Web page)
• CTRL+W (Close the current window)

174 perintah run (text Command) untuk Windows XP


Berikut ini adalah perintah-perintah run (text command) pada windows XP. Ada sebagian perintah yang berjalan jika sebuah software/aplikasi telah terinstal di sistem.

    Program Run Command

    Accessibility Controls = access.cpl

    Accessibility Wizard =  accwiz

    Add Hardware Wizard = hdwwiz.cpl

    Add/Remove Programs = appwiz.cpl

    Administrative Tools = control admintools

    Adobe Acrobat ( if installed ) = acrobat

    Adobe Distiller ( if installed ) =  acrodist

    Adobe ImageReady ( if installed ) = imageready

    Adobe Photoshop ( if installed ) = photoshop

    Automatic Updates = wuaucpl.cpl

    Basic Media Player = mplay32

    Bluetooth Transfer Wizard = fsquirt

    Calculator calc Ccleaner(if installed) = ccleaner

    C: Drive = c:

    Certificate Manager = cdrtmgr.msc

    Character Map = charmap

    Check Disk Utility = chkdsk

    Clipboard Viewer = clipbrd

    Command Prompt = cmd

    Command Prompt = command

    Component Services =  dcomcnfg

    Computer Management =  compmgmt.msc

    Compare Files = comp

    Control Panel = control

    Create a shared folder Wizard = shrpubw

    Date and Time Properties = timedate.cpl

    DDE Shares = ddeshare

    Device Manager = devmgmt.msc

    Direct X Control Panel ( if installed ) = directx.cpl

    Direct X Troubleshooter = dxdiag

    Disk Cleanup Utility = cleanmgr

    Disk Defragment = dfrg.msc

    Disk Partition Manager = diskmgmt.msc

    Display Properties = control desktop

    Display Properties = desk.cpl

    Display Properties(w/Appearance Tab Preselected ) = control color

    Dr. Watson System Troubleshooting Utility = drwtsn32

    Driver Verifier Utility verifier Ethereal(if installed) = ethereal

    Event Viewer = eventvwr.msc

    Files and Settings Transfer Tool = migwiz

    File Signature Verification Tool =  sigverif

    Findfast =  findfast.cpl

    Firefox = firefox

    Folders Properties = control folders

    Fonts = fonts

    Fonts Folder = fonts

    Free Cell Card Game = freecell

    Game Controllers = joy.cpl

    Group Policy Editor ( xp pro ) = gpedit.msc

    Hearts Card Game = mshearts

    Help and Support = helpctr

    Hyperterminal = hypertrm

    Hotline Client =  hotlineclient

    Iexpress Wizard =  iexpress

    Indexing Service = ciadv.msc

    Internet Connection Wizard = icwonn1

    Internet Properties = inetcpl.cpl

    Internet Setup Wizard = inetwiz

    IP Configuration =  ipconfig /all

    IP Configuration (Display DNS Cache Contents) =  ipconfig /displaydns

    IP Configuration (Delete DNS Cache Contents) =  ipconfig /flushdns

    IP Configuration (Release All Connections) =  ipconfig /release

    IP Configuration (Renew All Connections) =  ipconfig /renew

    IP Config (Refreshes DHCP & Re-Registers DNS) = ipconfig /registerdns

    IP Configuration (Display DHCP Class ID) =  ipconfig /showclassid

    IP Configuration (Modifies DHCP Class ID) =  ipconfig /setclassid

    Java Control Panel ( if installed ) = picpl32.cpl

    Java Control Panel ( if installed ) =  javaws

    Keyboard Properties = control keyboard

    Local Security Settings =  secpol.msc

    Local Users and Groups =  lusrmgr.msc

    Logs You Out of Windows =  logoff

    Malicious Software Removal Tool = mrt

    Microsoft Access ( if installed ) =  access.cpl

    Microsoft Chat = winchat

    Microsoft Excel ( if installed ) = excel

    Microsoft Diskpart = diskpart

    Microsoft Frontpage ( if installed ) = frontpg

    Microsoft Movie Maker = moviemk

    Microsoft Management Console = mmc

    

    Microsoft Narrator =  narrator

    Microsoft Paint = mspaint

    Microsoft Powerpoint = powerpnt

    Microsoft Word ( if installed ) = winword

    Microsoft Syncronization Tool = mobsync

    Minesweeper Game = winmine

    Mouse Properties = control mouse

    Mouse Properties = main.cpl

    MS-Dos Editor = edit

    MS-Dos FTP =  ftp

    Nero ( if installed ) =  nero

    Netmeeting = conf

    Network Connections = control netconnections

    Network Connections = ncpa.cpl

    Network Setup Wizard = netsetup.cpl

    Notepad = notepad

    Nview Desktop Manager ( if installed ) = nvtuicpl.cpl

    Object Packager =  packager

    ODBC Data Source Administrator = odbccp32

    ODBC Data Source Administrator = odbccp32.cpl

    On Screen Keyboard = osk

    Opens AC3 Filter ( if installed )= ac3filter.cpl

    Outlook Express = msimn

    Paint =  pbrush

    Password Properties = password.cpl

    Performance Monitor = perfmon.msc

    Performance Monitor = perfmon

    Phone and Modem Options = telephon.cpl

    Phone Dialer = dialer

    Pinball Game = pinball

    Power Configuration =  powercfg.cpl

    Printers and Faxes = control printers

    Printers Folder=  printers

    Private Characters Editor = eudcedit

    Quicktime ( if installed ) = quicktime.cpl

    Quicktime Player ( if installed ) = quicktimeplayer

    Real Player ( if installed ) =  realplay

    Regional Settings =  intl.cpl

    Registry Editor = regedit

    Registry Editor = regedit32

    Remote Access Phonebook = rasphone

    Remote Desktop = mstsc

    Removable Storage = ntmsmgr.msc

    Removable Storage Operator Requests =  ntmsoprq.msc

    Resultant Set of Policy ( xp pro ) = rsop.msc

    Scanners and Cameras = sticpl.cpl

    Scheduled Tasks control=  schedtasks

    Security Center = wscui.cpl

    Services = services.msc

    Shared Folders =  fsmgmt.msc

    Sharing Session =  rtcshare

    Shuts Down Windows = shutdown

    Sounds Recorder = sndrec32

    Sounds and Audio = mmsys.cpl

    Spider Solitare Card Game =  spider

    SQL Client Configuration = clicongf

    System Configuration Editor =  sysedit

    System Configuration Utility = msconfig

    System File Checker Utility ( Scan Immediately ) = sfc /scannow

    System File Checker Utility ( Scan Once At Next Boot ) = sfc /scanonce

    System File Checker Utility ( Scan On Every Boot ) = sfc /scanboot

    System File Checker Utility ( Return to Default Settings) = sfc /revert

    System File Checker Utility ( Purge File Cache ) = sfc /purgecache

    System File Checker Utility ( Set Cache Size to Size x ) =  sfc /cachesize=x

    System Information msinfo32 System Properties =  sysdm.cpl

    Task Manager = taskmgr

    TCP Tester  = tcptest

    Telnet Client =  telnet

    Tweak UI ( if installed ) = tweakui

    User Account Management = nusrmgr.cpl

    Utility Manager utilman

    Volume Serial Number for = C: label

    Volume Control =  sndvol32

    Windows Address Book = wab

    Windows Address Book Import Utility = wabmig

    Windows Backup Utility ( if installed ) = ntbackup

    Windows Explorer = explorer

    Windows Firewall = firewall.cpl

    Windows Installer Details = msiexec

    Windows Magnifier = magnify

    Windows Management Infrastructure = wmimgmt.msc

    Windows Media Player = wmplayer

    Windows Messenger = msnsgs

    Windows Picture Import Wizard (Need camera connected) = wiaacmgr

    Windows System Security Tool = syskey

    Windows Script host settings =  wscript

    Widnows Updte Launches = wupdmgr

    Windows Version ( shows your windows version ) = winver

    Windows XP Tour Wizard =  tourstart

    Wordpad = write

    Zoom Utility =  igfxzoom

Perintah Dasar Terminal di Linux dan DOS

DOS
Terminal Linux
Penjelasan
del rm Deletes one or more files
dir ls Displays a list of files and subdirectories in a directory
doskey /h history history List command history
echo echo Displays messages, or turns command-echoing on or off
edit vim (or other editor) Editor to edit files
assign ln Create a file or directory link
<command> /? man <command> Help about the command
break on trap Trap ctrl-break / Trap signals
cd cd Change directory
chdir pwd Display directory location
cls clear Clear screen
copy cp Copy a file
date date Displays or sets the date
exit exit Exit the command prompt
ipconfig ifconfig Display/configure network interface
mem free Displays the amount of used and free memory in your system
mkdir mkdir Create a Directory
more more or even less Displays output one screen at a time
find grep Searches for a text string in a file or files
format mke2fs or mformat Formats a disk
find grep Look for a word in files given in command line
hostname hostname Print host name of computer
move mv Moves files and renames files and directories
ping ping Send packets to a network host
ver Uname -a Operating system/shell version
win startx Start x-windows
xcopy cp -R Copy all file of directory recursively
route print route -n Print routing table
fc diff Compare two files and show differences
reboot shutdown -r now Reboot system
ren mv Renames a file or files
set set or env List all environment variables
tracert traceroute Show routes and router hops to given network destination
time date Displays or sets the system time
tasklist ps -aux top top List executable name, process ID number and memory usage of active processes
type cat Dump contents of a file to users screen

DAFTAR LENGKAP PERINTAH DOS DI WINDOWS XP

DOS (Disk Operating System) adalah sistem operasi berbasis teks yang dikeluarkan microsoft sebelum windows. Sama seperti Terminal di Linux, DOS memiliki daftar perintah berbasis teks yang harus diketik di Console DOS atau lazim disebut Command Prompt. Mengetahui penggunaan perintah DOS adalah pengetahuan tersendiri yang perlu dipahami oleh administrator jaringan berbasis windows. Anda akan lebih mudah menguasai NetBios Hacking atau remote komputer berbasis console di windows dengan mengetahui perintah- perintah DOS.

Berikut daftar lengkap perintah DOS beserta fungsinya :

# ADDUSERS : Menambah/melihat daftar user melalui CSV file
# ARP : Address Resolution Protocol
# ASSOC : Mengganti ekstensi file asosiasi
# ASSOCIAT : Menjalankan file asosiasi satu langkah
# AT : Menjadwalkan perintah yang akan dijalankan lain waktu
# ATTRIB : Mengganti attribut file

# BOOTCFG : Mengedit pengaturan Windows boot
# BROWSTAT : Mengambil domain, browser dan PDC info

# CACLS : Mengganti permision file
# CALL : Memanggil salah satu program dari kelompok program
# CD : Pindah direktori/pindah folder
# CHANGE : Mengganti properties Terminal Server Session
# CHKDSK : Cek disk/harddisk dan memperbaiki permasalah harddisk
# CHKNTFS : Cek NTFS file system
# CHOICE : Menyetujui/memilih tombol input keyboard untuk memanggil file
# CIPHER : Enkripsi/dekripsi file atau folder
# CleanMgr : Menghapus otomatis temporary file termasuk recycle bin
# CLEARMEM : Menghapus/membersihkan memory
# CLIP : Mengcopy STDIN ke Windows clipboard.
# CLS : Membersihkan/menghilangkan layar
# CLUSTER : Clustering Windows
# CMD : Memulai/membuka command prompt
# COLOR : Mengganti warna layar command prompt
# COMP : Membandingkan isi dua file atau lebih
# COMPACT : Mengompress file atau folder pada partisi NTFS
# COMPRESS : Mengompress sebuah file pada partisis NTFS
# CON2PRT : Menghubungkan atau memutus koneksi printer
# CONVERT : Mengganti dari partisi FAT ke NTFS.
# COPY : Mencopy satu atau lebih files
# CSVDE : Import/Export Active Directory data

# DATE : Menampilkan tanggal
# Dcomcnfg : DCOM Configuration Utility
# DEFRAG : Mendefragmen harddisk
# DEL : Menghapus file
# DELPROF : Menghapus profil user NT
# DELTREE : Menghapus folder dan subfolder
# DevCon : Device Manager Command Line Utility
# DIR : Menampilkan daftar file dan folder
# DIRUSE : Menampilkan daftar disk yang terpakai
# DISKCOMP : Membandingkan isi dua buah floppy disk
# DISKCOPY : Mengcopy isi Floppy disk
# DNSSTAT : DNS Statistik
# DOSKEY : Mengedit baris perintah, memanggil ulang perintah, dan membuat macros
# DSADD : Menambah user dan grup komputer di active directory
# DSQUERY : Menampilkan daftar item di active directory
# DSMOD : Memodifikasi user dan grup komputer di active directory

# ECHO : Menampilkan pesan di layar
# ENDLOCAL : Menampilkan perubahan pada akhir kelompok file
# ERASE : Menghapus satu atau lebih file
# EXIT : Keluar dari commant prompt
# EXPAND : Menggelar file
# EXTRACT : Mengekstrak file

# FC : Membandingkan dua file
# FDISK : Menampilkan format disk dan partisi
# FIND : Mencari sebuah file
# FINDSTR : Mencari file berdasarkan potongan kata
# FOR : Menampilkan kondisi terakhir yang terjadi pada waktu terakhir
# FORFILES : Menampilkan proses kelompok file
# FORMAT : Memformat disk
# FREEDISK : Melihat kapasitas disk yang kosong
# FSUTIL : Utilitas file dan volume file
# FTP : File Transfer Protocol
# FTYPE : Menampilkan atau mengganti ekstensi file

# GLOBAL : Menampilkan user dari grup global
# GOTO : Mengakses langsung kelompok program melalui label program pada command line

# HELP : Bantuan
# HFNETCHK : Network Security Hotfix Checker

# IF : Salah satu perintah kondisi
# IFMEMBER : Kondisi salah satu user di NT Workgroup
# IPCONFIG : Konfigurasi IP (Internet Protocol)

# KILL : Mematikan/menghapus program yang sedang berjalan di memory

# LABEL : Mengganti label disk
# LOCAL : Menampilkan anggota sebuah grup
# LOGEVENT : Menulis file di NT event viewer.
# LOGOFF : Logoff
# LOGTIME : Menampilkan Log tanggal dan waktu pada sebuah file

# MAPISEND : Mengirim e-mail dengan baris perintah
# MEM : Menampilkan memori yang terpakai
# MD : Membuat sebuah folder
# MODE : Mengkonfigurasi system device
# MORE : Menampilakn output/hasil berikutnya dilayar
# MOUNTVOL : Manajemen volume mount point
# MOVE : Memindahkan file
# MOVEUSER : Memindahkan user
# MSG : Mengirim pesan
# MSIEXEC : Microsoft Windows Installer
# MSINFO : Windows NT diagnosik
# MSTSC : Terminal Server Connection (Remote Desktop Protocol)
# MUNGE : Mencari dan mereplika teks dalam sebuah file
# MV : Mencopy file yang sedang aktif

# NET : Manajemen jaringan yang digunakan
# NETDOM : Domain Manager
# NETSH : Mengkonfigurasi network protocols
# NETSVC : Daftar perintah Service Controller
# NBTSTAT : Menampilkan statistik jaringan (NetBIOS TCP/IP)
# NETSTAT : Menampilkan statistik jaringan (TCP/IP)
# NOW : Menampilkan tanggal dan waktu sekarang
# NSLOOKUP : Name server lookup
# NTBACKUP : Membackup file
# NTRIGHTS : Mengedit user
# PATH : Menampilkan alamat (path) sebuah program
# PATHPING : Menelusuri jejak koneksi yang terganggu dan kehilangan paket
# PAUSE : Mengentikan proses sejenak pada program atau perintah yang sedang berjalan
# PERMS : Menampilkan user permition
# PERFMON : Memonitor permorma
# PING : Mengetes koneksi jaringan
# POPD : Restore ke harga awal pada direktori asli berdasarkan PUSHD
# PORTQRY : Menampilkan status port dan services
# PRINT : Mencetak teks
# PRNCNFG : Menampilkan, mengkonfigurasi atau mengganti nama printer
# PRNMNGR : Menambah, menghapus atau mendefault printer
# PROMPT : Mengganti perintah
# PsExec : Mengeksekusi proses secara remote
# PsFile : Menampilkan file yang terbuka secara remote
# PsGetSid : Menampilkan SID komputer pengguna
# PsInfo : Menampilkan informasi sistem komputer
# PsKill : Mematikan proses berdasarkan nama atau ID proses
# PsList : Menampilkan detail proses yang sedang berjalan
# PsLoggedOn : Melihat siapa yang sedang Logon baik local maupun sharing
# PsLogList : Menampilkan rekaman LOG
# PsPasswd : Mengganti password account
# PsService : Menampilkan dan mengontrol services
# PsShutdown : Shutdown atau merestart komputer
# PsSuspend : Suspend
# PUSHD : Menyimpan kemudian mengganti pada direktori asli
# QGREP : Mencari file berdasarkan pola

# RASDIAL : Manajemen RAS connections
# RASPHONE : Manajemen RAS connections
# RECOVER : Merecover file yang rusak dari disk
# REG : Membaca, mengeset atau menghapus registry key atau value
# REGEDIT : Mengimpor/eksport pengaturan registry
# REGSVR32 : Register atau unregister DLL file
# REGINI : Mengganti Registry Permissions
# REM : Merekam komentar pada kelompok file
# REN : Mengganti nama file
# REPLACE : Menindih (replace) atau mengupdate file dengan file lainya
# RD : Menghapus folder
# RDISK : Membuat Recovery Disk
# RMTSHARE : Sharing folder atau printer
# ROBOCOPY : Menyalin file atau folder secara keseluruhan (asli)
# ROUTE : Manipulasi network routing tabel
# RUNAS : Menjalankan program pada user account berbeda
# RUNDLL32 : Menjalankan perintah DLL32

# SC : Service Control
# SCHTASKS : Membuat atau mengedit schedule task
# SCLIST : Menampilkan service NT yang sedang berjalan
# ScriptIt : Mengontrol aplikasi GUI
# SET : Menampilkan, mengeset atau menghapus variabel tertentu
# SETLOCAL : Mengubah local konfigurasi sementara pada kelompok file
# SETX : Mengatur konfigurasi variabel secara permanen
# SHARE : Menampilkan atau mengedit data/printer sharing
# SHIFT : Menyisipkan parameter pada kelompok file
# SHORTCUT : Membuat shortcut file
# SHOWGRPS : Menampilkan NT Workgroups user yang tergabung
# SHOWMBRS : Menampilkan keanggotaan user pada sebuah workgroup
# SHUTDOWN : Mematikan komputer
# SLEEP : Mematikan sementara (x second)
# SOON : Menjadwalkan perintah agar berjalan pada waktu yang akan datang
# SORT : Sort input
# START : Menjalankan program tertentu pada jendela terpisah
# SU : Switch User
# SUBINACL : Edit file, folder Permissions, Ownership dan Domain
# SUBST : Mengurutkan lokasi berdasarkan drive letter
# SYSTEMINFO : Menampilkan daftar konfigurasi sistem

# TASKLIST : Menampilkan daftar aplikasi dan service yang sedang berjalan
# TIME : Menampilkan atau mengkonfigurasi tanggal/waktu
# TIMEOUT : Penundaan proses
# TITLE : Mengatur judul jendela CMD.EXE pada waktu berjalan
# TOUCH : Mengganti stempel waktu (timestamps) file
# TRACERT : Menelusuri route jaringan pada remote host
# TREE : Menampilkan folder terstruktur pada mode grafis
# TYPE : Menampilkan isi sebuah file

# USRSTAT : Menampilkan daftar nama domain dan sesi login terakhir

# VER : Menampilkan informasi versi
# VERIFY : Memverifikasi file yang telah disimpan
# VOL : Menampilkan label disk

# WHERE : Menentukan dan menampilkan lokasi file pada stuktur direktori
# WHOAMI : Menampilkan UserName dan domain sebenarnya
# WINDIFF : Membandingkan isi dua buah file dan konfigurasinya
# WINMSD : Diagnosa sistem windows
# WINMSDP : Diagnosa sistem windows lainya
# WMIC : Perintah WMI

# XCACLS : Mengganti file permission
# XCOPY : mengcopy files dan folder
Related Posts Plugin for WordPress, Blogger...