Showing posts with label laptop. Show all posts
Showing posts with label laptop. Show all posts

Meningkatkan performa windows 7

OS Windows 7 dirilis menggantikan OS Windows Vista. Presentasi Microsoft tentang Windows 7 pada tahun 2008 lebih fokus pada dukungan multi-touch pada layar, desain ulang taskbar yang sekarang dikenal dengan nama Superbar, sebuah sistem jaringan rumahan bernama HomeGroup, dan peningkatan performa.[wikipedia]




Beberapa Tips untuk meningkatkan performa windows 7 di Notebook / Netbook / PC anda:

1. Matikan efek yang tidak penting/setting best performance
Windows 7 syarat dengan animasi, dengan kebanyakan animasi justru membuat kinerja komputer atau laptop menjadi lemot. Untuk itu matikan efek yang tidak penting.

Berikut cara mematikan visual effect dari Windows 7:
Klik kanan pada [komputer] => klik [Properties] => klik [advance system setting] pada bagian performance klik [setting] setelah itu akan muncul jendela Performance Options. => klik [adjust for best performance]. Hilangkan semua tanda centang, kecuali pada dua opsi paling bawah, kemudian klik [Ok].

2. Optimalkan Hard disk
Ketersedian memory dalam hard disk sangat berpengaruh terhadap kinerja komputer, untuk itu jangan terlalu banyak menyimpan data-data yang tidak penting. Kebanyakan menggunakan memory membuat komputer jadi lemot.

Setiap ada perubahan pada Windows, biasanya akan membuat point system restore. Semakin banyak point restore yang dibuat maka kapasitas hard disk akan berkurang. System restore sendiri sangat berguna ketika terjadi eror pada Windows, tetap pergunakan sytem.

Nah, biar tidak selalu menghapus point restore yang sudah terlalu lama, sebaiknya kita atur kapasita hard disk yang akan dipergunakan sebagai restore point. Caranya sebagai berikut:
-Klik kanan [Computer] => pilih [Properties] => klik [System Protection] => klik pada tombol [Configure] => Kemudian atur kapasitas yang hendak digunakan. Jangan terlalu besar, 5-10 % dari sisa kapasitas hard disk yang tersisa sudah cukup, klik OK.

3. Nonaktifkan fitur-fitur yang jarang dipergunakan
Memang Windows 7 syarat akan berbagai animasi. Akan tetapi semua animasi itu dapat di hilangkan dengan cara berikut:
* Nonaktifkan Aero themes.
Klik kanan [desktop] => klik [personalize] => pilih [windows 7 basic]. tutup jendela personalize.

* Non aktifkan Aero Peek.
Aero peek ini digunakan untuk membuat transparan jendela yang sedang terbuka. Untuk menonaktifkan fitur ini dengan cara : Klik kanan pada [taskbar] => klik [properties] => hilangkan tanda centang pada “ use aero Peek to preview desktop”

* Nonaktifkan aero shake.
Cara:
- Buka group policy editor dengan cara klik tombol [start] kemudian ketik “gpedit.msc” (tanpa tanda”) kemudian tekan [enter].
- Setelah muncul halaman local group policy editor, masuk ke [User Configuration] => [administrative template] => [desktop]. Pada jendela sebelah kanan klik ganda “ turn off aero shake windows minimizing mouse gesture” => pilih [enable] dan klik [OK].

* Nonaktifkan aero snap
Cara : Masuk ke [control panel], Klik [ease of acces] => klik [ease of acces center] => klik[Make the mouse easier to use]
Beri centang pada ”Prevent windows from being automatically arranged when to the edge of the screen”, Klik OK.

4. Lakukan defragmentasi Hard disk paling tidak satu bulan sekali
Cara: [Start] => [all program] => [Accessories] => [System tools] => [disk defragmenter]. Pilih salah satu drive kemudian klik [defragment].

5.  Matikan aplikasi yang tidak perlu dijalankan pada saat startup
[Start] => ketik “msconfig” tekan [enter] => Klik pada tab [startup] => hilangkan centang pada aplikasi yang tidak diperlu dijalankan saat startup, Klik OK.

