Click here....

Tuesday, March 1, 2011

Mandriva 2011 Alpha 2 Released


Mandriva, melalui Eugeni Dodonov, mengumumkan pada hari terakhir bulan Februari ketersediaan segera untuk pengujian versi Alpha kedua dari sistem 2011 mendatang operasi Mandriva Linux.

Mandriva 2011 Alpha 2 sekarang didukung oleh kernel Linux 2.6.37.2, fitur up-to-date NetworkManager, kerangka masukan iBus menggantikan SCIM lama satu, banyak update dan perbaikan bug.

"Diantara fitur yang paling terlihat adalah penyederhanaan langkah pengaturan awal, baik saat menjalankan gambar dalam modus Live, atau sebelum instalasi, update ke kernel 2.6.37.2, integrasi mdv-NetworkManager terbaru plugin dengan
Andrey Borzenkov, beralih dari scim ke ibus untuk kerangka input, integrasi system lebih mendalam ke dalam sistem, dan, tentu saja, banyak update paket . "

Highlights of Mandriva 2011 Alpha 2:

· Linux kernel 2.6.37.2;
· KDE SC 4.6.0;
· GNOME 2.32.1;
· XFCE 4.8.0;
· X.Org 7.5;
· XOrg Server 1.9.4;
· Mozilla Firefox 4.0 Beta 12;
· Mozilla Thunderbird 3.1.7;
· OpenOffice.org 3;
· Clementine 0.6;
· NetworkManager 0.8.2;
· Systemd 18;
· GCC 4.5.2;
· OpenSSL 1.0.0d;
· Wine 1.3.14.

DOWNLOAD :


Selamat Mencoba......

Friday, February 4, 2011

LibreOffice

LibreOffice adalah kekuatan-bebas dikemas Open Source pribadi produktivitas suite untuk Windows, Macintosh dan Linux, yang memberikan anda enam aplikasi yang kaya fitur untuk kebutuhan produksi pengolahan semua dokumen dan data: Writer, Calc, Impress, Draw, Matematika dan Base. 

LibreOffice adalah fitur-dikemas dan matang paket produktivitas desktop dengan beberapa keuntungan sangat besar:

     It's free - tidak khawatir tentang biaya lisensi atau biaya tahunan.
     Tidak ada hambatan bahasa - ini tersedia dalam sejumlah besar bahasa, dengan lebih yang ditambahkan terus-menerus.
     Lisensi LGPL publik - Anda dapat menggunakannya, menyesuaikan, hack dan menyalinnya dengan dukungan pengguna bebas dan dukungan dari komunitas pengembang yang aktif di seluruh dunia dan tim pengembang besar dan berpengalaman kami.
     LibreOffice adalah proyek Open Source berbasis komunitas: pengembangan terbuka untuk bakat baru dan ide-ide baru, dan perangkat lunak kami diuji dan digunakan sehari-hari oleh komunitas pengguna besar dan setia, Anda juga bisa terlibat dan mempengaruhi perkembangan masa depan.

Friday, January 21, 2011

Linux Terminal Command Reference



