Tampilkan postingan dengan label ubuntu. Tampilkan semua postingan
Tampilkan postingan dengan label ubuntu. Tampilkan semua postingan

Senin, 04 April 2011

Setting Modem GSM di Ubuntu

Alhamdulillah,.. . Kemarin bingung nguprek modem gsm yg gak ada drivernya buat ubuntu udah bisa :D

pertama install paket usb-modeswitch
berguna untuk mengubah mode usb menjadi modem, karena secara default modem yang belum ada drivernya langsung dideteksi sebagai usb flash

ipan@ipan:~$ sudo apt-get install usb-modeswitch

lihat nama device modem yang terpasang

ipan@ipan:~$ lsusb
Bus 002 Device 005: ID 19d2:0031 ONDA Communication S.p.A. ZTE MF636
Bus 002 Device 002: ID 8087:0020
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 002: ID 8087:0020
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

lihat apakah versi device sudah ada atau belum
ipan@ipan:~$ ls /etc/usb_modeswitch.d/
0421:0610 0af0:6811 0af0:7701 1033:0035 19d2:0053
0471:1210 0af0:6911 0af0:7801 106c:3b03 19d2:2000
0471:1237 0af0:6951 0af0:7901 106c:3b06 19d2:2000:uPr=USB_ZTE
04e8:f000 0af0:6971 0af0:8200 1076:7f40 19d2:2000:uPr=ZTE_CDMA
05c6:1000:sVe=Option 0af0:7011 0af0:8201 1199:0fff 19d2:fff5
05c6:1000:uMa=AnyDATA 0af0:7031 0af0:c031 12d1:1001 19d2:fff6
05c6:1000:uMa=SAMSUNG 0af0:7051 0af0:d013 12d1:1003 1a8d:1000
05c6:1000:uMa=Vertex 0af0:7071 0af0:d031 12d1:1414 1ab7:5700
05c6:2001 0af0:7111 0af0:d033 12d1:1446 1b7d:0700
05c6:f000 0af0:7211 0af0:d035 12d1:1520 1bbb:f000
072f:100d 0af0:7251 0af0:d055 12d1:1521 1c9e:1001
0930:0d46 0af0:7271 0af0:d057 1410:5010 1c9e:9200
0ace:2011 0af0:7301 0af0:d155 1410:5020 1c9e:f000
0ace:20ff 0af0:7311 0af0:d157 1410:5030 1dd6:1000
0af0:6711 0af0:7361 0af0:d255 1410:5031 1e0e:f000
0af0:6731 0af0:7381 0af0:d257 148f:2578 1f28:0021
0af0:6751 0af0:7401 0af0:d357 16d8:6803
0af0:6771 0af0:7501 0fce:d0e1 16d8:700a
0af0:6791 0af0:7601 1004:1000 16d8:f000

jika ada langsung tambahkan dan aktifkan modem di System >> Administration >> Network Connections tambah pada mobile Broadband

jika belum ada nama device modem di mobile BroadBand buat file baru
ipan@ipan:~$ sudo nano /etc/modprobe.d/zte-mf633.conf
options usbserial vendor=0x19d2 product=0x0031

vendor dan product disapat dari nama device, lihat pada perintah lsusb
save
reboot

semoga Bermanfaat :)

Read More..

Jumat, 01 April 2011

Create a File Swap

How do I add more swap?

Swap is generally associated with a swap partition, perhaps because the user is prompted to create a swap partition at the time of installation. In fact, any file can be used as a swapping device, be it a partition or a conventional file. Although, to improve the responsiveness, it's recommended to have a good sized amount of RAM available. Swap can be added by adding a swap file. Keep in mind that when creating a swap file that it may not necessarily be using contiguous disk blocks (as a swap partition will), and this could have a negative impact on performance as disk access times may be longer and the more your system uses swap, the worse it will be. The Linux kernel also accesses swap disk block IO directly bypassing all caching, metadata and filesystem code, so a swap file should have no ill effect on the stability of your base filesystem.

Four-step Process to Add Swap

Creating a file the size you want.
Formatting that file to create a swapping device.
Adding the swap to the running system.
Making the change permanent.

For Adding a 512 MB swap

Creating a file for 512 MB size you want:

We will create a /mnt/512Mb.swap swap file and set the permissions so that users cannot read it directly.

sudo dd if=/dev/zero of=/mnt/512Mb.swap bs=1M count=512
sudo chmod 600 /mnt/512Mb.swap

Here count=512, means we want our file to contain 512 blocks of bs=1M, which means block size = 1 mebibyte (1 048 576 bytes). Be careful *not* to do this dd of=/mnt/512Mb.swap bs=1M seek=512 count=0 Though the file grows to 512Mb immediately, it will have holes that makes it unusable.