6. Nonaktifkan service yang tidak diperlukan
Cara: [Start] => ketik “services” (tanpa tanda “) => tekan [enter]. Klik kanan pada service yang mau dinonaktifkan kemudian klik [properties]. Klik [disable] jika ingin service tidak selalu dijalankan pada saat windows dinyalakan, atau klik [stop] untuk mematikannya, Klik [OK].

Sumber :  http://goo.gl/IhCz9




   

How to Share netbook wifi internet access

My Netbook is Axio pico, with OS Ubuntu 11.04
below for setup wifi device to Access Point Indoor room
Conncet your netbook to internet, and open your terminal console

#sudo apt-get install hostpad
#sudo apt-get install dhcp3-server
#sudo apt-get update dhcp3-server
#sudo gedit /etc/dhcp3/dhcpd.conf

write this config:
# /etc/dhcp3/dhcpd.conf
ddns-update-style none;
option subnet-mask 255.255.255.0;
#default-lease-time 600;
#max-lease-time 7200;
#authoritative;
subnet 192.168.1.0 netmask 255.255.255.0 {
  range 192.168.1.1 192.168.1.254;
  option domain-name-servers 8.8.8.8, 8.8.4.4;
  option domain-name "internal.ubuntu";
  option routers 192.168.1.1;
  option broadcast-address 192.168.1.255;
#  default-lease-time 600;
#  max-lease-time 7200;
}

before exit, don't forget save configuration. Than do command at below,

sudo gedit /etc/default/dhcp3-server

write this config:
# Defaults for dhcp initscript
# sourced by /etc/init.d/dhcp
# installed at /etc/default/dhcp3-server by the maintainer scripts
#
# This is a POSIX shell fragment
#
# On what interfaces should the DHCP server (dhcpd) serve DHCP requests?
# Separate multiple interfaces with spaces, e.g. "eth0 eth1".

INTERFACES="wlan0"

before exit, don't forget save configuration.
For edit Access Point configuration, follow below,

sudo gedit hostapd.conf

write this config:

interface=wlan0
driver=nl80211
ssid=ubuntuspot
channel=1
hw_mode=g
auth_algs=1
wpa=3
wpa_passphrase=1234567890
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP CCMP
rsn_pairwise=CCMP

before exit, don't forget save configuration. Than do command at below,


sudo gedit /etc/network/interfaces

auto lo eth0 wlan0
iface lo inet loopback
iface eth0 inet static
address 192.168.2.2
netmask 255.255.255.0
gateway 192.168.1.1
iface wlan0 inet dhcp
before exit, don't forget save configuration. Than do command at below,
restart network.
$sudo /etc/init.d/network restart

for setting IPForwarding, do below:

sudo gedit /etc/sysctl.conf

write this config:

# Uncomment the next line to enable packet forwarding for IPv4
net.ipv4.ip_forward=1
# Uncomment the next line to enable packet forwarding for IPv6
#  Enabling this option disables Stateless Address Autoconfiguration
#  based on Router Advertisements for this host
net.ipv6.conf.all.forwarding=1

before exit, don't forget save configuration.

All Configuration is done, then connect modem to Netbook (USB Port)

after modem connect to netbook, follow this command below.

$eject /dev/sr0

$sudo wvdial
$sudo sysctl -w net.ipv4.conf.all.forwarding=1
$sudo iptables -t nat -A POSTROUTING -o ppp0 -j MASQUERADE
$sudo ifconfig wlan0 inet 192.168.1.1 netmask 255.255.255.0
$sudo hostapd -d hostapd.conf
$sudo /etc/init.d/dhcp3-server start

When you pairing wirelless connect, name of wirelless network is "ubuntuspot" and ask then need to insert keys, the keys is 1234567890.

This book recommand to learn basic unix command.

 

So Enjoy

Dijual Netbook ACER “Aspire One 722 “ Red

Kondisi : Mulus 99 % Pembelian bulan november akhir 2011

Lengkap : Dus, buku manual, kartu garansi, softcase

Harga : Rp. 2.6jt (bisa nego)

Berikut penampakannya :


Minat serius SMS langsung ke : 021-95266364



SOLD OUT