Iklan1

Saturday, May 10, 2014

Cara Mengetahui IP Public Yang Dipakai Untuk Akses Internet

Assalamualaykum,

Alo0oo...
Apa itu IP Public?

Ip Public merupakan ip yang dialokasikan untuk koneksi internet pelanggan oleh pihak ISP (Internet Service Provider). Ip public inilah yang akan dikenali dari luar. Jika ada kenal IP 192.168.x.x atau 10.xx.xx.xx itu merupakan ip private bisa juga disebut ip LAN (Local Ip Network). IP LAN dapat dilihat dengan mengetikkan ipconfig /all pada command prompt:

Sumber : www.elektroda.pl

Lalu, Bagaimana cara liat ip public yang kita pakai ?

Ada 2 cara yang dapat dilakukan dari sisi pelanggan / customer :
1. Dari  Halaman Status pada saat mengakses modem dengan web browser Modem
Sumber : forum.lowyat.net
2. Dengan mengakses situs-situs yang memberikan layanan What is my ip ?.
Sumber : www.enigmazone.net

Berikut Video Tutorial yang baru saya buat :

Demikian Semoga bermanfaat.

Wassalamualaykum

Sunday, March 2, 2014

Kombinasi Koman XCOPY pada command Prompt


Alooo, Assalamualaykum....

Ketikan xcopy /? pada commad prompt maka akan kamu dapat :
C:\Users\fulan>xcopy /?
Copies files and directory trees.

XCOPY source [destination] [/A | /M] [/D[:date]] [/P] [/S [/E]] [/V] [/W]
                           [/C] [/I] [/Q] [/F] [/L] [/G] [/H] [/R] [/T] [/U]
                           [/K] [/N] [/O] [/X] [/Y] [/-Y] [/Z] [/B]
                           [/EXCLUDE:file1[+file2][+file3]...]

  source       Specifies the file(s) to copy.
  destination  Specifies the location and/or name of new files.
  /A           Copies only files with the archive attribute set,
               doesn't change the attribute.
  /M           Copies only files with the archive attribute set,
               turns off the archive attribute.
  /D:m-d-y     Copies files changed on or after the specified date.
               If no date is given, copies only those files whose
               source time is newer than the destination time.
  /EXCLUDE:file1[+file2][+file3]...
               Specifies a list of files containing strings.  Each string
               should be in a separate line in the files.  When any of the
               strings match any part of the absolute path of the file to be
               copied, that file will be excluded from being copied.  For
               example, specifying a string like \obj\ or .obj will exclude
               all files underneath the directory obj or all files with the
               .obj extension respectively.
  /P           Prompts you before creating each destination file.
  /S           Copies directories and subdirectories except empty ones.
  /E           Copies directories and subdirectories, including empty ones.
               Same as /S /E. May be used to modify /T.
  /V           Verifies the size of each new file.
  /W           Prompts you to press a key before copying.
  /C           Continues copying even if errors occur.
  /I           If destination does not exist and copying more than one file,
               assumes that destination must be a directory.
  /Q           Does not display file names while copying.
  /F           Displays full source and destination file names while copying.
  /L           Displays files that would be copied.
  /G           Allows the copying of encrypted files to destination that does
               not support encryption.
  /H           Copies hidden and system files also.
  /R           Overwrites read-only files.
  /T           Creates directory structure, but does not copy files. Does not
               include empty directories or subdirectories. /T /E includes
               empty directories and subdirectories.
  /U           Copies only files that already exist in destination.
  /K           Copies attributes. Normal Xcopy will reset read-only attributes.
  /N           Copies using the generated short names.
  /O           Copies file ownership and ACL information.
  /X           Copies file audit settings (implies /O).
  /Y           Suppresses prompting to confirm you want to overwrite an
               existing destination file.
  /-Y          Causes prompting to confirm you want to overwrite an
               existing destination file.
  /Z           Copies networked files in restartable mode.
  /B           Copies the Symbolic Link itself versus the target of the link.
  /J           Copies using unbuffered I/O. Recommended for very large files.

The switch /Y may be preset in the COPYCMD environment variable.
This may be overridden with /-Y on the command line.

Demikian, Walaykumsalam Wr Wb....


link youtube untuk tutorial yang gak ada di blog ini : adamaloOo

Copy File dan Directori Menggunakan CMD (Command Prompt)

Aloo, Assalamualaykum...
Untuk meng-copy banyak file dan directories tree kita menggunakan XCOPY daripada COPY (hanya untuk file saja). Berikut langkah-langkahnya....

Masuk ke command prompt ada beberapa cara :
1. Start > Run > ketik cmd , maka akan muncul command prompt
2. Tekan secara bersamaan tombol Windows+R >ketik cmd, command prompt muncul

Setelah muncul command prompt ketikan:
misalnya seperti berikut :

C:\users\fulan\Downloads\ D:\Download\  /s /e /c

Maksudnya kopi semua folder yang ada isinya dan folder kosong /e dan tetap kopi walaupun terjadi error saat meng-kopi.

atau ada cotoh lain sebagai berikut :

C:\>xcopy *.* d:          file saja
C:\>xcopy *.* d: /s       file dan folder yang tidak kosong
C:\>xcopy *.* d: /s /e   file dan folder yang tidak kosong dan kosong

Demikian, Walaykumsalam Wr Wb


Note:
Untuk definisi lengkap XCOPY dapat kamu liat disini.
link youtube untuk tutorial yang gak ada di blog ini : adamaloOo