<body><script type="text/javascript"> function setAttributeOnload(object, attribute, val) { if(window.addEventListener) { window.addEventListener('load', function(){ object[attribute] = val; }, false); } else { window.attachEvent('onload', function(){ object[attribute] = val; }); } } </script> <div id="navbar-iframe-container"></div> <script type="text/javascript" src="https://apis.google.com/js/platform.js"></script> <script type="text/javascript"> gapi.load("gapi.iframes:gapi.iframes.style.bubble", function() { if (gapi.iframes && gapi.iframes.getContext) { gapi.iframes.getContext().openChild({ url: 'https://www.blogger.com/navbar.g?targetBlogID\x3d32370122\x26blogName\x3d.%3EGhufron+Aje%3E%3E%3E\x26publishMode\x3dPUBLISH_MODE_BLOGSPOT\x26navbarType\x3dBLUE\x26layoutType\x3dCLASSIC\x26searchRoot\x3dhttps://guf-t.blogspot.com/search\x26blogLocale\x3den_US\x26v\x3d2\x26homepageUrl\x3dhttp://guf-t.blogspot.com/\x26vt\x3d-848752436076766533', where: document.getElementById("navbar-iframe-container"), id: "navbar-iframe" }); } }); </script>
Wednesday, May 27, 2009
How to install ANYTHING in Ubuntu!

Berikut ini cara untuk mengistall sesuatu di Ubuntu.


Search, install, remove available packages (preferred method)

"sudo aptitude search ABC"

"sudo aptitude install ABC"

"sudo aptitude remove ABC"


.deb (you have to take care of dependencies on your own)

"sudo dpkg -i ABC.deb"


.rpm (requires sudo aptitude install alien)

"sudo alien -i *.rpm"


.tar.gz (requires sudo aptitude install checkinstall)

"tar xzvf ABC.tar.gz"

"cd ABC"

"./configure"

"make"

"sudo checkinstall"


.package, .sh, .bin (Just download and execute)

"chmod +x ABC"

"./ABC"


.exe (requires sudo aptitude install wine)

"wine ABC.exe"

 
posted by ghufron at 2:16 PM | Permalink |


0 Comments: