Friday, September 3, 2010

How To Boot From A USB Flash Drive / Pen Drive

Having a bootable USB is very essential, especially if you are a Netbook user. Using bootable USB to install an operating system (OS) not only makes the installation faster, but also saves a DVD.

==========================================================================
step by step

1. Insert your USB (Pen Drive) stick to the system.


2. Navigate to Start > All programs >Accessories > right click on Command Prompt and select run as administrator.

3. When the Command Prompt opens, enter the following command:

DISKPART and hit enter.
"wait for a while"
LIST DISK and hit enter.

Once you enter the LIST DISK command, it will show the disk number of your USB drive. In the below image my USB drive disk no is Disk 1.

4. In this step you need to enter all the below commands one by one and hit enter.

SELECT DISK 1
"Replace DISK 1 with your disk number"

CLEAN
CREATE PARTITION PRIMARY
SELECT PARTITION 1
ACTIVE
FORMAT FS=NTFS
"Format process may take few seconds"
ASSIGN
EXIT

Don’t close the command prompt as we need to execute one more command at the next step. Just minimize it.


5. Insert your Windows DVD in the optical drive and note down the drive letter of the optical drive and USB media. Here I use “G” as my optical (DVD) drive letter and “H” as my USB drive letter.
"or you can mount iso image"

6. Go back to command prompt and execute the following commands:

G: CD BOOT and hit enter.
BOOTSECT.EXE/NT60 H: and hit enter.

7. Copy Windows DVD contents to USB.
"copy either by xcopy or use GUI"

now boot through USB nd enjoyyyyyyyyyyy

=======================================================================
100% work
-----OK TESTED----- with window vista & win 7 -----
=======================================================================

Monday, July 26, 2010

Mount ext2 ext3 partitions in window READ_ONLY

A new free tool for extracting files from Ext2/Ext3 partitions in Windows

DiskInternals Linux Reader is a newly developed software tool for providing access to Linux file systems under Windows. You can use it whenever you want: the program is 100% free. It lets you use a familiar ambience of Windows Explorer for extracting information from Ext2/Ext3 file systems. The only type of access possible here is read-only mode. It prevents you from interference with Linux and guarantees stable work of your OS. 


other products by diskinternals
->DiskInternals Uneraser can recover any deleted file
->DiskInternals Flash Recovery is a flash memory file recovery tool that restores all corrupted and deleted photographs 
->DiskInternals NTFS Recovery 
->NTFS Reader for Windows 95, 98, Me

Download page

http://www.diskinternals.com/download.shtml



 

Wednesday, March 31, 2010

open office 2007 files into Office 2003?

Microsoft Office Compatibility Pack for Word, Excel, and PowerPoint File Formats

Brief Description
Open, edit, and save documents, workbooks, and presentations in the Open XML file formats which were introduced to Microsoft Office Word, Excel, and PowerPoint beginning with Office 2007.

System Requirements

  • Supported Operating Systems: Windows 2000 Service Pack 4; Windows Server 2003; Windows Vista; Windows Vista Service Pack 1; Windows XP Service Pack 1; Windows XP Service Pack 2; Windows XP Service Pack 3
  • Recommended Microsoft Office programs:
    • Microsoft Word 2000 with Service Pack 3, Microsoft Excel 2000 with Service Pack 3, and Microsoft PowerPoint 2000 with Service Pack 3

    • Microsoft Word 2002 with Service Pack 3, Microsoft Excel 2002 with Service Pack 3, and Microsoft PowerPoint 2002 with Service Pack 3

    • Microsoft Office Word 2003 with at least Service Pack 1, Microsoft Office Excel 2003 with at least Service Pack 1, and Microsoft Office PowerPoint 2003 with at least Service Pack 1

    • Microsoft Office Word Viewer 2003

    • Microsoft Office Excel Viewer 2003

    • Microsoft Office PowerPoint Viewer 2003

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

DOWNLOAD

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Monday, February 1, 2010

Mount NTFS Partition on RHEL 5.x

First Setup RPMForge Repository by running this command :-
wget http://apt.sw.be/redhat/el5/en/i386/RPMS.dag/rpmforge-release-0.3.6-1.el5.rf.i386.rpm

Install DAG’s GPG Key by executing following command:-
rpm – -import http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt

Verify the package you have downloaded:-
rpm -K rpmforge-release-0.3.6-1.el5.rf.*.rpm

Install the package :

rpm -i rpmforge-release-0.3.6-1.el5.rf.*.rpm

or if you dont find packages here try some other repositories like rpmfusion, epel hope you will get it..
after this run yum list command if that runs completely then Intall gcc packages from your RHEL CD/DVD or any other repository where gcc packages available.

GCC Packages is must for Mounting NTFS.

After GCC installed

run this command :-
yum -y install fuse fuse-ntfs-3g dkms dkms-fuse

if you are running xen kernel then only run this command
yum install kernel-xen-devel

if you are running PAE kernel then only run this command
yum install kernel-PAE-devel

Now Make Entry in your /etc/fstab file

mak

e backup of your /etc/fstab by executing this command
cp /etc/fstab /etc/fstab.bkp

now open your /etc/fstab file in your favorite editor
vim /etc/fstab like below example

/dev/sda1 /mnt/ntfs ntfs-3g defaults 0 0

:wq

save & exit from file

Then execute this two commands in exact order

umount -a

mount -a

That’s it. Now You will able to see NTFS by executing df -kh or access your NTFS Volume from your mount point.


##########################100% Work#########################

Sunday, January 24, 2010

Marvell Yukon 88E8040 PCI-E Fast Ethernet Controller Driver for Linux

That is the case, just install a linux system is red hat RHEL 5, or Enterprise Edition. Installed a good system, was found inside the network settings did not recognize the hardware, can not be network settings. My own laptop is a dell inspiron 1525, an integrated network card.
windows under the normal Internet access, and the card information: Marvell Yukon 88E8040 PCI-E Fast Ethernet Controller.
The problem now is I can not find this card in the drive under linux.

centos or rhel4&5 - ethernet not detected

Below are the reuire details.

$>uname -rmi
output - 2.6.18-92.e15PAE i686 i386

$>for BUSID in $(/sbin/lspci | awk '{ IGNORECASE=1 } /net/ { print $1 }'); do /sbin/lspci -s $BUSID -m; /sbin/lspci -s $BUSID -n; done

output -
09:00:0 "Ethernet controller" marvell Technology Group Ltd." "88E8040 PCI-E FastEthernet controller" -13 "dell" "unknown device 02aa"
09:00.0 0200: llab:4354 (rev 13)
0c:00:0 "network controller" "broadcom corporation" "BCM4310 USB controller" -r01 "dell" "unknown device 000c"
0c:00.0 0280: 14e4:4315 (rev 01)

SOLUTION:
The first step is to use another system and download the kABI tracking kmod-sk98lin package that is available from ELRepo.

As you are running a 32-bit system with a PAE kernel, the package you require is kmod-sk98lin-PAE-10.70.7.3-2.el5.elrepo.i686.rpm which can be found here.

Transfer that package to your laptop via some form of removable medium (USB memory stick, CD-RW, floppy disk, etc) and, as root, install it by --

rpm -ivh kmod-sk98lin-PAE-10.70.7.3-2.el5.elrepo.i686.rpm

Now edit your /etc/modprobe.conf file so that there is one alias line that references the eth0 device --

alias eth0 sk98lin

At this point I would recommend that you re-boot your laptop after
connecting it to a wired Internet source. You should now be able to
configure the system (if necessary) by running system-config-network.



web stats