LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Server
User Name
Password
Linux - Server This forum is for the discussion of Linux Software used in a server related context.

Notices


Reply
  Search this Thread
Old 01-04-2008, 03:41 PM   #1
captainritalin
LQ Newbie
 
Registered: Jan 2008
Posts: 7

Rep: Reputation: 0
please help im new to servers and linux


Ok here is what im looking for. I am looking to create SECURE server that will allow me to

access it from anywhere
have multiple user accounts that are entered into with passwords with multiple levels of access to the server (some more privaledged than others)
be able to support mac and windows (one of my workstations will be a mac the other windows)
be able to put my games and music on it from any workstation and access them from others (id like to keep my games on the server and not have to download them onto my workstations because of the room that they take up, i realize thats not realistic for a mac program on a windows computer)
be able to control my workstations remotely from the server
be able to print from anywhere through the server
be able to put the server on sleep or standby and be able to boot it back up remotely a(itd also be great if i could do this to my workstations and printer as well)

i think thats about it i realize i may not be able to do all of these but what is possible please tell me, i have a copy of linux server and i have my own domain name so none of that is an issue, i just dont know how to do what i need. id really appreciate help and i know this will be complicated, but any and all help would be greatly appreciated.
thanks
 
Old 01-04-2008, 03:59 PM   #2
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
access it from anywhere Sure, it's called ssh.

have multiple user accounts that are entered into with passwords with multiple levels of access to the server (some more privaledged than others) called sudo

be able to support mac and windows (one of my workstations will be a mac the other windows) what do you mean support? as in fileshares? any mac or windows machine can access a linux box in many different ways.

be able to put my games and music on it from any workstation and access them from others (id like to keep my games on the server and not have to download them onto my workstations because of the room that they take up, i realize thats not realistic for a mac program on a windows computer) sure, linux can do this probably acting like a fileserver for the files to reside on but then again, depending on the game, i wouldn't want to run them across a network, better performance locally on your machine.

be able to control my workstations remotely from the server you can easily setup a firewall to forward ports and whatever you like to your final destination for access to other machines.

be able to print from anywhere through the server you want to setup a print server?

be able to put the server on sleep or standby and be able to boot it back up remotely a(itd also be great if i could do this to my workstations and printer as well) servers don't sleep man, it wouldn't be called a server if they did.

Last edited by trickykid; 01-04-2008 at 04:07 PM.
 
Old 01-04-2008, 04:02 PM   #3
indienick
Senior Member
 
Registered: Dec 2005
Location: London, ON, Canada
Distribution: Arch, Ubuntu, Slackware, OpenBSD, FreeBSD
Posts: 1,853

Rep: Reputation: 65
Quote:
access it from anywhere
From a local network, or the Internet? If it's the latter, you would most likely want to set up a static IP from your service provider.
Quote:
have multiple user accounts that are entered into with passwords with multiple levels of access to the server (some more privaledged than others)
This is a basic administration task - how the user logs in is what you would want to be concerned with here. More than likely, you'll want to set up an SSH server.
Quote:
be able to support mac and windows (one of my workstations will be a mac the other windows)
Linux servers have have AppleTalk daemons for years ("netatalk"). The joy of networking, is that as long as it's over a common protocol, supported by both client and server, everything's kosher. Samba would be advised here for file sharing.
Quote:
be able to put my games and music on it from any workstation and access them from others (id like to keep my games on the server and not have to download them onto my workstations because of the room that they take up, i realize thats not realistic for a mac program on a windows computer)
I'm not sure this would be possible - unless you want to set up remote X logins (which can be a pain in the ass), which would render the Windows box unusable in this situation (unless you can get an X server for Windows).
Quote:
be able to control my workstations remotely from the server
You might be able to control the Mac - I don't know any details, though - but this would require you setting up the Mac to be able to host remote connections (via an HTTP server and some dangerous CGI scripts, or SSH).
Quote:
be able to print from anywhere through the server
Wonderfully easy - look into CUPS.
Quote:
be able to put the server on sleep or standby and be able to boot it back up remotely a(itd also be great if i could do this to my workstations and printer as well)
You may be able to - I know with old Sun SPARC stations you could (I own three), but they have power running to the 10/100-Base T cards all the time, which allowed remote power on/power off.
 
Old 01-04-2008, 04:05 PM   #4
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
Please post your thread in only one forum. Posting a single thread in the most relevant forum will make it easier for members to help you and will keep the discussion in one place.

http://www.linuxquestions.org/questi...d.php?t=611182
 
Old 01-04-2008, 04:09 PM   #5
captainritalin
LQ Newbie
 
Registered: Jan 2008
Posts: 7

Original Poster
Rep: Reputation: 0
ok how do i set up an ssh server? im completely new to all of this
 
Old 01-04-2008, 04:13 PM   #6
indienick
Senior Member
 
Registered: Dec 2005
Location: London, ON, Canada
Distribution: Arch, Ubuntu, Slackware, OpenBSD, FreeBSD
Posts: 1,853

Rep: Reputation: 65
Google, my friend. Google.

If you want more help, provide which distribution you're using. When trying to learn how to do something, look for information in this order:

1. Distributions docs - practically every distribution provides documentation (on its website) on how to do what.
2. If 1 fails, Google.
3. If 2 fails, ask here.
Supplementary: Also, check man-pages ("man command").
 
Old 01-04-2008, 04:28 PM   #7
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
Quote:
Originally Posted by captainritalin View Post
ok how do i set up an ssh server? im completely new to all of this
Just about every distro I know of that includes openssh will have this as an option already. All you have to do is start it if it's not already started.
 
Old 01-05-2008, 01:02 AM   #8
indienick
Senior Member
 
Registered: Dec 2005
Location: London, ON, Canada
Distribution: Arch, Ubuntu, Slackware, OpenBSD, FreeBSD
Posts: 1,853

Rep: Reputation: 65
Rtfm/stfw

Quote:
Originally Posted by captainritalin View Post
ok how do i set up an ssh server? im completely new to all of this
Please read this: http://www.catb.org/~esr/faqs/smart-questions.html
 
  


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
Linux Servers lifelong Linux - Software 3 09-15-2007 10:11 AM
LXer: QuickBooks is now available for Linux servers -- but not for Linux desktops LXer Syndicated Linux News 0 06-14-2007 02:01 PM
Access for Multiple Linux servers from any cilent node running REDHAT LINUX 9 bv_uma Linux - Server 2 08-18-2006 12:17 AM
Servers on Linux LinuxN000b Linux - Newbie 1 10-27-2003 03:58 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Server

All times are GMT -5. The time now is 12:57 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