System Info
date – Show the current date and time
cal – Show this month's calendar
uptime – Show current uptime
w – Display who is online
whoami – Who you are logged in as
finger user – Display information about user
uname -a – Show kernel information
cat /proc/cpuinfo – CPU information
cat /proc/meminfo – Memory information
df – Show disk usage
du – Show directory space usage
free – Show memory and swap usage
Keyboard Shortcuts
Enter – Run the command
Up Arrow – Show the previous command
Ctrl + R – Allows you to type a part of the command you're looking for and finds it
Ctrl + Z – Stops the current command, resume with fg in the foreground or bg in the background
Ctrl + C – Halts the current command, cancel the current operation and/or start with a fresh new line
Ctrl + L – Clear the screen
command | less – Allows the scrolling of the bash command window using Shift + Up Arrow and Shift + Down Arrow
!! – Repeats the last command
command  !$ – Repeats the last argument of the previous command
Esc + . (a period) – Insert the last argument of the previous command on the fly, which enables you to edit it before executing the command
Ctrl + A – Return to the start of the command you're typing
Ctrl + E – Go to the end of the command you're typing
Ctrl + U – Cut everything before the cursor to a special clipboard, erases the whole line
Ctrl + K – Cut everything after the cursor to a special clipboard
Ctrl + Y – Paste from the special clipboard that Ctrl + U and Ctrl + K save their data to
Ctrl + T – Swap the two characters before the cursor (you can actually use this to transport a character from the left to the right, try it!)
Ctrl + W – Delete the word / argument left of the cursor in the current line
Ctrl + D – Log out of current session, similar to exit
Learn the Commands
apropos subject – List manual pages for subject
man -k keyword – Display man pages containing keyword
man command – Show the manual for command
man -t man | ps2pdf - > man.pdf  – Make a pdf of a manual page
which command – Show full path name of command
time command – See how long a command takes
whereis app – Show possible locations of app
which app – Show which app will be run by default; it shows the full path
Searching
grep pattern files – Search for pattern in files
grep -r pattern dir – Search recursively for pattern in dir
command | grep pattern – Search for pattern in the output of command
locate file – Find all instances of file
find / -name filename – Starting with the root directory, look for the file called filename
find / -name ”*filename*” – Starting with the root directory, look for the file containing the string filename
locate filename – Find a file called filename using the locate command; this assumes you have already used the command updatedb (see next)
updatedb – Create or update the database of files on all file systems attached to the Linux root directory
which filename – Show the subdirectory containing the executable file  called filename
grep textstringtofind /dir – Starting with the directory called dir, look for and list all files containing textstringtofind
File Permissions
chmod octal file – Change the permissions of file to octal, which can be found separately for user, group, and world by adding: 4 – read (r), 2 – write (w), 1 – execute (x)
Examples:
chmod 777 – read, write, execute for all
chmod 755 – rwx for owner, rx for group and world
For more options, see man chmod.
File Commands
ls – Directory listing
ls -l – List files in current directory using long format
ls -laC – List all files in current directory in long format and display in columns
ls -F – List files in current directory and indicate the file type
ls -al – Formatted listing with hidden files
cd dir – Change directory to dir
cd – Change to home
mkdir dir – Create a directory dir
pwd – Show current directory
rm name – Remove a file or directory called name
rm -r dir – Delete directory dir
rm -f file – Force remove file
rm -rf dir – Force remove an entire directory dir and all it’s included files and subdirectories (use with extreme caution)
cp file1 file2 – Copy file1 to file2
cp -r dir1 dir2 – Copy dir1 to dir2; create dir2 if it doesn't exist
cp file /home/dirname – Copy the file called filename to the /home/dirname directory
mv file /home/dirname – Move the file called filename to the /home/dirname directory
mv file1 file2 – Rename or move file1 to file2; if file2 is an existing directory, moves file1 into directory file2
ln -s file link – Create symbolic link link to file
touch file – Create or update file
cat > file – Places standard input into file
cat file – Display the file called file
more file – Display the file called file one page at a time, proceed to next page using the spacebar
head file – Output the first 10 lines of file
head -20 file – Display the first 20 lines of the file called file
tail file – Output the last 10 lines of file
tail -20 file – Display the last 20 lines of the file called file
tail -f file – Output the contents of file as it grows, starting with the last 10 lines
Compression
tar cf file.tar files – Create a tar named file.tar containing files
tar xf file.tar – Extract the files from file.tar
tar czf file.tar.gz files – Create a tar with Gzip compression
tar xzf file.tar.gz – Extract a tar using Gzip
tar cjf file.tar.bz2 – Create a tar with Bzip2 compression
tar xjf file.tar.bz2 – Extract a tar using Bzip2
gzip file – Compresses file and renames it to file.gz
gzip -d file.gz – Decompresses file.gz back to file
Printing
/etc/rc.d/init.d/lpd start – Start the print daemon
/etc/rc.d/init.d/lpd stop – Stop the print daemon
/etc/rc.d/init.d/lpd status – Display status of the print daemon
lpq – Display jobs in print queue
lprm – Remove jobs from queue
lpr – Print a file
lpc – Printer control tool
man subject | lpr – Print the manual page called subject as plain text
man -t subject | lpr – Print the manual page called subject as Postscript output
printtool – Start X printer setup interface
Network
ifconfig – List IP addresses for all devices on the local machine
ping host – Ping host and output results
whois domain – Get whois information for domain
dig domain – Get DNS information for domain
dig -x host – Reverse lookup host
wget file – Download file
wget -c file – Continue a stopped download
SSH
ssh user@host – Connect to host as user
ssh -p port user@host – Connect to host on port port as user
ssh-copy-id user@host – Add your key to host for user to enable a keyed or passwordless login
User Administration
adduser accountname – Create a new user call accountname
passwd accountname – Give accountname a new password
su – Log in as superuser from current login
exit – Stop being superuser and revert to normal user
Process Management
ps – Display your currently active processes
top – Display all running processes
kill pid – Kill process id pid
killall proc – Kill all processes named proc (use with extreme caution)
bg – Lists stopped or background jobs; resume a stopped job in the background
fg – Brings the most recent job to foreground
fg n – Brings job n to the foreground
Installation from source
./configure
make
make install
dpkg -i pkg.deb – install a package (Debian)
rpm -Uvh pkg.rpm – install a package (RPM)
Stopping & Starting
shutdown -h now – Shutdown the system now and do not reboot
halt – Stop all processes - same as above
shutdown -r 5 – Shutdown the system in 5 minutes and reboot
shutdown -r now – Shutdown the system now and reboot
reboot – Stop all processes and then reboot - same as above
startx – Start the X system

Selamat Belajar Dan Ngoprek oprek, SEMANGAT.

Monday, January 17, 2011

INSTAL UBUNTU LINUX KE DALAM FLASHDISK

Instalasi ke media USB ini sebenarnya sama halnya untuk instalasi ke hardisk internal. Semua bentuk perubahan yang kita lakukan akan tersimpan, misal update paket aplikasi, desktop, atau bahkan update kernel. Yang kita perlukan adalah: USB Flashdisk berkapasitas 4GB, CDROM/CDRW/DVDROM/DVDRW (untuk burning dan instalasi), dan Installer ubuntu (desktop/alternate) untuk contoh ini menggunakan installer desktop yang bisa dikatakan lebih mudah bagi pemula.




Langkah instalasi:

  1. Pastikan USB Flashdisk 4GB kosong. Jika Flashdisknya baru maka tidak menjadi masalah, tapi jika menggunakan USB Flashdisk yang telah digunakan untuk menyimpan data, maka pindahkan dulu (backup) ke hardisk internal komputer.
  2. Jika telah memiliki installer Ubuntu dalam bentuk CD (LiveCD), bisa digunakan. Namun jika belum punya, maka terlebih dulu Download Ubuntu dan burn menjadi CD. Jika merasa ‘tidak kuat’ download, maka bisa pinjam teman yang punya installer Ubuntu Karena rilis Ubuntu ini sudah beberapa bulan yang lalu
  3. Komputer yang akan digunakan untuk instalasi, lepaskan kabel hardisk internal yang terpasang (komputer tanpa hardisk) untuk mencegah hal-hal yang tidak diinginkan (salah tempat instalasi, atau salah menulis MBR).
  4. Booting komputer untuk boot Ubuntu CD>
  5. Pada menu booting CD, akan muncul beberapa pilihan. Pilihlah Install Ubuntu.
  6. Setelah proses booting Ubuntu, maka kita akan masuk dalam mode/tampilan menu instalasi Ubuntu.
     
    Langsung saja terus (forward) menjawab semua pertanyaan hingga sampai pada halaman partisi (Prepare disk space. Pilih langsung pada pilihan (1) Guided – use entire disk, kemudian (2) pilih Forward. Biarlah Ubuntu yang mengurusnya karena kita tidak perlu repot-repot membagi partisi untuk USB Flashdisk. Seperti gambar disamping.
     
     Kemudian berlanjut pada halaman Who are you?, kita isikan :
    =) nama user
    =) login user
    =) password
    =) nama komputer
    kemudian Forward.
     

    Setelah sampai di halaman Ready to install, kita klik pada (1) Advanced, dan (2) pilih perangkat pada dropdown untuk instalasi boot loader. Misalkan: /dev/sda (disesuaikan dengan terdeteksinya USB Flashdisk). Lalu terakhir kita tekan Install.
    Proses instalasi Ubuntu ke USB Flashdisk akan dimulai, membutuhkan kurang lebih 30 menit untuk USB Flashdisk saya, dikarenakan kemampuan/kecepatan menulis dalam flashdisk terbatas (tidak secepat instalasi ke hardisk). Setelah selesai, kita pilih Restart Now.
     
    Kita lepas CD installer, dan akan berjalan proses booting. Set BIOS komputer agar booting dari USB, dan silakan menikmati “Ubuntu on FLASHDISK 

    Artikel ini Diunduh Dari : http://www.endz4shared.co.cc/

