close
Warning:
Can't synchronize with repository "(default)" (/usr/svn/silverfile does not appear to be a Subversion repository.). Look in the Trac log for more information.
- Timestamp:
-
Jun 2, 2009, 2:41:55 AM (13 years ago)
- Author:
-
hank
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v9
|
v10
|
|
1 | 1 | = !SilverFile General Server Setup = |
2 | 2 | |
3 | | == Installation of Ubuntu 8.04 LTS == |
4 | | |
5 | | Create CDROM and boot off USB-CDROM. |
| 3 | == Installation of Ubuntu 9.04 Server 32bit == |
| 4 | We are selecting this version for the following reasons: |
| 5 | * GRUB installation doesn't work in older releases. |
| 6 | * 64 bit version does not seem to support the VIA padlock engine |
6 | 7 | |
7 | 8 | == Partitioning (During Install) == |
8 | | We feel that 20GB and 4GB of swap is more than sufficient, leaving ample room for client files. |
| 9 | We feel that 20GB and 6GB of swap is more than sufficient, leaving ample room for client files. |
9 | 10 | |
10 | 11 | * / 20GB Primary Ext3 Bootable = Yes (leave all other defaults) |
… |
… |
|
12 | 13 | * /FILES/ Primary Ext3 Bootable = No (leave all other defaults) |
13 | 14 | |
14 | | == Bootloader == |
15 | | For some reason GRUB does not work with this hardware configuration. It could be the new RAID card, |
16 | | but we don't know. |
17 | | |
18 | | We are using '''LILO''' instead. |
19 | | |
20 | 15 | == Install SSH Deamon == |
21 | 16 | {{{ |
22 | | sudo apt-get install ssh |
| 17 | sudo apt-get install ssh openssh |
23 | 18 | }}} |
24 | 19 | |
… |
… |
|
31 | 26 | }}} |
32 | 27 | |
33 | | == Add other users to sudo == |
34 | | Sudo allows all users in admin group root privilege. This is something |
35 | | that Ubuntu sets up as an alternative to [http://en.wikipedia.org/wiki/Visudo visudo]. |
36 | | {{{ |
37 | | usermod -a -G admin ryan |
38 | | }}} |
39 | 28 | |
40 | | == SSH Keys == |
41 | | To generate a key: |
42 | | {{{ |
43 | | ssh-keygen (or) |
44 | | ssh-keygen -t dsa (for dsa) |
45 | | (do not enter a passphrase) |
46 | | }}} |
47 | | This generates, '''id_dsa''' and '''id_dsa.pub'''. |
48 | | Client(id_dsa) ---ssh--> Host(id_dsa.pub in .ssh/authorized_keys) |
49 | 29 | |
50 | 30 | |