LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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 08-17-2009, 03:00 PM   #46
harsshal
Member
 
Registered: Jul 2006
Location: New York, NY
Distribution: redhat,ubuntu,RHEL,fedora,centOS
Posts: 105

Rep: Reputation: 15

Quote:
Originally Posted by fletch2k3 View Post
Im logged in under the root password. i logged off and logged back in, how do i get promted to enter my root password?
You should type
Code:
su -
Then you will be prompted to put root password.
But execute only those commands as root which you have been told here.
 
Old 08-17-2009, 03:00 PM   #47
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
Glad it worked.

Quote:
how can i lower the cache size?
in firefox
Quote:
edit=>preferences=>advanced network
first click to clear the cache, then lower it
Don't forget to disable or remove beagle
Beagle makes an index of all the files on the computer, so you can easely search, but it uses lots of space.
Quote:
so does this laptop seem like its a good one to use while in school?
yes, why not
 
Old 08-17-2009, 03:05 PM   #48
fletch2k3
Member
 
Registered: Aug 2009
Location: Somewhere in TX
Distribution: SuSE
Posts: 72

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by repo View Post
Glad it worked.


in firefox

first click to clear the cache, then lower it
Don't forget to disable or remove beagle
Beagle makes an index of all the files on the computer, so you can easely search, but it uses lots of space.

yes, why not
ohh ok i thought it was something i had to type in the terminal. I havent been logged on long and my space is already decreasing. it went from 215M free/ 3G total to 210M free/ 3g total. And i havent done anything yet. And when it gets to 20M free it locked up.
 
Old 08-17-2009, 03:06 PM   #49
i92guboj
Gentoo support team
 
Registered: May 2008
Location: Lucena, Córdoba (Spain)
Distribution: Gentoo
Posts: 4,083

Rep: Reputation: 405Reputation: 405Reputation: 405Reputation: 405Reputation: 405
Quote:
Originally Posted by fletch2k3 View Post
Im logged in under the root password. i logged off and logged back in, how do i get promted to enter my root password?
Nah, forget about that, I was under the impression that you were operating as an unprivileged user because root, in principle, should be able to read everything.

Please, try this variation of the previous command, I want to see the permissions and ownerships of the device nodes associated to your partitions:

Code:
ls -l /dev/sda*
I suspect that most of your disk space remains unaccessible for some reason that I can't yet understand.

I hope that the advices above by repo work and let you login as a regular user. But even then your disk space is that limited that sooner or later you are gonna have the same problem. That's why we need to find why your second partition isn't being mounted at all. You should also try to mount it manually, and see what does it says, this way:

Code:
cd /mnt
mkdir tmp
mount /dev/sda2 tmp
After that, let me know if it gives any error or not. If it doesn't tell you anything then the command should have suceeded, in that case "df | grep sda" should now show two lines.

On the contrary, if some error happens then we will need to investigate a bit more.
 
Old 08-17-2009, 03:08 PM   #50
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
Quote:
ohh ok i thought it was something i had to type in the terminal. I havent been logged on long and my space is already decreasing. it went from 215M free/ 3G total to 210M free/ 3g total. And i havent done anything yet. And when it gets to 20M free it locked up.
Disable or uninstall beagle.
 
Old 08-17-2009, 03:13 PM   #51
fletch2k3
Member
 
Registered: Aug 2009
Location: Somewhere in TX
Distribution: SuSE
Posts: 72

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by i92guboj View Post
Nah, forget about that, I was under the impression that you were operating as an unprivileged user because root, in principle, should be able to read everything.

Please, try this variation of the previous command, I want to see the permissions and ownerships of the device nodes associated to your partitions:

Code:
ls -l /dev/sda*
I suspect that most of your disk space remains unaccessible for some reason that I can't yet understand.

I hope that the advices above by repo work and let you login as a regular user. But even then your disk space is that limited that sooner or later you are gonna have the same problem. That's why we need to find why your second partition isn't being mounted at all. You should also try to mount it manually, and see what does it says, this way:

Code:
cd /mnt
mkdir tmp
mount /dev/sda2 tmp
After that, let me know if it gives any error or not. If it doesn't tell you anything then the command should have suceeded, in that case "df | grep sda" should now show two lines.

On the contrary, if some error happens then we will need to investigate a bit more.


ok ill give it a try. something popped up. it says Unlock Keyring. The application 'nm-applet'(/usr/bin/nm-applet) wants access to the default keyring, but its locked. and it gives me a space for a password but none that i use worked. what is that?
 
Old 08-17-2009, 03:21 PM   #52
i92guboj
Gentoo support team
 
Registered: May 2008
Location: Lucena, Córdoba (Spain)
Distribution: Gentoo
Posts: 4,083

Rep: Reputation: 405Reputation: 405Reputation: 405Reputation: 405Reputation: 405
The keyring is a kind of wallet that's specific to the desktop you use. There many apps store passwords for many things, and when one of these apps need to access a password it asks the keyring. That way the keyring can memorize thousands of passwords for you, and you only have to remember one (the one for your keyring). One password to rule them all

I have no idea why that pops up now though. My guess is that this nm-applet thing is a network manager applet of some kind. There's no way to unlock the keyring if you don't know the central password to it though, which might bring you some complications later, or not. It all depends if you use it to store some password that you really need (if not you can just delete your user account and create a new one at some point to get rid of all the crap).