By default your swap file may be created world readable. We set the 600 mode permissions in order to prevent users from being able to read potentially sensitive information from the swap file.

Formatting that file to create a swapping device:

sudo mkswap /mnt/512Mb.swap

Adding the swap to the running system:

sudo swapon /mnt/512Mb.swap

The additional swap is now available and can be seen by "cat /proc/meminfo"

Making the change permanent:

Edit the /etc/fstab:

gksudo gedit /etc/fstab

Add this line at the end of the file:

/mnt/512Mb.swap none swap sw 0 0

Save. After the next reboot the swap will be used automatically.

Read More..

Mounting partisi NTFS otomatis di Ubuntu

Let’s start
Buka Terminal melalui menu: Applications → Accessories → Terminal
Cari tahu letak partisi NTFS, dengan mengetikkan :
$ sudo fdisk -l | grep NTFS

/dev/sda1 * 1 3187 25599546 7 HPFS/NTFS

/dev/sda5 3188 9730 52550781+ 7 HPFS/NTFS

Buat direktori untuk tujuan mounting partisi NTFS tersebut, misalnya:
$sudo mkdir /media/win_c
$sudo mkdir /media/win_d
Edit file /etc/fstab$ sudo gedit /etc/fstab
Tambahkan baris berikut ini:
/dev/sda1 /media/win_c ntfs-3g defaults,force 0 0
/dev/sda8 /media/win_d ntfs-3g defaults,force 0 0
Catatan:

ntfs-3g adalah driver yang digunakan untuk bisa melakukan mounting read/write pada partisi dengan filesystem NTFS.

Simpan hasil editan tersebut, kemudian tutup aplikasi gedit. Kemudian restart PC dan lihat hasilnya.
Read More..

Senin, 20 Desember 2010

PCE-10-04_Install Ubuntu 10.10 lewat VMware

Buka Vm-ware


Pilih "New Virtual Machine", pilih "Typical" klik Next.



Pilih " I will install the operating system later". Klik Next.



Pilih Linux >> Ubuntu.



Buat nama virtual machine dan tempat virtual ubuntu . pilih Next.



Masukan jumlah kapasitas hardisk virtual untuk ubuntu. Pilih "Store virtual disk as a single file. Pilih next.



Pilih "costumize hardware".



Pilih "New CD/DVD (IDE)", Pilih "Use Iso Image" karena ubuntu yang di install dari file ISO, masukan file ISO Ubuntu. Lalu pilih OK.



Pilih Finish.



Pilih "Power on this virtual machine" untuk menjalankan VMware.





Setelah muncul tampilan Ubuntu pilih bahasa.



Pilih "Install Ubuntu". Enter.



Setelah muncul tampilan Bahasa lalu pilih "forward".



Ubuntu sedang melakukan pengecekan. Pilih "forward"



Proses pemartisian pilih "Specify partitions manually ( advanced)" untuk mempartisi secara manual.



Pilih "new partition Table".



Klik pada free space lalu pilih "add" untuk membuat partisi.



Buat partisi root sejumlah 3GB, mount point pada ( / ). Lalu pilih OK.



Buat partisi usr sejumlah 3 GB mount point pada ( /usr ). lalu OK.



Buat partisi home sejumlah 1,5 GB, mount point pada ( /home ). Lalu OK



Buat partisi swap, supaya optimal ukuran partisi swap = 2 x ram. Lalu OK.



Setelah dibuat maka akan muncul kurang lebih seperti gambar ini. Jika selesai pilih "Install Now"



Pilih lokasi "Jakarta". Lalu pilih "Forward"



Pilih jenis keyboard. Jika jenis keyboard default lanjutkan "Forward"



Masukan Nama, nama computer, user dan password. Pilih "forward"



Ubuntu sedang melakukan proses installasi.



Setelah instalasi selesai pilih "Restart Now" untuk melakukan restart.



Tekan Enter.



Setelah proses instalasi selesai, akan muncul tampilan login. Masukan password.





Tampilan desktop dari Ubuntu 10.10.


Read More..

Rabu, 29 September 2010

complete your ubuntu


Get your system up to date with :

sudo aptitude update && sudo aptitude full-upgrade

ClamAV

sudo aptitude install clamav clamtk
wget http://files.avast.com/files/linux/avast4workstation_1.3.0-2_i386.deb && sudo dpkg -i avast4workstation_1.3.0-2_i386.deb


3 รข?? Essential tools for compiling from sources

sudo aptitude install build-essential checkinstall cdbs devscripts dh-make fakeroot libxml-parser-perl check avahi-daemon


sudo aptitude install sun-java6-jre sun-java6-plugin equivs

