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 |
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.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
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.
|
 |
01-02-2010, 03:29 PM
|
#1
|
LQ Newbie
Registered: Jan 2010
Posts: 7
Rep:
|
enough memory?
Hi everyone,
My first post. Just wiped Windows on a Dell Inspiron 8000 and installed Ubuntu. Most things going well but ran GIMP today and noticed the dissolve very slow. Think I might need more memory? I typed $ free -m and got this:
total used free shared buffers cached
Mem: 497 483 14 0 15 215
-/+ buffers/cache: 251 245
Swap: 839 43 796
I take this to mean I have 500MB of memory but most of it is used up on something? Does this explain why opening new windows incurs a lag of a few seconds and my GIMP slideshow runs very slowly?
Any answers appreciated but please keep it simple - I was a pretty good Windows user but know very little about Linux.
Thanks to anyone who can help.
|
|
|
01-02-2010, 03:34 PM
|
#2
|
Senior Member
Registered: May 2004
Location: In the DC 'burbs
Distribution: Arch, Scientific Linux, Debian, Ubuntu
Posts: 4,290
|
It does indeed look like you have 512 MB of memory (some of it is hardwaired by the kernel and not visible in free, which is why you see only 497 MB). Of your 497 MB of available memory, 383 MB are used. However, if you look at the second line of your output, you see that when buffer/cache memory is subtracted only 251 MB is in use. Linux actually tries to use as much of your memory as possible (after all, what good is having it if you don't use it?). However, in most cases much of the memory used is in buffers/caches which can be released to applications if needed. So it doesn't look like you're terribly short on memory. However, you seem to have 43 MB in swap. If you start seeing more and more swap usage, that's bad! Your system should swap rarely, if at all, since swap space on the hard disk is so much slower than RAM.
GIMP is a very processor and memory intensive application. It would be helpful if we knew a little more about your hardware (processor, graphics card, etc.) and what other software you're running.
All this being said, 512 MB is a bit on the low side these days for heavy graphics work. Bumping yourself up to 1 GB could be helpful.
|
|
|
01-02-2010, 03:36 PM
|
#3
|
Member
Registered: Oct 2004
Location: Atlanta
Distribution: CentOS, RHEL, HP-UX, OS X
Posts: 567
Rep:
|
You only have 14MB of physical memory available and 796MB of your swap space available. That would explain your lag. Things will move much faster when being processed in physical memory.
Really an upgrade is up to you, I mean you are not at a system crippling state or anything.
|
|
|
01-02-2010, 04:19 PM
|
#4
|
Member
Registered: Nov 2001
Location: US
Distribution: Slackware 14.2
Posts: 375
Rep: 
|
You have 245MB free out of 512MB (approximately 50% so that's OK), but you've used 43MB swap space (not so good). If you're comfortable working in a more minimalistic environment, I would suggest you use LXDE or just a window manager like Fluxbox instead of the full Gnome environment. That would certainly free up a good chunk of your 512MB, which could then be used for applications (like Gimp).
|
|
|
01-02-2010, 05:11 PM
|
#5
|
LQ Newbie
Registered: Jan 2010
Posts: 7
Original Poster
Rep:
|
Gosh thanks folks - I'm amazed to get such quick answers. I've googled my system and 500MB is the max, btmiller.
I've managed to install Irfanview and get it working so I can do basic image editing. I'm impressed with GIMP, though (Iview doesn't have a clone tool, for one thing) so I'd like to use this or perhaps some lighter Linux image editing software if there was something?
Speck, I don't know how to switch from full Gnome to LXDE or Fluxbox but I'd be happy to do it if I would still recognise the environment! (What I have now is similar to Windows so I'm getting comfortable with it, even using the occasional terminal command).
Perhaps someone could point me in the direction of how to do it, please? If I couldn't cope with it would I be able to switch back to my present environment and just accept things? It's an old laptop and I'm just glad it's still working at all!
Thanks again in advance to everyone - what a great forum!
|
|
|
01-02-2010, 05:26 PM
|
#6
|
LQ Veteran
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,378
|
Gimp is basically it - and it is hungry.
Better perhaps to toss Ubuntu, and maybe look at installing Xubuntu - a lighter Ubuntu that is pre-packaged. Seems 9.04 latest is available, but that may be a good thing given the problems with 9.10.
|
|
|
01-02-2010, 07:44 PM
|
#7
|
LQ 5k Club
Registered: Sep 2009
Posts: 6,443
|
Xubuntu is lighter because it uses the less resource-hungry Xfce desktop instead of GNOME.
You can also skip the whole desktop environment and go with a plain window manager.
http://www.xwinman.org/
|
|
|
01-02-2010, 10:31 PM
|
#8
|
Registered User
Registered: Dec 2006
Posts: 1,454
Rep:
|
Quote:
Originally Posted by AlastairSC
Perhaps someone could point me in the direction of how to do it, please? If I couldn't cope with it would I be able to switch back to my present environment and just accept things?
|
If done correctly, yes. In the terminal, type:
Code:
sudo apt-get install xubuntu-desktop
When the installation is finished, reboot and select XFCE from the menu on the login screen and set it as your default environment. If you're not happy with it, simply select Gnome from the same menu at next startup.
Cheers
Last edited by DragonSlayer48DX; 01-02-2010 at 10:32 PM.
|
|
|
01-03-2010, 11:12 AM
|
#9
|
LQ Newbie
Registered: Jan 2010
Posts: 7
Original Poster
Rep:
|
enough memory?
Quote:
Originally Posted by dragonslayer48dx
If you're not happy with it, simply select Gnome from the same menu at next startup.
|
I am happy with the Xubuntu/Xfce setup - very happy. It's seems indistinguishable from the Gnome desktop. Is is possible to uninstall the ubuntu/gnome setup I had originally? I want to free up more disk space.
Thanks again.....
|
|
|
All times are GMT -5. The time now is 02:12 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|