Differences between revisions 1 and 2
Revision 1 as of 2011-02-24 10:45:24
Size: 2172
Comment:
Revision 2 as of 2011-02-24 10:48:54
Size: 2192
Comment:
Deletions are marked like this. Additions are marked like this.
Line 33: Line 33:
 1. Boot up the TFTP server of master{{{# /etc/init.d/in.tftpd start  1. Boot up the TFTP server of master {{{
# /etc/init.d/in.tftpd start
Line 36: Line 37:
 1. Add TFTP server as default run level{{{# rc-update add in.tftpd default  1. Add TFTP server as default run level {{{
# rc-update add in.tftpd default
Line 40: Line 42:
=== FAQ === === Trouble shooting ===
Line 56: Line 58:
==== X windows ssh越しにx windowsが開かない ====
.ssh/known_hostsからつなぎたい先を消す。
ssh -Y hostnameを試す
==== X windows cannot open through ssh ====
Delete registered hosts from .ssh/known_hosts
Line 60: Line 61:
or try

{{{
ssh -Y hostname
}}}
Line 62: Line 68:
{{{
Line 63: Line 70:
}}}

Minimum Setup for Gentoo Real Time system

This setup can be extended to following systems;

  • Standalone system
  • Boot server for PXE network boot for HDD less front-end PCs
  • Real-time network computers like NDS, DAQ servers

setup front-end 12/15/2010 at 40m

Make a full copy of Alex HDD

  1. Obtain Alex HDD
  2. Do not forget to make a copy of the original HDD. Obtain Knoppix and type

    dd_rescue /dev/sda /dev/sdb

Boot

  1. Prepare following equipment;
    • PC for frontend (which has at least one PCIe slot, for example SUPER MICRO)
    • At least one GS ADC card
    • IO chassis (or put ADC into PC's PCIe slot directry)
    • Timing signal
      • Timing signal can be replaced by a function generator with 65536Hz, 5Vpp and 2.5V offset.
      • This timing signal has to be injected into the ADC card somehow.
    • Network router for private network.
  2. Connect all, and boot from Alex HD
  3. Login as root with CDS password, and set a password for controls.
  4. change controls UID to 1001, and controls GID to 1001 because all of the CDS files owned by controls account with UID=1001 and GID=1001. see https://awiki.ligo-wa.caltech.edu/aLIGO/CdsUbuntuDesktopBuild

  5. Delete existing IP on /etc/hosts, and add new IP and host name like gwave-118 in private network

If you need to PXE boot other HDD less PSs through network

  1. modify /etc/dhcp/dhcpd.conf to delete existing front-end and add new front-end PCs
  2. Boot up the TFTP server of master

    # /etc/init.d/in.tftpd start
  3. Add TFTP server as default run level

    # rc-update add in.tftpd default

Trouble shooting

tftp can not be accessible from HDD less PC

cd /etc
grep -r diskless *
more /etc/conf.d/in.tftpd 

Start TFTP server

# /etc/init.d/in.tftpd start

If you need to start TFTP server automatically, add TFTP server as default run level

# rc-update add in.tftpd default

X windows cannot open through ssh

Delete registered hosts from .ssh/known_hosts

or try

ssh -Y hostname

emerge does not work

# emerge --sync

KAGRA/Subgroups/DGS/RTPC/GentooRTMin (last edited 2012-06-06 17:55:44 by OsamuMiyakawa)