Showing posts with label ubuntu. Show all posts
Showing posts with label ubuntu. Show all posts
Tuesday, April 4, 2017
Reset Password Windows dengan Ubuntu Karmic Koala
Reset Password Windows dengan Ubuntu Karmic Koala
[laelamadjnun.info]-reset password windows dengan ubuntu (karmic koala), untuk mereset password windows mungkin banya caranya bisa menggunakan hiren boot (>100mb) kalo download lumayan melelahkan tp tidak diragukan lagi memang.... untuk yang saya bahas kali ini fungsinya sama yaitu mereset password windows akan tetapi filenya cukup kecil Kb yaitu chnptw.. akan tetapi tools ini berjalan di plat form linux based, kebetulan saya menggunakan 2 Operating Sistem di laptop saya jadi mudah mengpaplikasiakanya, untuk yang sungle boot bisa anda gunakan utuntu live CD dan instal dulu toolsnya jangan kawatir size nya kecil ko, hanya beberapa menit saja. berikut ini langkah-langkahnya.
kita install dulu toolsnya
$ sudo apt-get install chntpw [cuma beberapa detik dah selesai]
kita masuk ke windows terinstall
$ cd /media/disk/ [saya make windows7]
kita masuk ke direktori system windows
$ cd /Windows/System32/config
nah disini proses edit passwordnya
sebenarnya file yang ada di gambar ini tempat password windows bersarang
kita masuk ke windows terinstall
$ cd /media/disk/ [saya make windows7]
kita masuk ke direktori system windows
$ cd /Windows/System32/config
nah disini proses edit passwordnya
sebenarnya file yang ada di gambar ini tempat password windows bersarang

maka penampakanya seperti gambar dibawah ni

1. mereset password windows
2. edit password windows
3. merubah menjadi user administrator
4. Membuka dan mengaktifkan akun pengguna yang terkunci
q. untuk keluar
selesai dah.......:D
tested :laelamadjnun
Go to link Download
Monday, January 2, 2017
Running Windows inside your Ubuntu 7 10 installation
Running Windows inside your Ubuntu 7 10 installation
Running Windows inside your Ubuntu 7.10 installation
For people making jump from Windows to Linux the biggest problem is adjusting to new environment and applications , now even though these days really good open source alternatives to applications on Windows platform are available but still many people prefer using Windows applications .
Now ,If you want to run Windows application on your Ubuntu installation there are two options available
- You can use a virtualization software(like Qemu , Virualbox , VMware , bochs etc) which allows you to run full fledged installation of Microsoft Windows inside your Ubuntu desktop
- Or you might use a application layer called wine to run Windows application natively on Linux . While most of the people would prefer wine to run their windows application because it does not require one to have a licensed copy of windows , however application support in wine is
still patchy with some applications working flawlessly and some application not working at all . So well that leaves us to virtualization softwares .
Some of such popular applications available on Linux platform are : Innotek VirtualBox , Qemu , Vmware , Win4Lin and Bochs .
In This article we discuss how to install Microsoft Windows XP inside Ubuntu using QEmu and Virtualbox .
Qemu : - Qemu is a processor emulator created by Fabrice Bellard , it allows full virtualization of a system inside another thus paving way of allowing one operating system to run inside another operating system . Qemu is open source and released under GNU Lesser General Public License (GNU LGPL)
Qemu has many features not available in similar such products like VMware , bochs etc like increased x86 emulation with accelerator module (kqemu) .
This is what qemu website has to say about qemu : -
QEMU is a generic and open source machine emulator and virtualizer.
When used as a machine emulator, QEMU can run OSes and programs made for one machine (e.g. an ARM board) on a different machine (e.g. your own PC). By using dynamic translation, it achieves very good performances.
When used as a virtualizer, QEMU achieves near native performances by executing the guest code directly on the host CPU. A host driver called the QEMU accelerator (also known as KQEMU) is needed in this case. The virtualizer mode requires that both the host and guest machine use x86 compatible processors.
We would be primarily showing you how to install Windows XP under qemu with accelerator module enabled .
VirtualBox : - InnoTek VirtualBox is a commercial PC Virtualization software similar to Qemu and Vmware and allows running of one operating system inside another . InnoTek VirtualBox though is a commercial software , however there is a limited free version of VirtualBox available too which we will discuss briefly in this article .
Installing Qemu : -
Before we start installing qemu we need to enable all of the Ubuntu repositories which could be done by following these steps : -
Enabling Additional Repositories
Now many applications need additional repositories to be installed or some to be enabled in Synaptic package manager so before trying out steps given below ensure that repositories in order.
Launch Synaptic Package Manager (System -> Administration -> Synaptic Package Manager ) , then in Synaptic package manager go to (Settings -> Repositories ) you will find window like this . Ensure that all the check boxes are marked leaving source code(if you want to you can enable this also but you are not going to need this unless you are software developer) the dialog box should look like this .
Dialog Box showing the repositories that should be enabledAfter completing above step you will find a dialog box like this

