LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
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-22-2007, 04:52 AM   #1
Elzix
LQ Newbie
 
Registered: Feb 2007
Location: Nairobi, Kenya
Distribution: Kubuntu 7.04 Feisty
Posts: 16

Rep: Reputation: 0
Unhappy Windows >> Linux


I have just converted from windows to linux, coz of the outrages amount of viruses present in windows. The one that made me convert:

-Infected all *.exe, *.htm, *.php, *.scr
-Sabotaged Norton Antivirus
-Assasinated all Flash Disks inserted into my PC
-Hid from other Antivirus's

My HDD is 160GB and still has 120GB of files unaffected.

Installed Linux to another HDD (40GB), to find out:

Is it possible to copy files from NTFS over to Linux File Sys?

Note: I live in Kenya.. Buying DVD's to save all that data may be very difficult due to many factors..
 
Old 02-22-2007, 05:10 AM   #2
gruelius
Member
 
Registered: Mar 2005
Distribution: Gentoo
Posts: 30

Rep: Reputation: 15
Hey there.
It is possible to mount NTFS partitions in linux and read (Write soon ive heard). I believe the best idea would be to install a linux virus scanner, scan the windows partition and after it is cleaned use that as your storage partition.
Because its outside of windows it should get rid of most virus's.

If you plan to copy the files it will be hard as you will need to copy, resize partitions, copy, resize partitions e.t.c.

Anyway wait till somone comes to say how to do what i said :P

I dont know how fedora handles packages, best wait till a fedora expert pops round.
 
Old 02-22-2007, 05:59 AM   #3
Broder
Member
 
Registered: Oct 2006
Location: Santa Barbara, C.A.
Distribution: Mood dependent
Posts: 117

Rep: Reputation: 15
Yes, you can copy the files over. Linux has no problem reading from NTFS, it isn't very straightforward to write to NTFS and can damage the drive. My advice would be to copy over the (uncorrupt) data and then format the drive to FAT32 that way both linux and windows can read and write to it.
 
Old 02-22-2007, 06:21 AM   #4
titopoquito
Senior Member
 
Registered: Jul 2004
Location: Lower Rhine region, Germany
Distribution: Slackware64 14.2 and current, SlackwareARM current
Posts: 1,644