Wednesday, January 5, 2011

Slax - Sistem Operasi Linux Saku Anda



Slax adalah sistem operasi berbasis Linux yang modern, portabel, kecil dan cepat dengan pendekatan desain modular dan desain yang luar biasa. Mengesampingkan ukuran sistemnya yang kecil, Slax menyediakan sangat banyak koleksi software yang telah terinstall, termasuk GUI yang terorganisasi baik juga perangkat recovery untuk sistem administrator.
Pendekatan modular memberikan anda kemampuan untuk menambahkan software-software lain ke dalam Slax secara mudah. Jika Anda kehilangan editor favorit Anda, tool jaringan, atau game, download saja modulnya beserta software tersebut, dan salin ke dalam Slax, tanpa butuh instalasi, tanpa butuh konfigurasi.
Jika Anda seorang pemula atau Anda terlalu sibuk untuk membuat Slax sendiri, maka ikutilah beberapa langkah-langkah untuk membangun sistem operasi yang Anda buat ubah sendiri menggunakan antarmuka basis-web disini.


 Anda dapat memperoleh Slax dari situs ini dalam beberapa format. Slax untuk CD didistribusikan sebagai image ISO. Bakar ke CD menggunakan menu khusus dalam software burning pilihan anda, biasanya berlabel 'burn CD iso image'. Slax untuk USB didistribusikan sebagai arsip TAR. Cukup unzip ke USB dan jalankan bootinst.bat (atau bootinst.sh) untuk membuatnya bootable.



Dapatkan SLAX LINUX DI  http://www.slax.org/

Tuesday, January 4, 2011

SEMANGAT GARUDA DI DADAKU

SEMANGAT ANAK BANGSA KEMBANGKAN TEKNOLOGI LINUX







BlankOn Linux adalah distro Linux yang dikembangkan oleh Yayasan Penggerak Linux Indonesia (YPLI) dan Tim Pengembang BlankOn menghasilkan distro Linux yang sesuai dengan kebutuhan pengguna komputer umum di Indonesia.
Dengan menghadirkan filosofi, kemudahan. BlankOn Linux dikembangkan secara terbuka dan bersama-sama untuk menghasilkan distro Linux khas Indonesia, khususnya untuk dunia pendidikan, perkantoran dan pemerintahan.
Temukan BlankOn di http://www.blankonlinux.or.id/ 




IGOS Nusantara LINUX. Ketersediaan sistem operasi yang dikembangkan untuk kepentingan nasional harus dijaga secara berkesinambungan. Sistem operasi ditambah beragam aplikasi yang dikembangkan Pusat Penelitian Informatika LIPI adalah IGOS Nusantara (IGN). IGOS Nusantara secara konsisten dikembangkan sejak tahun 2006. Setiap tahun dikeluarkan rilis, mulai dari IGN 2006, IGN 2007 dan IGN 2008.
IGN 2009 adalah jawaban dari kebutuhan perangkat lunak legal dan gratis, tanpa dihantui oleh perasaan takut kehilangan data atau kerusakan sistem karena serangan virus. Dengan IGN 2009, pengguna akan mendapatkan pengalaman yang berbeda, menyenangkan dan nyaman pada saat bekerja berjam-jam di depan komputer. IGN 2009 diperlengkapi dengan berbagai aplikasi perangkat lunak dengan versi terakhir.
Dengan semangat IGN 2009 Go Green, diharapkan sebagai penyemangat dan pengingat bahwa setiap pengguna komputer berkewajiban untuk menjaga elestarian bumi. Caranya adalah dengan menghemat energi listrik dan menghentikan aksi penggunaan perangkat lunak bajakan.
IGN 2009 ini tersedia dalam 3 tipe media yaitu IGN2009 DVD Installer, IGN2009 LiveCD GNOME dan IGN2009 LiveCD LXDE (minimalis). IGN2009 DVD Installer itu sangat lengkap. Ada 3839 file aplikasi yang bisa dipilih dan diinstalkan dengan  kapasitas 4.2 gigabyte.
Temukan IGOS Nusantara di http://igos-nusantara.or.id/


