3179
Comment:
|
3701
|
Deletions are marked like this. | Additions are marked like this. |
Line 14: | Line 14: |
Windows VISTAが入っていたsda2[7GB/15GB]を残して、 sda3をrootと4GBくらいのswapにpartitionを分け、Ubuntuを入れた。(26Nov2009) | Windows VISTAが入っていたsda2[7GB/15GB]を残して、 sda3をrootと4GBくらいのswapにpartitionを分け、Ubuntuを入れた。(26Nov2009)<<BR>> |
Line 16: | Line 16: |
いろいろあって、desktop版をserver版に変更し、名前をPORTAとした。(28Dec2009) 1. primary 65.8MB fat16 2. primary 16.1GB ntfs 3. primary 480.0GB ext4 / 5. logic 3.9GB F swap *apt-get install desktop-ubuntu *reboot IP:10.4.7.142 IPの設定には[[http://www.ubuntugeek.com/how-to-set-a-static-ip-address-in-ubuntu-810-intrepid-ibex.html|このページ]]を参考にしました。他にもいろいろな方法がありそうです。 |
|
Line 22: | Line 35: |
MotifとX11のヘッダファイルとライブラリが使用可能で、CONFIG_SITEで正しく設定されていることを確認する。<<BR>> とあるので、 Synapticで *libmotif3 *motif-clients(menuも) *libmotif-dev<<BR>> を入れました。 それから、 *libxt-dev(依存関係のもの多数も、以下略) *x11proto-print-dev *libxmu-dev *libxp-dev<<BR>> *libc6-dev-i386<<BR>> *g++ *libreadline6-dev *libcurses-perl も入れました?。<<BR>> |
Synapticで *libxt-dev *libmotif-dev *x11proto-print-dev *libxmu-headers *libxp-dev *libxmu-dev *libc6-dev-i386 *g++ *lib32readline5-dev *lib32lstdc も入れました。<<BR>> lib32なんとかというのは、64bit serverのUbuntuに、32bit対応のライブラリを追加する必要があるからです。 本文とはあまり関係ありませんが、sshとemacsも入れました。 |
Line 41: | Line 53: |
~/app/linux64/epics/以下に置きました。参考サイトの/opt/epics/に対応 | /opt/epics/以下に置きました。 |
Line 53: | Line 65: |
$tar -zxvf medm3_1_4.tar.gz <<BR>> (medm should be in $EPICS/extensions/src directory) | $tar -zxvf medm3_1_4.tar.gz <<BR>> (medm は baseを解凍してできる/opt/epics/extensions/src 以下におきます。) |
Line 58: | Line 70: |
=== compile epics === $cd /opt/epics/base <<BR>> $make incompatible errorがいろいろ出ましたが、32bit対応ライブラリの追加及びリンクの貼り直し /usr/lib/のlibcurses.soとlibncurses.aを/usr/lib32/のものに、<<BR>> /usr/lib/のlibstdc++.so.6を/usr/lib32/のものに<<BR>> することによって解決しました。<<BR>> /usr/lib/libstdc++.so.6のリンクはmake後もとに戻さないとubuntuの動作がおかしくなるようです。 === configure the extensions === |
|
Line 61: | Line 88: |
=== compile epics === | |
Line 64: | Line 89: |
$cd $EPICS/base <<BR>> $make === configure the extensions === add the following line in $EPICS/extensions/configure/RELEASE <<BR>> set TOP=~/app/linux64/epics/base caution! different from reference site <<BR>> set EPICS_BASE= modify Makefile at $EPICS/extensions/src/medm3_1_4 ns <<BR>> $EPICS/extensions/src <<BR>> TOP= modify $EPICS/base/configure/CONFIG modify printUtils/ TOP= |
|
Line 84: | Line 91: |
If you find */CONFIG.Unsupported.Common No such file or directory, when you make something, you should set EPICS_HOST_ARCH=linux-x86<<BR>> |
*/CONFIG.Unsupported.Common No such file or directory, というようなエラーが出たら、<<BR>> $export EPICS_HOST_ARCH=linux-x86<<BR>> を確認してください。 |
Linux setup Memo
Contents
目的
Digital Controlの入り口用?パソコンを立ち上げる。2010年1月くらいまでに。
パソコン:Dell desktopOS: Ubuntu9.10(64bit)
参考
初期設定
Windows VISTAが入っていたsda2[7GB/15GB]を残して、 sda3をrootと4GBくらいのswapにpartitionを分け、Ubuntuを入れた。(26Nov2009)
いろいろあって、desktop版をserver版に変更し、名前をPORTAとした。(28Dec2009)- primary 65.8MB fat16
- primary 16.1GB ntfs
- primary 480.0GB ext4 /
- logic 3.9GB F swap
- apt-get install desktop-ubuntu
- reboot
IP:10.4.7.142
IPの設定にはこのページを参考にしました。他にもいろいろな方法がありそうです。
MEDMのインストール
インストールの準備
- Synapticで
- libxt-dev
- libmotif-dev
- x11proto-print-dev
- libxmu-headers
- libxp-dev
- libxmu-dev
- libc6-dev-i386
- g++
- lib32readline5-dev
- lib32lstdc
も入れました。
lib32なんとかというのは、64bit serverのUbuntuに、32bit対応のライブラリを追加する必要があるからです。 本文とはあまり関係ありませんが、sshとemacsも入れました。
ファイルのダウンロード
- /opt/epics/以下に置きました。
baseR3.14.11.tar.gz
extensionsTop_20070703.tar.gz
extensionsConfigure_20040406.tar.gz
medm3_1_4.tar.gz
解凍
$tar -zxvf baseR3.14.10.tar.gz
$ln -s base3.14.11/ base
$tar -zxvf extensionsTop_20070703.tar.gz
$tar -zxvf extensionsConfig_20040406.tar.gz
$tar -zxvf medm3_1_4.tar.gz
(medm は baseを解凍してできる/opt/epics/extensions/src 以下におきます。)
環境変数の設定
$export EPICS_HOST_ARCH=linux-x86
compile epics
$cd /opt/epics/base
$make incompatible errorがいろいろ出ましたが、32bit対応ライブラリの追加及びリンクの貼り直し/usr/lib/のlibcurses.soとlibncurses.aを/usr/lib32/のものに、
/usr/lib/のlibstdc++.so.6を/usr/lib32/のものに
することによって解決しました。
/usr/lib/libstdc++.so.6のリンクはmake後もとに戻さないとubuntuの動作がおかしくなるようです。
configure the extensions
$export EPICS='~/app/linux64/epics/'
$export EPICS_CA_ADDR_LIST="IP address"
$export EPICS_CA_AUTO_ADDR_LIST=NO
Tips
- /CONFIG.Unsupported.Common No such file or directory,
というようなエラーが出たら、
$export EPICS_HOST_ARCH=linux-x86
を確認してください。
dataviewerのインストール
graceのインストール
- 関連ファイル:
- libfftw3-3(libfftw3-doc, libfftw3-decもついでに)
- libnetcdf4
lib1-5 xmhtml1
とともにSynapticで入れました。
libxpm4
- は入っているようなのでパス。