HOW TO INSTALL ANGRY IP SCANNER ON UBUNTU

Currently there are many security software available for Linux and Windows. The Angry IP Scanner is one of the popular open source software in network security category. Here, I will guide you how to install the Angry IP Scanner on Ubuntu. Based on its website, the Angry IP Scanner is is fast and friendly network scanner for Windows, Linux, and Mac. It is very extensible, allowing it to be used for very wide range of purposes, with the primary goal of being useful to network administrators. This software was built based on Java technology that is cross platform support.
To run the Angry IP Scanner on Ubuntu, follow these guide:

1. Download the binary file of Angry IP Scanner.
2. The downloaded file is similar to ipscan-linux-3.0-beta4.jar
3. Now execute the file using command:

java -jar ipscan-linux-3.0-beta4.jar
then the Angry IP Scanner main window will be opened.


System Requirements:
- Java JRE 

How to fix corrupted Windows registry from Ubuntu


The registry is one of the most important part of the Windows Operating System. Any problem with the registry can have far reaching consequences. A corrupted registry can prevent Windows from even starting up.
In this article, we will show you how you can fix a corrupted Windows registry from an Ubuntu partition.
So, if there is some problem with your Windows registry and you cannot start Windows, here is what you can do:
  • Boot into Ubuntu.
  • Once in Ubuntu, open the terminal.
  • Install NTFS-3G, with the command
sudo apt-get install ntfs-3g
  • Install NTFSProgs
sudo apt-get install ntfsprogs
  • Mount the NTFS partition:
sudo mkdir /media/windows
sudo ntfs-3g -o force,rw /dev/ /media/windows
  • Now we are all set to start fiddling with the registry. But before you do that, it would be advisable to back it up with the command:
sudo cp -r /media/windows/WINDOWS/system32/config/ /home//Desktop/
  • Now copy the following files from the file /media/windows/System Volume Information/_restore{xxx}/RPxxx/snapeshot/ directory:




    _REGISTRY_USER_.DEFAULT
    _REGISTRY_MACHINE_SECURITY
    _REGISTRY_MACHINE_SOFTWARE
    _REGISTRY_MACHINE_SYSTEM
    _REGISTRY_MACHINE_SAM
    to the /media/windows/WINDOWS/system32/config/ dir and name them as follows:
    _REGISTRY_USER_.DEFAULT =>default
    _REGISTRY_MACHINE_SECURITY =>security
    _REGISTRY_MACHINE_SOFTWARE =>software
    _REGISTRY_MACHINE_SYSTEM => system
    _REGISTRY_MACHINE_SAM => sam
  • Schedule a consistency check with the command:
sudo ntfsfix /dev//
  • Reboot into Windows. You will get a screen telling you that you should run a filesystem consistency check. Let the check run and then the second reboot should bring you back into a bootable Windows.

Decorate Grub 2 boot loader using BURG