Rep: Reputation: 145Reputation: 145
Even writing on a NTFS partition should be ok with the ntfs-3g driver which reached stable status some days before. Look here ( http://laci.linuxforum.hu/#ntfs-3g ) to see how to install it on Fedora if it's not installed already. You would of course leave out the "locale=..." from the given example to get English locale.
 
Old 02-22-2007, 10:19 AM   #5
Broder
Member
 
Registered: Oct 2006
Location: Santa Barbara, C.A.
Distribution: Mood dependent
Posts: 117

Rep: Reputation: 15
Yes, you can copy the files over. Linux has no problem reading from NTFS, it isn't very straightforward to write to NTFS and can damage the drive. My advice would be to copy over the (uncorrupt) data and then format the drive to FAT32 that way both linux and windows can read and write to it.

Apologies: Duplicate message. Pressed the back and forward buttons on browser!

Last edited by Broder; 02-22-2007 at 10:32 AM.
 
Old 02-22-2007, 02:31 PM   #6
oskar
Senior Member
 
Registered: Feb 2006
Location: Austria
Distribution: Ubuntu 12.10
Posts: 1,142

Rep: Reputation: 49
If you want to copy some files over to the linux partition type:

"sudo fdisk -l"

After you entered your root password, it will show you all the partitions.
On the left you see /dev... which is where the disks are located (everything is a file in linux - the disks, are in the /dev (Device) directory.
The first one will probably be /dev/hda1 for hd(harddisk) a(first disk - master)... and "1" for 1'st partition.
On the right you see the partition types. Find the one that sais "ntfs", and look to the beginning of the line to see where the disk is. (on my pc it's /dev/hdg1).
Now you have to mount the partition(! not harddisk) somewhere. I suggest /mnt.
So you make a directory to mount it to:

sudo mkdir /mnt/windows

then mount it there:

sudo mount -t ntfs /dev/hd... /mnt/windows

You can now open nautilus or Konqueror, and go to that directory, and start copying.
If you want write access - setting up ntfs3g is pretty easy and not very risky. Some people still have kernel support for ntfs-writing in the back of their heads. That actually still is pretty buggy.

If you want to mount your windows partition automatically on startup:

sudo gedit /etc/fstab (or sudo kate ... in kde)
Add the line (you need to fill in your disk):

/dev/... /mnt/windows ntfs defaults 0 0

That should work. You might have to change read permissions on the folder - if you can't access it:
sudo chmod 444 /mnt/windows

Last edited by oskar; 02-22-2007 at 02:39 PM.
 
Old 02-24-2007, 06:21 AM   #7
Elzix
LQ Newbie
 
Registered: Feb 2007
Location: Nairobi, Kenya
Distribution: Kubuntu 7.04 Feisty
Posts: 16

Original Poster
Rep: Reputation: 0
Smile

I like the 'sudo' answer.. I'll try it.. When I'm done with my uni assignments..

I have noticed the use of 'sudo' at the beginning of all your lines. My first thought is that it is to type in the 'Terminal'.

I am using Fedora Core 4. Are there any 'packages' that I'd need for that command to work, will it be included in the core or would I have to get Core 6?

Note:
- 'word' = new to me.

Problems:
- Slow net here => get core 6 in 2 weeks straight!
- Credit cards here are only issued to full-time working ppl, so can't order for CD online.. (The ones with one, are very afraid of oline transactions).
 
Old 02-24-2007, 07:25 AM   #8
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
sudo is very basic--it should work in a ny Linux.

Whenever someone talks about entering a command, the use of a terminal or "console" is assumed. You will also see CLI for "command-line interface". Somewhere in your menus is the terminal program. You can also get to the command line by typing ctrl-alt-F1 (or F2)

If you are doing things that require root (superuser) powers, you can also enter "su", followed by the root password. Then, all subsequent commands can be entered without the sudo.

Interesting comment about credit cards--might be a smart idea here in the US....

Ubuntu for one will send CDs free.
 
Old 02-24-2007, 08:30 AM   #9
oskar
Senior Member
 
Registered: Feb 2006
Location: Austria
Distribution: Ubuntu 12.10
Posts: 1,142

Rep: Reputation: 49
Quote:
Originally Posted by Elzix
I have noticed the use of 'sudo' at the beginning of all your lines. My first thought is that it is to type in the 'Terminal'.
sudo makes you king for a day. You can execute a single command as root (SuperUser), without logging in as root. Sudo is often preferred, because it gives you the same permissions, but you change back to user right after the process has ended. If you change to root alot, you will know why. You'll have a bunch of stuff you can't access because you forgot to log out, and kept working as root where you shouldn't have.
Maybe it's just me... But it can't hurt anyway.
 
Old 02-26-2007, 07:07 AM   #10
Elzix
LQ Newbie
 
Registered: Feb 2007
Location: Nairobi, Kenya
Distribution: Kubuntu 7.04 Feisty
Posts: 16

Original Poster
Rep: Reputation: 0
Exclamation sudo

I tried the sudo command..
The root password did not work..
Tried my own password, and now it keeps saying "Your not a sudoer, this incident will be reported."

Questions:

- How do I become a sudoer?

- How do I stop it from giving that error, to try another password?

- What's the command for 'log-out'?
(I'll probably find the answer to this, but let me ask all the same..)
 
Old 02-26-2007, 07:26 AM   #11
ethics
Senior Member
 
Registered: Apr 2005
Location: London
Distribution: Arch - Latest
Posts: 1,522

Rep: Reputation: 45
The root password wouldn't work because you're assuming roots permissions as YOUR user, and so need your password.

Your password didn't work because you haven't been granted access to sudo.

The file that needs modifying is /etc/sudoers on most distros.

It is said that it must be edited with the command
Code:
visudoers
i honestly dont know why, perhaps it's more secure and doesn't leave any backups etc.
 
Old 02-26-2007, 11:12 AM   #12
v00d00101
Member
 
Registered: Jun 2003
Location: UK
Distribution: Devuan Beowulf
Posts: 514
Blog Entries: 1

Rep: Reputation: 37
Ignore sudo, and use su instead. Type in exit (and hit enter) to become a mortal again.

Code:
su -
The difference between su and sudo are nothing but control. But why setup sudo anyway. With that a person only needs your user password to execute things as root. Better to just use su, and only when you need to be root, not for general use.

Quick tip, from su, you can become another user by typing su username (where username equals a user account ,eg, su tim lets me be logged in as tim, type exit to go back to root. Its useful when you are doing compiling tasks, and other things where you want to fast switch without typing a password each time).
 
Old 02-26-2007, 01:55 PM   #13
oskar
Senior Member
 
Registered: Feb 2006
Location: Austria
Distribution: Ubuntu 12.10
Posts: 1,142

Rep: Reputation: 49
--deleted--

Last edited by oskar; 02-26-2007 at 01:58 PM.
 
Old 02-28-2007, 07:32 AM   #14
Elzix
LQ Newbie
 
Registered: Feb 2007
Location: Nairobi, Kenya
Distribution: Kubuntu 7.04 Feisty
Posts: 16

Original Poster
Rep: Reputation: 0
Smile

Thanks all..

All the commands are working.. Too bad FC4 does not know what ntfs is.. I'll have to get FC6.. Use for a while.. then try out Kubuntu 6.06 and Madriva 2007, see which is best for multimedia and games..
 
Old 02-28-2007, 08:19 AM   #15
IndyGunFreak
Senior Member
 
Registered: Aug 2003
Location: Indpls
Distribution: Laptops: Debian Jessie XFCE, NAS: OpenMediaVault 3.0
Posts: 1,355

Rep: Reputation: 70
Quote:
Originally Posted by Elzix
Thanks all..

All the commands are working.. Too bad FC4 does not know what ntfs is.. I'll have to get FC6.. Use for a while.. then try out Kubuntu 6.06 and Madriva 2007, see which is best for multimedia and games..
If you go with Kubuntu, you may want to try the current release.. 6.10..

Good luck on your problems...

IGF
 
  


Reply



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
LXer: Linux & Windows get hitched: 2X ThinClientServer v3 makes Windows LXer Syndicated Linux News 0 06-27-2006 09:21 AM
Solution Dual Boot Windows & Linux [ALL DONE IN WINDOWS] No Linux terminology DSargeant Linux - Newbie 35 02-07-2006 03:29 PM
Solution Dual Boot Windows & Linux [ALL DONE IN WINDOWS] No Linux terminology DSargeant Linux - Newbie 4 11-10-2005 11:37 AM
Red Hat Linux 9 + Windows Server 2003 + Windows XP + Fedora in same domain wolfy339 Linux - Networking 5 03-02-2005 06:03 AM

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

All times are GMT -5. The time now is 04:24 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