That's the way the linux memory management works - nothing to worry about.hide wrote:1. As I noticed, Linux uses all the available memory after about ~2 days of uptime. I had machine with 512 DDR. I just installed debian there and nothing more.. I was busy then so I decided to leave it until weekend.. When I logged in, ant typed free -m, I noticed that it displayed about 496 mb used memory (even with no activity on the server!!). The same is on my server, however I'm sure that there's "in reality" in use about 50% of mem.
You are right.hide wrote:3. About priorities: As far as I know, (in Linux) nice -n 19 gives the lowest priority ant nice -n -20 gives the highest? Or maybe I'm wrong?
You cannot change the priority directly on linux, you just can influence it with the nice command. -20 = Most likely to receive time slices, the priority will be closer to zero (=highest); +19 = Least likely to receive time slices, the priority will be closer to 127 (=lowest).