Now , To install qemu type in the following command in the terminal window :
sudo apt-get install qemu
sudo apt-get install kqemu-source
sudo apt-get install module-assistant
sudo module-assistant auto-install kqemu
After completing above step the kqemu( accelerator module of qemu which allows you to run virtual operating system at near native speed should be compiled properly and ready to be used)
Now type in the following commands to configure kqemu
First we need to create /etc/udev/rules.d/60-kqemu.rules file and open it for editing , we can do it by issuing the following command in the terminal window :
gksu gedit /etc/udev/rules.d/60-kqemu.rulesAfter the file is opened in the gedit text editor add the following line in the file and make sure you add a newline at end of file too .
KERNEL=="kqemu", NAME="%k", GROUP="kqemu", MODE="0660"
now open the file /etc/modprobe.d/kqemu and modify the content of file to look like :
options kqemu major=0Now after above step is completed we need to create a group "kqemu" and add all those users who would like to use kqemu to this group , we can do this by following the commands listed below :
To create group : -
sudo addgroup --system kqemu
Now once the group "kqemu" is created we need to add the users who would be using kqemu to this group we can do this by issuing the following command in the terminal window , remember to change $USER with the users login name for example in my case it is "ambuj" (so command issued was sudo adduser ambuj kqemu ).
sudo adduser $USER kqemu
Now logout of the session and loggin again so that these changes are reflected properly .
After these steps are completed issue the following commands in this sequence to load kqemu module
Force udev to reload by :
sudo /etc/init.d/udev reload
and now finally to load kqemu module
sudo update-modulesInstead if you want kqemu module to load automatically insert "kqemu" in the file /etc/modules
sudo modprobe kqemu
gksu gedit /etc/modules
If you have followed steps properly you should have qemu with kqemu module working properly and now you could move forward and install Windows XP .
Installing Windows XP inside qemu
To install Windows or any other operating system we first need to create a virtual drive which is basically a file residing in your linux partition which would be used as a hard disk for your Guest operating system .
To create virtual drive for windows type in the following command in the terminal window (in the directory you want to create virtual drive and install windows)
qemu-img create win.img 4GThis would create a virtual drive by the name of win.img which is 4GB large . You might like to tinker with the size of the virtual drive or its partition drive .



Installation of Windows XP taking place inside qemu
Now , put in the Windows CD in the drive and follow step no 1
If you have an iso from which you like to boot follow step no 2
Step no 1 :
qemu -localtime -cdrom /dev/cdrom -m 356 -boot d win.img
This command creates a virtual computer which boots from your local cd rom and has 356 MB of memory allocated as its RAM .
Step no 2 (Follow this step instead of step 1 if you have an iso of Windows installation which you would like to boot )
If you have an iso of windows which you would like to use as CD Rom for your virtual computer type in the following command(replace cdwin.iso with the name of the iso you want to boot from)
qemu -localtime -cdrom cdwin.iso -m 356 -boot d win.img


Windows XP Running inside qemu


Important: - if you want to install Windows 2000 add an additional option "-win2k-hack" , if you proceed without adding this option the installer might fail with message "Not enough diskspace " even though there may be sufficient.
VirtualBox : -
First ensure that all the repositories are in order as mentioned in the step above . After ensuring that repositories are in order issue the following command to install VirtualBox : -
Now entire interface of VirtualBox is very user friendly and wizard based so well there should not be any problem in installing guest operating system inside VirtualBox hence i am not listing procedure here .



First ensure that all the repositories are in order as mentioned in the step above . After ensuring that repositories are in order issue the following command to install VirtualBox : -
sudo apt-get install virtualboxand after above step is completed launch VirtualBox from (Applications -> System Tools -> InnoTek VirtualBox )
Now entire interface of VirtualBox is very user friendly and wizard based so well there should not be any problem in installing guest operating system inside VirtualBox hence i am not listing procedure here .



