Partimage Not Working please help ;-)
I have booted knoppix 3.2-2003-09-26 on my laptop and on my workstation, these PC's are on a network and each knoppix desktop is using the network OK.
I have opened Xterm on the workstation and typed "sudo partimaged", and on the laptop I opened Xterm and typed "sudo partimage".
The problem is that on the laptop partimage keeps asking me for a username and password, I do not know the partimaged account details to get them working together.
I have used partimage to backup an NTFS partition into a file on a FAT32 partition on the same machine many times and it works OK.
I have not done it over a network before and I need some help from someone who has done this using 2 knoppix machines on a LAN.
Please Help anyone ;-)
Thanks,
JamesX110.................................
Set new password for user "partimag"
Hi James,
try this out:
On the workstation:
sudo
passwd partimag
Then you have to create a dir with write permission for the user "partimag".
Then start partimaged with the target-dir (I think parameter -d should do this?)
Then on the laptop:
sudo
partimage
If you are prompted for user and password you can enter username "partimag" and the matching password!
This should work!
Regards
RFC 0815
chown: ... Operation not permitted
I'm a beginner/idiot :wink: trying his best to his his way into linux.
I was making the attempt to do the same procedure as the individual bove. I created a FAT32 partition (hda10) on the server machine to save the ghosted image, ran knoppix on the client machine fine, and ran into the uname and password issue. Attempting to create a directory and set permissions for the partimag user generated the following:
root@ttyp1[home]# chown partimag /mnt/hda10/home
chown: changing ownership of `/mnt/hda10/home': Operation not permitted
I'm out of ideas since I've had ZERO experience with linux up until today, so if someone could help I'd really appreciate it...
Oh, I'm using the CD version of Knoppix on both machines btw. That's probably the source of my issue, but i can't see why.
Re: chown: ... Operation not permitted
--The problem you're experiencing is because FAT32 doesn't do permissions. Switch to a Linux-based partition/filesystem instead, like reiserfs (backup anything on HDA10 1st unless it's empty):
' umount /dev/hda10 '
' mkreiserfs /dev/hda10 '
' mount /mnt/hda10 -onotail,noatime ' == This *should* work but you might want to put those options in /etc/fstab...
' mkdir -p -v /mnt/hda10/home '
' chown partimag /mnt/hda10/home '
' ls -al /mnt/hda10 '
--Lemme know if it works.
Quote:
Originally Posted by ejohns11
I'm a beginner/idiot :wink: trying his best to his his way into linux.
I was making the attempt to do the same procedure as the individual bove. I created a FAT32 partition (hda10) on the server machine to save the ghosted image, ran knoppix on the client machine fine, and ran into the uname and password issue. Attempting to create a directory and set permissions for the partimag user generated the following:
root@ttyp1[home]# chown partimag /mnt/hda10/home
chown: changing ownership of `/mnt/hda10/home': Operation not permitted
I'm out of ideas since I've had ZERO experience with linux up until today, so if someone could help I'd really appreciate it...
Oh, I'm using the CD version of Knoppix on both machines btw. That's probably the source of my issue, but i can't see why.