Langsung ke konten utama

Postingan

Menampilkan postingan dari 2012

linux Ubuntu New Release

              Ubuntu Desktop 12.04 LTS Link download : http://www.ubuntu.com/download/desktop/thank-you?distro=desktop&release=lts&bits=32                                              FOR WINDOWS 1. How to burn to CD on Windows : http://www.ubuntu.com/download/help/burn-a-cd-on-windows  2. How to create a bootable USB stick on Windows  : http://www.ubuntu.com/download/help/create-a-usb-stick-on-windows 3. Installing Ubuntu With The Windows Installer : www.ubuntu.com/download/help/install-ubuntu-with-windows                       For OS X 1. How to burn to CD on OS X : http://www.ubunt...

Linux In Ipad

Siapa kira linux bisa berjalan di Hardware iPad....       Good news for fans of Tux the penguin : soon you’ll be able to run the Linux operating system on your iDevice. A team of jailbreak developers has managed to run the open source Linux OS on Apple’s A4-powered devices.       Who needs Android when you have Linux, right? BluerisEN tweeted the news with a picture of Linux running on an iPad. The iPhone 4, first gen iPad, and 4th generation iPod touch will all be able to run this specific build of Linux. The iPad 2 will not be compatible, due to the fact that it runs on the A5 processor. Hackers have been able to run doctored builds of Android on iDevices before, but the addition of Linux adds more possibilities to current Apple hardware that will become outdated in years to come. Installing Linux will require a jailbreak , however.      There hasn’t been an ETA set for the availabilit...

UNIX

Linux / UNIX: Convert Hexadecimal to Decimal Number by Vivek Gite on February 6, 2009 · 16 comments · last updated at November 23, 2010 H ow do I convert hex number to decimal number using a shell script under UNIX / Linux operating systems? Hexadecimal (hex) is a numeral system with a radix, or base, of 16. It uses sixteen distinct symbols, most often the symbols 0–9 to represent values zero to nine, and A, B, C, D, E, F (or a through f) to represent values ten to fifteen. bc - An arbitrary precision calculator language There is no need to write a shell script. You can simply use the following syntax at the shell prompt to convert hex to decimal number or vice versa. bc: Hexadecimal or Binary Conversion To convert to decimal, set ibase to 16, enter: echo "ibase=16; hex-number" |bc echo "ibase=16; FFF" |bc Sample output: 4095 To convert to hexadecimal, set obase to 16, enter: echo "obase=16; decimal-number" |bc echo "obase=16; 10" |...