BURG is a program based-on Grub 2,BURG uses new menu list,screen layout and shortcut keys that all easily customized.Following is tested in Ubuntu Karmic.
1.Install BURG
Edit source.list file(Open terminal from Applications/Accessories/Terminal):
sudo gedit /etc/apt/sources.list
add following into the file and save it.
deb http://ppa.launchpad.net/bean123ch/burg/ubuntu karmic main
deb-src http://ppa.launchpad.net/bean123ch/burg/ubuntu karmic main
Add GPG key:
gpg --keyserver subkeys.pgp.net --recv 55708F1EE06803C5
gpg --export --armor 55708F1EE06803C5 | sudo apt-key add -
update and install:
sudo apt-get update
sudo apt-get install grub-pc
Then,write the new startup code into MBR:
sudo grub-install "(hd0)"
2.Download themes:
wget http://grub4dos.sourceforge.net/themes.tar.bz2
Extract it to /boot/grub/themes:
sudo tar -xjf themes.tar.bz2 -C /boot/grub/themes/
Then,edit /etc/default/grub:
sudo gedit /etc/default/grub
delete the “#”(without quotes) before this:
GRUB_TERMINAL=console
3.Now,edit /etc/grub.d/40_custom:
sudo gedit /etc/grub.d/40_custom
copy and paste following into this file:
set gfxmode="640x480"
set gfxfont="Unifont Regular 16"
loadfont /boot/grub/themes/fonts/unifont.pf2
loadfont /boot/grub/themes/fonts/aqui.pf2
loadfont /boot/grub/themes/fonts/edges.pf2
loadfont /boot/grub/themes/fonts/lime.pf2
loadfont /boot/grub/themes/fonts/7x13B.pf2
loadfont /boot/grub/themes/fonts/smoothansi.pf2
loadfont /boot/grub/themes/fonts/Helvetica-Bold-14.pf2
insmod vbe
insmod png
insmod coreui
load_config /boot/grub/themes/proto/theme.txt
the last line will load the theme.You can change this line to :
ubuntu theme:
load_config /boot/grub/themes/ubuntu/theme.txt
winter theme:
load_config /boot/grub/themes/winter/theme.txt
proto theme:
load_config /boot/grub/themes/proto/theme.txt
Now,use this command to create grub.cfg file:
sudo update-grub
grub2_theme
ubuntu
proto
grub2_theme_2
winter
For more Burg details see:https://help.ubuntu.com/community/Burg/

How to install Gyachi in ubuntu 9.10 (Karmic)


This yahoo client for Linux operating system supports almost all of the features you would expect to find on the official Windows Yahoo! client: Voice chat, webcams, faders, ‘nicknames’, audibles, avatars, display images, and more. Yet, it remains very light-weight and memory-friendly. GyachE Improved uses Gtk-2 for its user interfaces (Gtk-2 2.0.6 or better required).
Install gyachi in Ubuntu 9.10
Open the terminal and run the following command
sudo add-apt-repository ppa:loell/ppa

sudo apt-get update

sudo apt-get install gyachi

How to install Windows 7 from Ubuntu without burnning a disc


If you’re running on ubuntu and want to install Windows 7 without burning a disc,you can try following steps to install Windows 7 with the iso file.
Step1:Download grub4dos from:http://download.gna.org/grub4dos/grub4dos-0.4.4-2009-06-20.zip Decompress the grub.exe and put this file into root directory of Ubuntu partition (”/”).
Step2:Create a 4GB ntfs partition and paste all files from Windows7 iso into this partition.(use this GUI tool:sudo apt-get install gparted ntfsprogs.launch from system->administrator menu).
use this command to mount the Win7 iso(change “/path/to/your/iso”):
sudo mount /path/to/your/iso /mnt -o loop
then cope all files in /mnt and paste them into root directory of previous created ntfs partition.
Step3:
For Ubuntu 9.10 (use grub2):
run:
sudo gedit /etc/grub.d/40_custom
paste following into the end:
menuentry "Grub for Dos" {
insmod ntfs
set root=(hdx,y)
linux /grub.exe
}
Note:here “set root=(hdx,y)” need change,my ubuntu was installed in /dev/sda11,so it should be “set root=(hd0,11)”
then,run:
sudo update-grub
For ubuntu 9.04 and old versions(use old grub boot loader):
run:
sudo gedit /boot/grub/menu.lst
add following:
title grub4dos
root (hdx,y)
kernel /grub.exe
boot
Note:“root (hdx,y)” is different to previous one,my ubuntu partition:/dev/sda11,and here it should be “root (hd0,10)” (without quotes).
Step4:Reboot and there is a new entry in grub:”Grub for Dos”or”grub4dos”.Select it and press c to access to grub>,then:
grub>find --set-root /bootmgr
grub>chainloader /bootmgr
grub>boot
Now,we get into Win7 installation guide interface.Press Shift+F10 to cmd command line,and run following in X:/sources loation to start:
setup.exe