Showing posts with label windows. Show all posts
Showing posts with label windows. Show all posts

2010-11-07

grub2 dual boot

I have two hdd's, one sata named sda and an old ide named hdb. It has happened that I had to install Windows on the latter, and this is what I had to do in order to configure dual boot.

touch /etc/grub.d/15_windows
chmod a+x /etc/grub.d/15_windows

Then edit that file as follows:

#! /bin/sh -e
echo "Adding Windows" >&2
cat << EOF
menuentry "Windows XP" {
set root=(hd1,1)
drivemap -s hd0 hd1
#drivemap (hd0) (hd1)
#drivemap (hd1) (hd0)
#set root=(hd0)
chainloader +1
}
EOF

2009-10-09

how to u/mount drives on windows command line

Creates, deletes, or lists a volume mount point.

MOUNTVOL [drive:]path VolumeName
MOUNTVOL [drive:]path /D
MOUNTVOL [drive:]path /L

path Specifies the existing NTFS directory where the mount
point will reside.
VolumeName Specifies the volume name that is the target of the mount
point.
/D Removes the volume mount point from the specified directory
/L Lists the mounted volume name for the specified directory.

2009-09-03

Windows the great & "Insufficient system resources to complete the requested service" error while copying a file

Some people found out that turing off the antivirus can help. It didn't work for me, anyway. Not even by using xcopy or xcopy /Z as someone else suggested.

What I need to do is perform a local copy using ftp. If your source drive is an external hd, you may want to add that path to ftp and download it locally. You can find some info about that here.