UNIX/Linux system administration references

[ Home ] [ UNIX/Linux ] [ Design WorkBook ] [ VLSI computing cluster references (private) ]


Know how things work…

Contents

Keywords:

Introduction

NOT only the bare minimum!…

Reference books

User accounts and groups

# cd /export/eltXXX/disk0/
# mkdir users
# mkdir /users
# useradd [options] <username>
....
# groupadd [options] <group name>

Configuring disk quotas

https://access.redhat.com/site/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Storage_Administration_Guide/ch-disk-quotas.html

SSH server configuration

The SSH server’s configuration file is /etc/ssh/sshd_config.

By default OpenSSH permits users (including root!) to login with their username/password combination.

SSH server configuration file:

/etc/ssh/sshd_config

To make changes effective, always restart the SSH service:

# /etc/init.d/sshd restart


Prevent root login

Setting in /etc/ssh/sshd_config the PermitRootLogin option to no the SSH server does not allow root to login. You can still use su after you have succesfully logged in as a normal user.

PermitRootLogin no


Limit SSH access to a limited group of users

As an extra security measure, you can create a new group on the server machine and configure the SSH server to allow remote connections only for users member of that group.

AllowGroups <group name>

Setup the SSH server to use certificates for authentication

http://www.g-loaded.eu/2005/11/10/ssh-with-keys/

NFS setup

See the NFS page.

Setup CVS

http://commons.oreilly.com/wiki/index.php/Essential_CVS

A nice manaul can be found at

ftp.gnu.org/non-gnu/cvs/source/stable/1.11.22/cederqvist-1.11.22.pdf

$ which cvs
/usr/bin/cvs
$ cvs -v
Concurrent Versions System (CVS) 1.11.23 (client/server)
...
...
# yum install cvs


Create a repository

Create a CVS top directory e.g. .cvsroot

# mkdir /export/eltXXX/disk0/.cvsroot
# chown cadmgr:mgrs .cvsroot/

All the following instructions must be accomplished by by the user hosting the cvs repository, which should be the cadmgr. Login as cadmgr and then:

cd /export/eltXXX/disk0/.cvsroot
mkdir CVSROOT
setenv CVSROOT  /export/eltXXX/disk0/.cvsroot
cvs checkout CVSROOT/modules
cvs init

http://www.thegeekstuff.com/2011/10/create-cvs-repository/

Basic CVS commands

Setup an SVN repository

$ which svn
/usr/bin/svn

By default, subversion is not installed on Scientific Linux 6.x

# yum install subversion



Last update: Luca Pacher - Nov 21, 2013