Server is a computer program running to serve the requests of other programs or a physical computer dedicated to running one or more such services.
14
votes
7answers
770 views
Good Introductory resources for linux
Are there any good tutorials or resources I can read so that I am not confused by basic things like 'how to search all files in a directory and below for a given string', or 'how to find out how much ...
12
votes
6answers
6k views
Lightweight outgoing SMTP server
What do you use as a lightweight SMTP for outgoing e-mails only?
I am running an app that sends e-mails via SMTP when events occur once in a while, and I dont need a fully featured e-mail server.
...
11
votes
6answers
10k views
Create services in Linux (Start up in linux)
I need one process run before log in to system. how to run it like services?(how do I make services in Linux?)
in Ubuntu and Fedora ?
the service is customized tomcat
4
votes
3answers
808 views
Permissions issues for shared directory on a server
The setup is we have a VPS running Debian Squeeze, and I've set up a shared directory for us to share files. So far I've followed this guide:
...
2
votes
1answer
173 views
Managing disk space on servers
Are there any open source tools to view (and possibly restrict) disk usage per user? I need to track disk usage on a server by user.
20
votes
3answers
12k views
Does LVM impact performance?
I have to migrate a few servers to Linux, and one important aspect that I need to evaluate is that my new host system must have elastic storage capacity. Naturally, doing some basic research, I came ...
4
votes
2answers
3k views
Ubuntu Server Continuously “goes to sleep”
I am running a web server at home using Ubuntu 11.4 (maybe? I can't 100% recall) on an older AMD 2400+ desktop with 1 or 2 GB of RAM. Sorry I can't recall the details 100%.
Anyway, I have a KVM ...
3
votes
2answers
354 views
How do I choose between Unix / Linux and Windows in a Server environment?
I need a server, and I'm used to windows at home and in the office, but it seems that Unix / Linux is an option, but I don't really know what it is. I don't know which one to get, how do I choose? ...
2
votes
6answers
532 views
Linux server monitoring software
The dedicated server I'm looking after started to crash occasionally, I suspect because of overload, so I need some performance/resource based monitoring software, preferably with web interface, ...
0
votes
2answers
1k views
What could cause network latency on a fresh Ubuntu Server 10.10 install?
I have recently purchased a machine to run an online game server. I put the machine together and have installed a fresh copy of Ubuntu Server 10.10. I have noticed that the game server produces a ...
6
votes
2answers
3k views
How can I set up SSH on Linux to log in password-less?
My Raspberry Pi is running the default Debian image and has SSH enabled. I log into my Pi as follows:
ssh pi@<IP-address-of-my-Pi>
I have to enter my password every time. Can I somehow make ...
2
votes
2answers
269 views
Working DNS-DHCP combo for LAN
Can anyone recommend a working DNS-DHCP combo for a small mixed-platform LAN? Preferably one where hosts can be assigned IP addresses and/or names with a web-GUI. The typical DHCP package on Linux ...
1
vote
2answers
192 views
How to display open file descriptors but not using lsof command
Hi I have read Here that lsof is not an accurate way of getting the number of File Descriptors that are currently open. He recommended to use this command instead
cat /proc/sys/fs/file-nr
While ...