Wizard Based Interface of VirtualBox
Article Written by : Ambuj Varshney (blogambuj@gmail.com)
For Linux on Desktop blog , http://linuxondesktop.blogspot.com
(C) 2007, Ambuj Varshney
For Linux on Desktop blog , http://linuxondesktop.blogspot.com
(C) 2007, Ambuj Varshney
Go to link Download
Saturday, November 19, 2016
Remote Desktop Ubuntu dari Tablet HP Android
Remote Desktop Ubuntu dari Tablet HP Android
Kalau mengakses Android dari laptop, saya sudah lama bisa melakukannya yaitu menggunakan aplikasi Airdroid yang berbasis Web. Kalau yang seperti ini, berdasarkan logika sangat mudah, karena dari perangkat dengan hardware lengkap (Laptop) ke perangkat yang memiliki hardware terbatas (Android).
Namun kalau sebaliknya, Laptop yang diakses menggunakan handset Android mungkin akan lebih rumit, karena hardware Android yang terbatas. Saya sudah cukup lama menginginkan agar Laptop dapat diakses menggunakan handset Android. Kenapa ? Karena saya ingin menjawab pertanyaan : Kalau saya presentasi, dapatkah laptop saya kendalikan menggunakan handset Android ?
Jika sedang presentasi dan saya bisa mengendalikan Laptop dari handset Android, maka presentasi saya akan menjadi lebih seru. Saya tidak perlu terpaku di depan Laptop dan tidak harus membaca tulisan di layar. Saya bisa membaca tulisan saya di handset Android, sekaligus mengendalikan tayangan presentasi juga di handset Android. Keren kan ?
Sebelum saya lanjutkan, perlu saya sampaikan bahwa di tutorial ini saya menggunakan Ubuntu Ultimate Edition 2.9 yang berbasis Ubuntu 10.10.
Nah, berikut ini langkah-langkah yang dilakukan agar Laptop bisa dikendalikan menggunakan handset Android :
1. Di handset Android, install aplikasi AndroidVNC klik disini
2. Setelah aplikasi Android VNC terinstall di handset Android, pastikan bahwa antara Laptop dan handset Android terhubung ke jaringan wifi. Saya menyarankan agar menggunakan hotspot yang berasal dari handset Android yaitu Tethering and Portable Hotspot.
3. Pastikan di Network Manager bahwa Laptop sudah bisa connect ke hotspot yang dihasilkan hansdet Android. Saya tidak perlu jelaskan secara detail caranya ya
4. Aktifkan aplikasi Remote Desktop di Laptop : System > Preferences > Remote Desktop
5. Akan muncul preferensi seperti gambar di bawah. Isilah seperti pada gambar. Isi juga password agar bisa dipastikan bahwa kendali hanya bisa dilakukan dari perangkat yang Anda pergunakan.
Lihat bahwa IP Address yang harus dimasukkan di settingan handset Android adalah 192.168.43.196.
6. Dari handset Android, aktifkan aplikasi AndroidVNC dan isilah seperti gambar di bawah ini. Jangan lupa isikan password yang telah disetting di laptop dan pilihlah Color Format : 24-bit color (4 bpp) untuk mendapatkan gambar terbaik di handset Android. Pengalaman saya, jika menggunakan wifi dari tethering handset Android, walaupun menggunakan warna 24-bit, tidak akan mengakibatkan nge-lag.
Tap Connect, maka di laptop akan muncul jendela pop up seperti gambar di bawah. Pilih Allow.
Begitu di Laptop klik Allow maka layar di handset Android akan berubah menjadi sama dengan layar Laptop. Anda juga bisa menjalankan menu di laptop dengan tap di layar handset Android, namun hanya terbatas = klik mouse kiri.
Nah, jika Anda mengaktifkan aplikasi presentasi Open Office Presentation dalam modus Slide Show, maka Anda telah siap melakukan presentasi dengan kendali di handset Android !
Note :
1. Saya sudah mencoba Aplikasi ini menggunakan Ubuntu 12.04, bisa berjalan, namun sayangnya tidak mulus. Di handset Android masih muncul gambar-gambar sebelumnya yang seharusnya sudah hilang setelah gambar baru muncul.
2. Saya juga sudah mencoba menggunakan handset Android berupa HP yaitu Samsung Galaxy Y Duos. Ternyata HP tersebut juga bisa mengendalikan Laptop. Hanya saja agak sedikit repot, karena layar yang terbatas di HP.
3. Saya juga sudah mencobanya di laptop dengan OS Windows 7. Hanya saja, maaf, saya belum bisa jalan. Kalau ada pembaca yang bisa, diharapkan sharing cara settingnya.
sumber : http://keluargautama.wordpress.com
Demikian semoga bermanfaat.
Go to link Download
Subscribe to:
Posts (Atom)