DEWALINUX. M3NET adalah perusahaan yang fokus di bidang solusi sistem informasi dan jaringan komputer untuk skala menengah ke atas, disain situs web, produk digital multimedia, pembuatan disain grafis, dan sistem informasi berbasis komputer lainnya.
M3NET digerakkkan oleh sejumlah tenaga muda yang merupakan para spesialis di bidangnya, yang terus tumbuh berkembang untuk dapat bersaing dengan para kompetitor, dan mampu menyediakan layanan berkualitas untuk membantu para pelanggan mendapatkan percepatan dalam pencapaian tujuan organisasi dan individu. Dengan keberagaman layanan yang disediakan dan berfokus pada kepuasan pelanggan melalui metode pembangunan solusi dan pembiayaan efektif, M3NET terus berusaha menjadi pilihan utama bagi kebutuhan solusi bidang teknologi informasi bagi masyarakat. Karena itu, M3NET terus bertumbuh dalam kemampuan dan efektifitas metode kerja untuk mencapai hasil lebih baik di masa mendatang.
Temukan DEWALINUX di http://www.dewalinux.web.id/ 








Zencafe GNU / LINUX

Terutama desain digunakan untuk Internet Cafe desktop, Zencafe dipoles dengan berbagai cara dan cukup mudah untuk dioperasikan. Termasuk autorecovery dan internet cafe software manajemen, Zencafe adalah yang terbaik dan solusi Linux pertama yang cocok untuk warnet.

Temukan ZENCAFE GNU/LINUX di http://www.zencafe.web.id/




Semangat anak bangsa yang patut kita banggakan dalam dunia teknologi LINUX.
Selamat Belajar dan Mencoba.
Solusi verifikasi PayPal dengan VCC murah Indonesia expired 1 tahun

Articles at Technorati

sweeva

FREE MONEY........

Promote to over 10 million individuals

Promote to over 10 million individuals around the world.

We promote your business in international network of partners websites, each with own narrow points of interests.
Our company gives you effective promotion strategies that helps your business profitable on the Internet.
We will provide you with real and visible results and take your website to the next level.
Promote to Over 10 Million individuals Now...

Get More Shoppers

Get More Customers, Get More Revenue!!!

With no day-to-day stream of shoppers you cannot have stable around the clock revenue.
You cannot get revenue if no one comes to your website. You need visitors to see your website, every day, 24 hours!
We help more than 30,000 clients get more customers online.
You will increase your revenue by receiving hundreds of real interested visitors to see your website.
More Customers...

Millions of Shoppers

Millions of Customers

Connect your business to millions of shoppers looking for products and services.
Our audience is constantly growing and now it's over 25 million new shoppers each month. We send traffic from high-quality local and international promotion websites, which bring potential shoppers from North America, Western Europe and upcoming markets.
Get More Hits, Get More Visitors...

Click This Ads....

affiliate program

EARN MONEY FROM YOUR SITE

Turn your valuable blog traffic into income. Work online and join our free money making partner program. We offer the most commission rate to help increase your income stream.

Join our cash making program absolutely no charge and 100% risk free.

Sign Up...

Mountain a constant stream of money

Our earning money program helps you to generate a constant stream of cash, 24 hours a day, 7 days a week, 365 days a year. Allowing you more time to focus on the things you love.
You will even be making profit while you sleep!

A constant cash generator

Imagine running of a something that never failed to generate revenue-flow. A free money program so incredibly profitable that you never had to look for job ever again!Income while you sleep

MONEY WHILE YOU SLEEP

Earn $1,000... $2,000... $5,000...

Turn your web site visitors into cash!
You get paid for every visitor that clicks on our advertizing. Our wish is to enable you to make as much as possible from your site. We pay monthly, either by bank cheque, or using PayPal.

41,7 % und mehr Rendite im Monat möglich mit FOREXHANDEL The Greatest Money-Making Opportunity Online!