Showing posts with label ubuntu. Show all posts
Showing posts with label ubuntu. Show all posts

Tuesday, February 12, 2013

[qemu #1] installing on ubuntu 12.04


You can download qemu from the following URL.

http://wiki.qemu.org/Download

extract the package

$ tar -jxvf qemu-1.3.1.tar.bz2

$ tar -jxvf qemu-1.2.0.tar.bz2

* note
First, I downloaded and installed qemu-1.3.1 in Ubuntu 12.04.
It doesn't work.

 (cd /home/.../qemu-1.3.1/pixman; autoreconf -v --install)
/bin/sh: 1: autoreconf: not found
make: *** [/home/.../qemu-1.3.1/pixman/configure] Error 127


http://stackoverflow.com/questions/14814889/cant-install-qemu-1-3-1-in-ubuntu-12-10
$ sudo apt-get build-dep qemu




$ ./configure --target-list=arm-softmmu


$ make



$ make install






will be continued




Saturday, December 1, 2012

[Linux] Mounting a Windows shared folder on Ubuntu


Let me explain how tomanually mount a Windows shared folder on Ubuntu

First, you need to make a shared folder on Windows.

2nd, type at the command prompt on Ubuntu

$ sudo mount -t cifs //WindowsName/SharedFolder/mnt/SharedFolder -o 
username=XXX,domain=WIN,iocharset=utf8,file_mode=0777,dir_mode

* If you didn't install Samba Server on Ubuntu, you should install like this.

$ sudo apt-get install samba smbfs

That's all. :-)