HardwareLogic

Go Back   HardwareLogic > Specific Hardware > Software & OSs
Home Forums Rules All AlbumsBlogs Subscriptions Register Mark Forums Read

Software & OSs Operating Systems, Anti-Virus, Utilities and Programs.

Reply
 
LinkBack Thread Tools
Old April 27th, 2007   #21
vincit qui se vincit
 
Carl Martin's Avatar
 
Join Date: Dec 2006
Location: Upper Michigan
Posts: 451
Default Re: Linux Distributions

Just burned and booted-up from Ubuntu Live CD but the link I used was to version 6.06. Nevertheless, I have to say I'm impressed. It found all my devices and they work properly. (Can't say XP did this, even for my MS keyboard and mouse.)

Couldn't access the files on my hard drives, which raises a question: Will an installed version of (K)ubuntu be able to access my music and photos on my storage drive (NTFS format)?



Core 2 Duo E6750
Arctic Cooling Freezer 7 Pro
Abit IP35 Pro
2x1GB Crucial Ballistix DDR2 800
EVGA 8800GT
500GB Seagate Barracuda 32MB Cache
Coolermaster RC-690
OCZ StealthXStream 600 watt
Acer AL2216W 22" monitor
Windows XP Pro SP2
Carl Martin is offline   Reply With Quote
Old April 27th, 2007   #22
Modder-ator
 
gvblake22's Avatar
 
Join Date: Dec 2005
Location: Tempe Desert
Posts: 6,360
Blog Entries: 1
Default Re: Linux Distributions

Quote:
Originally Posted by Carl Martin View Post
Couldn't access the files on my hard drives, which raises a question: Will an installed version of (K)ubuntu be able to access my music and photos on my storage drive (NTFS format)?
Oh dang, I didn't even think about that! I'd like to hear an answer on this too!



gvblake22 is offline   Reply With Quote
Old April 27th, 2007   #23
Banned
 
yurimxpxman's Avatar
 
Join Date: Jun 2006
Location: /home/yurimxpxman
Posts: 1,695
Default Re: Linux Distributions

Feisty Fawn (Ubuntu 7.04) recognizes NTFS drives right off the bat, and it even gives you a chance to import your settings from Windows. NTFS support is still available, though, in 6.06. Run sudo apt-get install ntfs-3g and then you can use the mount command on your NTFS partition.
yurimxpxman is offline   Reply With Quote
Old April 27th, 2007   #24
ButtHead
 
Jokerswild's Avatar
 
Join Date: Mar 2006
Posts: 5,061
Default Re: Linux Distributions

Quote:
Originally Posted by yurimxpxman View Post
Feisty Fawn (Ubuntu 7.04) recognizes NTFS drives right off the bat, and it even gives you a chance to import your settings from Windows. NTFS support is still available, though, in 6.06. Run sudo apt-get install ntfs-3g and then you can use the mount command on your NTFS partition.
Yuri you will probably have to go into more detail on how to do it, like a step by step guide.



Jokerswild is offline   Reply With Quote
Old April 27th, 2007   #25
Colonel Calamity
 
screwballl's Avatar
 
Join Date: Oct 2006
Location: Sandy South
Posts: 6,279
Blog Entries: 6
Default Re: Linux Distributions

the installed version should allow the NTFS... if not then the simple command of "sudo apt-get install ntfs-3g" will do it or go to Synaptic Package manager and search for ntfs-3g will show you the related tools. Usually installing one will also choose the needed dependencies (which are like certain programs in winblows that require MS .NET Framework, or like how GAIM requires the GTK+ stuff in windows).

Also I myself had issues with Ubuntu 6.10 and 7.04beta so I am sticking with 6.10 Kubuntu for now







Thanks HL and Corsair!

My opinions are my own and not representative of this site or its members.

screwballl is offline   Reply With Quote
Old April 27th, 2007   #26
Banned
 
yurimxpxman's Avatar
 
Join Date: Jun 2006
Location: /home/yurimxpxman
Posts: 1,695
Default Re: Linux Distributions

Open a terminal. The sure fire way to do this is to push CTRL+Alt+F1. Type your username and password to login. To return to the graphical environment at any point, push ALT+F7.

Run this command:

Code:
sudo apt-get install ntfs-3g
That installs the NTFS driver. Now you need to know where your partition is, so you need to run this:

Code:
sudo fdisk -l
That command will show you a list of all your partitions. It will look something like this:

Code:
yurimxpxman@joshpc:~$ sudo fdisk -l
Password:

Disk /dev/sda: 400.0 GB, 400088457216 bytes
255 heads, 63 sectors/track, 48641 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1               1       31995   256999806   83  Linux
/dev/sda2           31996       32371     3020220    5  Extended
/dev/sda3   *       32372       48641   130688775   bf  Solaris
/dev/sda5           31996       32371     3020188+  82  Linux swap / Solaris
yurimxpxman@joshpc:~$
Of course, I don't have an NTFS partition, so you will probably see at least one line that looks sort of like this:

Code:
/dev/sda1               1       31995   256999806   83  NTFS
Take a look at that /dev/ part at the beginning. That tells you where your partition is located. In my example, I will use /dev/sda1, but be sure to replace it with the location of your partition. Now you need to run this:

Code:
sudo mkdir /mnt/windows
sudo mount /dev/sda1 /mnt/windows
That's the basics. I could go into more detail about automatically mounting the partition when you start it and such, but I believe that should be enough to get you going. To access your files, just open a file browser window (like nautilus if you're in GNOME [Ubuntu]) and browse to /mnt/windows.
yurimxpxman is offline   Reply With Quote
Old April 27th, 2007   #27
ButtHead
 
Jokerswild's Avatar
 
Join Date: Mar 2006
Posts: 5,061
Default Re: Linux Distributions

Man it's great having screwball and Yuri around when you have a linux question. Without you two penguin's would be walking off cliffs everywhere.



Jokerswild is offline   Reply With Quote
Old April 27th, 2007   #28
Colonel Calamity
 
screwballl's Avatar
 
Join Date: Oct 2006
Location: Sandy South
Posts: 6,279
Blog Entries: 6
Default Re: Linux Distributions

Quote:
Originally Posted by Jokerswild View Post
Man it's great having screwball and Yuri around when you have a linux question. Without you two penguin's would be walking off cliffs everywhere.
no thats a lemming... penguins do it on occasion but usually into water and more for fun







Thanks HL and Corsair!

My opinions are my own and not representative of this site or its members.

screwballl is offline   Reply With Quote
Old April 27th, 2007   #29
ButtHead
 
Jokerswild's Avatar
 
Join Date: Mar 2006
Posts: 5,061
Default Re: Linux Distributions

Quote:
Originally Posted by screwballl View Post
no thats a lemming... penguins do it on occasion but usually into water and more for fun
See you guy's have all the answers.



Jokerswild is offline   Reply With Quote
Old April 27th, 2007   #30
vincit qui se vincit
 
Carl Martin's Avatar
 
Join Date: Dec 2006
Location: Upper Michigan
Posts: 451
Default Re: Linux Distributions

I'd like to install a few distros, but first I need to partition my primary hard drive. Right now only 11.4 Gb of 150 are being used. Questions: How many partitions should I make, and what size should they be? Will the utility in Windows do the job, or should I use another program such as GParted?



Core 2 Duo E6750
Arctic Cooling Freezer 7 Pro
Abit IP35 Pro
2x1GB Crucial Ballistix DDR2 800
EVGA 8800GT
500GB Seagate Barracuda 32MB Cache
Coolermaster RC-690
OCZ StealthXStream 600 watt
Acer AL2216W 22" monitor
Windows XP Pro SP2
Carl Martin is offline   Reply With Quote
Reply

  HardwareLogic > Specific Hardware > Software & OSs

Tags
distributions, linux


Thread Tools

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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Is Linux using four cores? computer_freak_8 Processors 14 May 20th, 2008 07:08
Browsing Distributions yurimxpxman Software & OSs 18 April 2nd, 2007 07:38
Linux Help Neo_Angelo Peripherals 28 November 17th, 2006 07:40
Linux and You:Part 2-Using Linux Lead Head Software & OSs 29 May 14th, 2006 15:42
Linux and you: Part 1, Installing Linux-A guide by Lead Head Lead Head Software & OSs 41 May 6th, 2006 10:23


All times are GMT -8. The time now is 04:22.


Powered by vBulletin® Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
© HardwareLogic 2005 - 2008. All Rights Reserved


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49