Help connecting to internet & disk space in Linux Mint 13
Linux - NewbieThis 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
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
Help connecting to internet & disk space in Linux Mint 13
Hi, I'm new to Linux and very excited to get started- I installed Linux Mint 13 a couple of days ago but I haven't been able to get connect to the internet at all, which saddens me.
I am using a wired connection- I have a Linksys WUSB11 2.8 router and when I go to the Network Settings tab in the system tray it simply doesn't detect my router and there are no options available for me to configure a wired connection.
Secondly, I recently used gparted from my live disc to take some space away from Windows Vista, as I am dual booting with that OS as well. I successfully removed quite a bit of space from it, but now I'm left with over 100 gigs of unallocated space that I'd love to give Mint. This unallocated space appears to be inaccessible, however.
I'd very much appreciate help with this subject. Thanks in advance.
However the fdisk command confuses me a little. Simply typing "fdisk -l" doesn't do anything (Do I have to boot from livedisc to use this command or something?) and when I simply type in fdisk without the variable it gives me a set of options, and I'm guessing this is the command I'm after:
Quote:
fdisk [options] -l <disk> list partition table(s)
I don't know what I'm supposed to put in [options] and <disk>.
In ifconfig output "eth0" device is listed, that means network driver is already installed. But it is not taking the ipaddress. Are using dhcp or static ipaddress?. Post the network configuration file also.
To list the partition table try the below command.
The below file is the network configuration file in most of the debian based disto.
cat /etc/network/interfaces
Also from the partition table, your second partition (/dev/sda2) is taken as a extended partition. Your linux operating system (/dev/sda6 - root filesystem and /dev/sda5 - swap) is reside under the extended partition. Also only three primary partition is available in your disk. So you can create the new primary partition as /dev/sda4 from the available disk space.
While creating partition make sure that there is no over loop in the existing partition. As of now in your disk 188870656 to 483334141 free sectors are available.
Last edited by rmugunthan; 07-16-2012 at 08:33 AM.
cat /etc/network/interfaces
auto lo
iface lo inet loopback
I'll take your advice and create a new primary partition.
EDIT: I successfully divided up the amount of space I wanted between the two partitions. Thank you.
Last edited by Jellybones; 07-16-2012 at 06:01 PM.
In this configuration file nothing written related with your "eth0" device. Are you created this device manually or it is listed from the installation itself?.
If it is existing from the installation means you need to append the below contents in the interface file.
auto eth0
iface eth0 inet dhcp
Then restart the networking service using the below command
In this configuration file nothing written related with your "eth0" device. Are you created this device manually or it is listed from the installation itself?.
It should be existing from the installation since I did nothing manually with the device after installing Mint.
Quote:
If it is existing from the installation means you need to append the below contents in the interface file.
auto eth0
iface eth0 inet dhcp
Okay, how do I append the interface file?
Last edited by Jellybones; 07-18-2012 at 01:26 AM.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.