sudo aptitude install vlc mplayer
sudo aptitude install non-free-codecs libxine1-ffmpeg gxine mencoder mpeg2dec vorbis-tools id3v2 mpg321 mpg123 libflac++6 ffmpeg libmp4v2-0 totem-mozilla icedax tagtool easytag id3tool lame nautilus-script-audio-convert libmad0 libjpeg-progs libmpcdec3 libquicktime1 flac faac faad sox ffmpeg2theora libmpeg2-4 uudeview flac libmpeg3-1 mpeg3-utils mpegdemux liba52-dev

Gstreammer 0.10

sudo aptitude install gstreamer0.10-ffmpeg gstreamer0.10-fluendo-mp3 gstreamer0.10-gnonlin gstreamer0.10-pitfdll gstreamer0.10-sdl gstreamer0.10-plugins-bad-multiverse gstreamer0.10-schroedinger gstreamer0.10-plugins-ugly-multiverse totem-gstreamer

* More programs

sudo aptitude install gstreamer-dbus-media-service gstreamer-tools ubuntu-restricted-extras

* Enable dvd support

sudo aptitude install libdvdcss2 && sudo /usr/share/doc/libdvdread4/./install-css.sh

* Flash

sudo aptitude install gsfonts gsfonts-x11 flashplugin-nonfree

start up
sudo aptitude install simple-ccsm


sudo aptitude install wine playonlinux

rar
sudo aptitude install unace rar unrar zip unzip p7zip-full p7zip-rar sharutils uudeview mpack lha arj cabextract file-roller

download
sudo aptitude install multiget
sudo aptitude install azureus

GIMP

Add the launchpad repository :
sudo add-apt-repository ppa:matthaeus123/mrw-gimp-svn && sudo aptitude update

Then install it with the following command :
sudo aptitude install gimp gimp-data gimp-plugin-registry gimp-data-extras

PINTA image editor

Add the launchpad repository :
sudo add-apt-repository ppa:moonlight-team/pinta && sudo aptitude update

Then install it with the following command :
sudo aptitude install pinta

mount image
sudo aptitude install libksba8 libenca0 libtwolame0 fuseiso kommander p7zip-full gnupg-agent gnupg2 pinentry-qt mencoder cdrdao && wget http://darkstar.ist.utl.pt/getdeb/ubuntu/jaunty/ac/acetoneiso_2.1.1-1~getdeb1_i386.deb && sudo dpkg -i acetoneiso_2.1.1-1~getdeb1_i386.deb


desktop
sudo aptitude install google-gadgets-gtk
sudo aptitude install google-desktop-linux

Ubuntu Tweak
sudo add-apt-repository ppa:ubuntu-tweak-testing/ppa && sudo aptitude update
sudo aptitude install ubuntu-tweak Read More..

Senin, 02 November 2009

Ubuntu 9.10

Ubuntu 9.10








Available for Desktop, Netbook and Server






Email and chat

Chat with friends and colleagues through Empathy which integrates: Yahoo, Gmail, MSN, Jabber, AOL, QQ and many more.



Evolution gives you email, an address book and a calendar and works well with colleagues and friends using MS Outlook.






Browse the Internet

Ubuntu includes Mozilla Firefox 3.5 for faster and safer browsing.



For a choice of other open-source web browsers visit the Software Centre and take your pick.






Photos

Upload from your camera or phone to F-Spot.



Manage, tag, share and sort your photos.



Upload easily to your favourite social network or photo-sharing sites inlcuding: Flickr, Facebook, Picassa and many others.





Music and videos

Plug in your PSP, iPod, MP3 player and use Rythmbox to download, store, buy and play music.




Share playlists with your friends.



Access Last.fm directly through Rythmbox to stream your favourite music.



Stream and play video from YouTube, BBC and others.





Office applications

Create professional documents, spreadsheets and presentations with OpenOffice.org 3.0.



OpenOffice.org is compatible with all office applications including Microsoft Office.




The big difference is that OpenOffice.org is free (and promises never to introduce Mr Clippy)





Play games

Over 400 completely free and completely cool games. Solitaire is not the only game in town.



Visit the Software Centre to easily browse, select and install games.





Store, sync and share

Instant access to thousands of free and open-source applications




Categories include: Education, Games, Sound and Video, Graphics, Programming and Office.



Simply select the applications you want to use and the Software Center will add them to your computer



No CDs, no licenses, no hassle.





Software Center

Instant access to thousands of free and open-source applications



Categories include: Education, Games, Sound and Video, Graphics, Programming and Office.




Simply select the applications you want to use and the Software Center will add them to your computer



No CDs, no licenses, no hassle.





Accessibility

At the core of the Ubuntu philosophy is the belief that computing is for everyone and whatever your circumstances. Ubuntu is one of the most accessible operating systems around and is fully translated into 23 languages with many more to follow.

Read More..
za.IPAN's Blog © 2008. Design by :Yanku Templates Sponsored by: Tutorial87 Commentcute