System Administration

Setting up NFS on an Nokia 810

Setting up NFS

Contents
[hide]


Samba - adding Win2K/XP machines and users to a domain

1. Win2k machine accounts:
To allow domain login from machines running Windows NT or Windows 2000, you need to create both a Unix account, and a Samba account for every machine.
The machine account are specially named accounts witha  '$' character at the end -  i.e. machine$.
To add machine account, use your system add user script, most likely adduser. If your system does not support user names with a '$' character, you may edit your password database to add it manualy. You can use vipw.


HOW TO: Apache self signed SSL certificate

To create a self-signed SSL certificate, which will last 4 years:

openssl genrsa -out server.key 1024
openssl req -new -key server.key -out server.csr
openssl x509 -req -days 1460 -in server.csr -signkey server.key -out server.crt


Syndicate content