Last edited by i92guboj; 08-17-2009 at 03:24 PM.
 
Old 08-17-2009, 03:22 PM   #53
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
Quote:
ok ill give it a try. something popped up. it says Unlock Keyring. The application 'nm-applet'(/usr/bin/nm-applet) wants access to the default keyring, but its locked. and it gives me a space for a password but none that i use worked. what is that?
try to hit enter, with no password
 
Old 08-17-2009, 03:25 PM   #54
fletch2k3
Member
 
Registered: Aug 2009
Location: Somewhere in TX
Distribution: SuSE
Posts: 72

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by i92guboj View Post
Nah, forget about that, I was under the impression that you were operating as an unprivileged user because root, in principle, should be able to read everything.

Please, try this variation of the previous command, I want to see the permissions and ownerships of the device nodes associated to your partitions:

Code:
ls -l /dev/sda*
I suspect that most of your disk space remains unaccessible for some reason that I can't yet understand.

I hope that the advices above by repo work and let you login as a regular user. But even then your disk space is that limited that sooner or later you are gonna have the same problem. That's why we need to find why your second partition isn't being mounted at all. You should also try to mount it manually, and see what does it says, this way:

Code:
cd /mnt
mkdir tmp
mount /dev/sda2 tmp
After that, let me know if it gives any error or not. If it doesn't tell you anything then the command should have suceeded, in that case "df | grep sda" should now show two lines.

On the contrary, if some error happens then we will need to investigate a bit more.


ok i did the first one and it came up

[code]
brw-r----- 1root disk 8, 0 2009-08-17 8:42 /dev/sda
brw-r----- 1root disk 8, 1 2009-08-17 8:42 /dev/sda1
brw-r----- 1root disk 8, 2 2009-08-17 8:42 /dev/sda2
 
Old 08-17-2009, 03:33 PM   #55
fletch2k3
Member
 
Registered: Aug 2009
Location: Somewhere in TX
Distribution: SuSE
Posts: 72

Original Poster
Rep: Reputation: 15
boy i hope you guys are getting paid for helping me for this long!! You guys rawk!!


OK good news! In the terminal when i was putting in the code for mount etc. it told me i needed to be logged in to do so. So i put in my root password and it gave me a # symbol. so i went back and entered # fdisk -l and this is what it gave me

[code]
Disk /dev/sda: 4009MB, 4009549824 bytes
255 heads, 63 sectors/track, 487 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot Start End Blocks Id System
/dev/sda1 406 487 658665 82 Linux swap / Solaris
/dec/sda2 * 1 405 3253131 83 Linux

Partition table entries are not in disk order
 
Old 08-17-2009, 03:41 PM   #56
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
Did you uninstalled beagle?
AFAIK this notebook has 120 GB hard disk.
http://h40059.www4.hp.com/hp2133/
I wonder why it only reports 3 GB
 
Old 08-17-2009, 03:41 PM   #57
fletch2k3
Member
 
Registered: Aug 2009
Location: Somewhere in TX
Distribution: SuSE
Posts: 72

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by repo View Post
try to hit enter, with no password
It just popped back up with the same prompt.
 
Old 08-17-2009, 03:42 PM   #58
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
try the root password
 
Old 08-17-2009, 03:43 PM   #59
fletch2k3
Member
 
Registered: Aug 2009
Location: Somewhere in TX
Distribution: SuSE
Posts: 72

Original Poster
Rep: Reputation: 15
when i enter file -s /dev/sda2 now it brings up

Code:
 
x86 boot sector, code offset 0x48
 
Old 08-17-2009, 03:46 PM   #60
i92guboj
Gentoo support team
 
Registered: May 2008
Location: Lucena, Córdoba (Spain)
Distribution: Gentoo
Posts: 4,083

Rep: Reputation: 405Reputation: 405Reputation: 405Reputation: 405Reputation: 405
Ok, it's really really strange. But indeed, your hard disk has only 4gb

Very limited storage capacity for nowadays standards. It's divided into two portions, one of which is a swap disk, which is used to emulate ram. So, only a bit more than 3 gigabytes is actually used for storage. So, besides cleaning it, there's very little you can do. Maybe installing a small distro... You can as well use an external drive to store additional data. Still you will have to be vigilant about beagle and the firefox cache, and whatever else is filling your drive.

It could worth to check the manuals if you have them. Because it seems strange to me that such a machine comes with such a little disk. Maybe someone has manipulated the machine, or maybe there's something strange going on and the disk is really bigger than your OS can detect. I'll think a bit about this and see if I can throw some light on the issue.

Last edited by i92guboj; 08-17-2009 at 03:49 PM.
 
  


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
partition space and disk space usage and free don't match nsic Linux - Newbie 3 02-22-2013 12:57 PM
hard disk partitioning/I am out of space /how to increase linux space? RMLinux Red Hat 8 09-05-2008 12:33 PM
add space to / when from spare space on disk ctsiow Linux - General 4 11-07-2007 07:55 AM
Cedega "Disk space required for the installation exceeds available disk space" Solved Spewdemon LinuxQuestions.org Member Success Stories 1 10-18-2007 06:19 PM
3Gb of disk space lost! Disk space problem or mother board conflicts with HDD Mistreated Linux - Hardware 4 12-06-2004 03:58 PM

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

All times are GMT -5. The time now is 05:27 PM.

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