LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 02-12-2010, 07:40 PM   #1
rabiticide
Member
 
Registered: Dec 2008
Posts: 42

Rep: Reputation: 15
most powerful live CD?


I have tried puppy, knoppix, and nimblex all trying to copy the contents of a crashed drive to an external. They all have problems writing to the external even though it is listed as "(rw)" I guess because a liveCD doesn't want to touch the installed system (?)

What is the most powerful linux liveCD which allows one to write from anything to anything else with all safety turned off?


rK
 
Old 02-12-2010, 07:58 PM   #2
sycamorex
LQ Veteran
 
Registered: Nov 2005
Location: London
Distribution: Slackware64-current
Posts: 5,836
Blog Entries: 1

Rep: Reputation: 1249Reputation: 1249Reputation: 1249Reputation: 1249Reputation: 1249Reputation: 1249Reputation: 1249Reputation: 1249Reputation: 1249
It's really simple to mount it -rw manually.
mount -t ext3 /dev/sdxX /path/to/the/folder -rw
 
Old 02-12-2010, 07:59 PM   #3
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,695

Rep: Reputation: 3582Reputation: 3582Reputation: 3582Reputation: 3582Reputation: 3582Reputation: 3582Reputation: 3582Reputation: 3582Reputation: 3582Reputation: 3582Reputation: 3582
All should have worked.

Could it be that the crashed drive is the cause of the issue?
 
Old 02-12-2010, 08:28 PM   #4
rabiticide
Member
 
Registered: Dec 2008
Posts: 42

Original Poster
Rep: Reputation: 15
No the "crashed" drive is a windows drive with a nasty virus on it. There's nothing physically wrong with it. I tried the"ultimate boot cd for windows" but my DOS is a little rusty.

What I'd like to find is a good, all purpose, diagnostic and repair Linux LiveCD.


If I could only have one Linux LiveCD which would it be?

rK
 
Old 02-12-2010, 08:40 PM   #5
sycamorex
LQ Veteran
 
Registered: Nov 2005
Location: London
Distribution: Slackware64-current
Posts: 5,836
Blog Entries: 1

Rep: Reputation: 1249Reputation: 1249Reputation: 1249Reputation: 1249Reputation: 1249Reputation: 1249Reputation: 1249Reputation: 1249Reputation: 1249
If there's nothing physically wrong with the drive, you could still mount it:
mount -t vfat /dev/sdxx /path -rw
that's it.
 
Old 02-12-2010, 08:43 PM   #6
damgar
Senior Member
 
Registered: Sep 2009
Location: dallas, tx
Distribution: Slackware - current multilib/gsb Arch
Posts: 1,949
Blog Entries: 8

Rep: Reputation: 203Reputation: 203Reputation: 203
As far as live cd's for system rescue, I like System Rescue CD. http://www.sysresccd.org/Main_Page
 
Old 02-12-2010, 08:49 PM   #7
rabiticide
Member
 
Registered: Dec 2008
Posts: 42

Original Poster
Rep: Reputation: 15
I'll try to manually mount it next. Thanks for that syntax example :-)


rK
 
Old 02-13-2010, 01:19 AM   #8
beckettisdogg
Member
 
Registered: Mar 2009
Distribution: Slackware 13.0
Posts: 60

Rep: Reputation: 16
I went with Ubuntu installation CD and never had to mount anything. As soon as I ran the installation CD as a live CD, I was given a beautiful GUI. It was apparent it even recognized the video card on my machine. From then on, it was simply drag and drop for me!
 
Old 02-13-2010, 11:20 AM   #9
di11rod
Member
 
Registered: Jan 2004
Location: Austin, TEXAS
Distribution: CentOS 6.5
Posts: 211

Rep: Reputation: 32
Rabitcide,

Is the internal disc a SATA drive or IDE? I am assuming IDE, but I wanted to mention on this topic that Knoppix does not support SATA drives, so it doesn't work well as a rescue cd on modern computers. In your scenario, if you had a bad SATA drive and wanted to rescue it using knoppix, you would need to put it into an external drive enclosure and perhaps put the target drive inside your computer or in a second external drive enclosure.

Again, this info is probably irrelevant to your situation as the difficulty you would have encountered would have been in mounting the SATA internal drive.

good luck!
 
Old 02-13-2010, 11:27 AM   #10
reed9
Member
 
Registered: Jan 2009
Location: Boston, MA
Distribution: Arch Linux
Posts: 653

Rep: Reputation: 142Reputation: 142
I just recently had to recover some data off a windows pc ravaged by malware.

SystemRescueCD is what I used. But any live CD with ntfs-3g installed will give you rw support for a windows partition.

Assuming for example that /dev/sda1 is your windows partition, and there exists a mount point /mnt/windows, do
Code:
ntfs-3g /dev/sda1 /mnt/windows
Obviously you can create your own mount point as you wish.
 
Old 02-13-2010, 04:00 PM   #11
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,695

Rep: Reputation: 3582Reputation: 3582Reputation: 3582Reputation: 3582Reputation: 3582Reputation: 3582Reputation: 3582Reputation: 3582Reputation: 3582Reputation: 3582Reputation: 3582
I get it now. It was not mounted under ntfs3g rw. The gui ought to let you mount it either way as a choice too.

I tend to like the top distro's listed on distrowatch.com. The top ten or twenty usually have a live version.
 
Old 02-14-2010, 02:33 PM   #12
rabiticide
Member
 
Registered: Dec 2008
Posts: 42

Original Poster
Rep: Reputation: 15
This is what I did:

using SystemRescue CD


mkdir /mnt/external
mount -t ntfs /dev/sdb1 /mnt/external -rw

The permissions are dr-x------!

I don't know why I can't write here. I won't get a chance to try "ntfs-3g" command because DOS is doing the job with "xcopy c: d: /s /e"


rK
 
Old 02-14-2010, 02:37 PM   #13
Quakeboy02
Senior Member
 
Registered: Nov 2006
Distribution: Debian Linux 11 (Bullseye)
Posts: 3,400

Rep: Reputation: 141Reputation: 141
Quote:
Originally Posted by di11rod View Post
Rabitcide,

Is the internal disc a SATA drive or IDE? I am assuming IDE, but I wanted to mention on this topic that Knoppix does not support SATA drives
I don't think you're right about this one. Maybe your experience is with a very old copy of Knoppix.
 
Old 02-14-2010, 05:04 PM   #14
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,695

Rep: Reputation: 3582Reputation: 3582Reputation: 3582Reputation: 3582Reputation: 3582Reputation: 3582Reputation: 3582Reputation: 3582Reputation: 3582Reputation: 3582Reputation: 3582
No. mount with 3g.

http://linux.die.net/man/8/mount.ntfs-3g
 
Old 02-14-2010, 07:10 PM   #15
aus9
LQ 5k Club
 
Registered: Oct 2003
Location: Western Australia
Distribution: Icewm
Posts: 5,827

Rep: Reputation: Disabled
hi

your malware may relate to this last great effort from ms

http://itnews.com.au/News/167237,mic...th-update.aspx

recommend....you see the light now....move to the tunnel where humans will give you a virtual hug and help move away from the dark side
err I means get rid of ms
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Uses for old, but still powerful servers traigo Linux - General 2 09-26-2009 09:19 PM
Is this pc powerful enough? trapperjohn117 Linux - Hardware 5 01-11-2007 03:54 PM
More powerful 'kill' chii-chan Linux - General 8 04-27-2004 01:16 PM
Powerful Linux for you...... avols143 Linux - Distributions 3 02-21-2004 03:16 PM
powerful magnets whansard General 3 05-20-2003 03:10 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 08:14 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration