Showing posts with label Linux. Show all posts
Showing posts with label Linux. Show all posts

Install the Windows Subsystem for Linux Installation Guide for Windows 10



What is a Linux Subsystem on Windows?

This Linux Subsytem is specifically designed to let Developers run Linux environments - including the use of command-lines, utilities, and applications - using Windows directly, without modification, and without the aid of virtual machines.

Before installing any Linux distros for WSL, you must ensure that the "Windows Subsystem for Linux" optional feature is enabled:

1. Open PowerShell as Administrator and run :


PowerShellCopy :

Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux

2. Type Y and restart your computer when prompted.
ReadMore »»  

MeeGo Platform Netbook OS Intel Atom


MeeGo repositories is the operating system (OS) like Jolicloud base from the Linux kernel, MeeGo downloadable images will boot from a USB stick or a CD and boot into a terminal.

MeeGo is software platform for Netbook user, MeeGo suitable for :

  • Intel Atom-based in-vehicle 
  • Intel Atom-based handset (Moorestown) 
  • ARM-based Nokia N900
  • Intel Atom-based netbooks

The best application, platform development tools available for MeeGo developers. MeeGo development is the MeeGo SDK, including Qt, that provides a full set of consistent, cross-platform APIs.
Download MeeGo Linux Foundation at : http://meego.com/downloads
ReadMore »»  

Configuration Network on Ubuntu


The Transport Control Protocol/ Internet Protocol (TCP/IP) based combination of three protocols, consists of the Internet Protocol (IP),Transport Control Protocol (TCP), and Universal Datagram Protocol (UDP).

To edit your system’s network device information or to add or remove network devices on your system by the ifconfig command at the shell prompt or Ubuntu’s graphical network configuration tools, such as network-admin.

For configuring DHCP address needed to edit the /etc/network/interfaces and enter the following lines replace eth0 with your network interface card.

Open terminal (Application ==> Accesories ==> Terminal) and type this code :

sudo vi /etc/network/interfaces

and then press enter, input your ubuntu password.

Replace eth0 with your network interface card.

Example display :

# The primary network interface – use DHCP to find our address
auto eth0
iface eth0 inet static
address 192.168.7.90
gateway 192.168.7.1
netmask 255.255.255.0
network 192.168.7.0
broadcast 192.168.7.255

After entering all the details you need to restart networking services using the following command :

sudo /etc/init.d/networking restart

For setting up Second IP address or Virtual IP address in Ubuntu you need to assign a second ipaddress to your Ubuntu machine.For this you need to edit the /etc/network/interfaces file and you need to add the following syntax.
Below is the only example you need to change according to your ip address settings :

auto eth0:1
iface eth0:1 inet static
address 192.168.1.60
netmask 255.255.255.0
network x.x.x.x
broadcast x.x.x.x
gateway x.x.x.x


For setting your ubuntu system hostname by directly query, or set the hostname with the hostname command.

sudo /bin/hostname

more about how to setup host name read here

To cause your machine to consult with a particular server for name lookups you simply add their addresses to /etc/resolv.conf

Open terminal and type this command :

sudo vi /etc/resolv.conf

enter the following example details like this :

search yourlocaldomain.com
nameserver 192.168.3.2

source : http://www.ubuntugeek.com/ubuntu-networking-configuration-using-command-line.html.
ReadMore »»  

10 Langkah Install HP Laserjet P1006 di Ubuntu 9.10


Keengganan banyak orang menggunakan linux adalah karena sulit nya mencari dan memperoleh driver hardware yang support dan kompatible dengan versi linux yang dipakai.
Salah satu distro linux yang favorite seperti ubuntu aja masih sulit mensupport berbagai driver dari hardware yang digunakan seperti printer.
Hal ini juga dapat dimaklumi karena developer software dari perusahaan pembuat hardware komputer belum 100% mensupport open source community. Sehingga kesulitan pengembang open source seperti linux adalah membuat aplikasi pendekatan untuk driver hardware yang terbaru.
Di bawah ini akan dijelaskan secara singkat cara menginstall driver HP Laserjet P1006 di Ubuntu 9.10. Kedelapan langkah mudah itu adalah sebagai berikut :

Pertama buka terminal (Applications ==> Accessories ==> Terminal).

1. Copy kan kode berikut ke dalam terminal :
wget -O foo2zjs.tar.gz http://foo2zjs.rkkda.com/foo2zjs.tar.gz kemudian tekan Enter.

2. Setelah selesai copykan kode berikut :

tar xzvf foo2zjs.tar.gz tekan Enter

3. Kemudian copykan kembali kode berikut :

cd foo2zjs tekan Enter kembali

4. Selanjutnya copy kode berikut :

make tekan Enter lagi

5. Setelah selesai copykan kode berikut :

./getweb p1006 tekan Enter kembali.

6. Selanjutnya menginstall driver dengan mengcopy kode berikut :

sudo make install tekan Enter kembali dan masukkan password ubuntu anda.

7. Install tambahan untuk printer, copykan kode berikut :

sudo make install-hotplug dan tekan Enter lagi.

8. Setelah selesai semua, ketik exit di terminal.

9. Jika printer belum dihidupkan maka silahkan hidupkan printer HP Laserjet P1006 nya, apabila sudah hidup maka matikan dan hidupkan kembali power nya sehingga Ubuntu 9.10 mendeteksi hardware baru.

10. Maka akan muncul gambar di bawah ini :



kemudian klik install plugin

Selanjutnya ikuti perintah yang muncul.

Setelah semua selesai, restart komputer anda.

Selamat mencoba..
ReadMore »»  

PetaLinux SDK


PetaLinux merupakan program tambahan di linux yang lengkap dan khusus ditujukan untuk SDK FPGA berbasis System-on-Chip desain. Berisi semua yang diperlukan untuk membangun, mengembangkan, menguji dan menggunakan Linux pada FPGA, PetaLinux akan membantu mencapai produktivitas yang tinggi untuk memaksimalkan waktu dibidang pemrograman logic.

Fitur utama dari PetaLinux termasuk

* Software
o Source kernel linux yang lengkap
o Source code userland yang lengkap, termasuk library dan utilitas standar
o Root filesystem image builder
* Hardware
o Referensi desain untuk pengembangan FPGA.
* Tools
o PetaLogix automated BSP generator untuk otomatisasi target sistem Linux tertentu yang berguna untuk kustomisasi platform hardware.
o Self-contained GCC cross-compiler toolchains termasuk standar C library Linux
o GDB cross-debugger and gdbserver target debug stub
o Aplikasi dan modul generator


Platform dan arsitektur yang didukung :

Rilis PetaLinux saat ini mendukung the MicroBlaze soft-CPU architecture dari Xilinx.
* Xilinx :
o ML505
o ML401
o Spartan3ADSP1800
o Spartan3E500 dan 3E1600

Registrasi dan Download PetaLinux : DISINI
ReadMore »»