http://www.astromuseum.jp/star/livestar/index.html
2012年9月30日日曜日
2012年9月29日土曜日
2012年9月27日木曜日
2012年9月25日火曜日
phpPgAdmin (install)
for ASTRO-H archive
http://phppgadmin.sourceforge.net
http://forum.tsukaeru.net/viewtopic.php?t=4376&sid=5abf3a09cfb23ea6ade77a9917f25b4d
CenOS 5.8
yum install phpPgAdmin
http://phppgadmin.sourceforge.net
http://forum.tsukaeru.net/viewtopic.php?t=4376&sid=5abf3a09cfb23ea6ade77a9917f25b4d
CenOS 5.8
yum install phpPgAdmin
ラベル:
archive,
ASTRO-H,
astronomy,
PHP,
postgreSQL
2012年9月24日月曜日
2012年9月22日土曜日
2012年9月21日金曜日
X線で探る銀河団ガスの運動 @ 天文学会, 大分
2012-06-18 講演申し込み
X線で探る銀河団ガスの運動
2012-09-21 My Talk
報告PDF
http://www.isas.jaxa.jp/home/ttamura/TamuraPresen/tamura201209tenmonOitaPublic.pdf
ラベル:
a2256,
astronomy,
cluster,
dark-matter,
fluid,
meeting,
plasma,
popular,
suzaku,
suzaku-cluster,
tamura_talk,
travel
2012年9月20日木曜日
All alone in the night
http://www.youtube.com/user/Bitmeizer
ラベル:
aogaku-ASTRO,
earth,
nasa,
youTube
2012年9月17日月曜日
宇宙学校・たけお 2012-09-17
http://www.isas.jaxa.jp/j/topics/event/2012/0917_takeo.shtml
X線で探る宇宙の大規模構造
―「すざく」から「ASTRO-H」へ―
田村 隆幸 助教
(トーク資料)
http://www.isas.jaxa.jp/home/ttamura/TamuraPresen/tamura2012takeoPublic.pdf
X線で探る宇宙の大規模構造
―「すざく」から「ASTRO-H」へ―
田村 隆幸 助教
(トーク資料)
http://www.isas.jaxa.jp/home/ttamura/TamuraPresen/tamura2012takeoPublic.pdf
ラベル:
outreach,
tamura_talk
2012年9月14日金曜日
2012年9月13日木曜日
2012年9月12日水曜日
2012年9月11日火曜日
(ISAS seminar) Speaker: Daniel Asmus (Max-Planck-Institut für Radioastronomie, MPIfR, Bonn, Germany) Title: The mid-infrared properties of local active galactic nuclei Abstract: The local active galactic nuclei (AGN) population enables us to study in detail the structures and radiation processes in the direct environment of the supermassive black holes in galaxy centers and to develop an understanding of the general AGN phenomenon. For this purpose, the first unbiased sample of 104 local AGN has now become available thanks to Swift/BAT observations in the hard X-ray regime. We performed high-angular resolution mid-infrared (MIR) imaging observations of most of these AGN with VLT/VISIR and Gemini/Michelle in order to study the dusty tori in these objects -- a key component in AGN models. At the same time, we obtained similar data of a complementary sample of AGN in the low-luminosity regime. I present the results of both programmes and show that unresolved MIR emission is present in the AGN of both samples, which is consistent with thermal emission from dust in the direct vicinity of the AGN. Furthermore, the MIR emission is strongly correlated with the absorption-corrected 2-10 keV X-ray emission over the whole range of luminosities (10^40 to 10^45 erg/s). These results agree with the standard unification model being valid for all types of
Speaker: Daniel Asmus (Max-Planck-Institut für Radioastronomie, MPIfR, Bonn, Germany) Title: The mid-infrared properties of local active galactic nuclei
http://adsabs.harvard.edu/abs/2011A%26A...536A..36A
2012年9月9日日曜日
2012年9月7日金曜日
install PostgreSQL 9.1 on CentOS 5
2012-09-07
book: PostgreSQL 徹底入門 p.26
にしたがって,install
OS: CentOS5.8
(1) Yum の設定
see
http://yum.postgresql.org/howtoyum.php/
http://yum.postgresql.org/repopackages.php
# wget pgdg-centos91-9.1-4.noarch.rpm
# rpm -ivh pgdg-centos91-9.1-4.noarch.rpm
PostgreSQL-RPM-Installation-PGDG.pdf
"Installing PostgreSQL on Red Hat Enterprise Linux / Fedora Core"
Last Update: Mon Sep 03, 2007
# cd /etc/yum.repos.d
< exclude=postgresql*
28d26
< exclude=postgresql*
# yum -y install 'postgresql91*'
bash-3.2$ cat .bash_profile
[ -f /etc/profile ] && source /etc/profile
PGDATA=/var/lib/pgsql/9.1/data
export PGDATA
PATH=/usr/pgsql-9.1/bin/:$PATH
MANPATH=/usr/pgsql-9.1/share/man/:$MANPATH
----------------------------
ls /usr/share/doc/postgresql91-docs-9.1.5/
html Makefile postgresql-9.1-A4.pdf sgml tutorial
----------------------------
* DBクラスタの作成
bash-3.2$ initdb -E UTF8 --no-locale
----------------------------
* DB serverの起動
bash-3.2$ pg_ctl -l logfile start
server starting
----------------------------
* DBの操作のテスト
bash-3.2$ createdb mydb
bash-3.2$ psql -l
(see 201209-install.txt )
ラベル:
archive,
centOS,
popular,
postgreSQL
2012年9月6日木曜日
install postgresql-9.1 on Mac OS X 10.6
2012-09-06
install postgreSQL 9.1 on Mac OS X
(1) create UNIX user postgres
as a normal account
installする前に,'postgres'を作っておかないとうまくいかない。
(2) fink install postgresql91
(3) chmod 700 /sw/var/postgresql-9.1/data
これをやる前には,以下のerrorが出た。
bash-3.2$ FATAL: data directory "/sw/var/postgresql-9.1/data" has group or world access
DETAIL: Permissions should be u=rwx (0700).
(4) start DB
pg_ctl start -D /sw/var/postgresql-9.1/data
http://www.postgresql.jp/document/9.1/html/index.html
install postgreSQL 9.1 on Mac OS X
(1) create UNIX user postgres
as a normal account
installする前に,'postgres'を作っておかないとうまくいかない。
(2) fink install postgresql91
(3) chmod 700 /sw/var/postgresql-9.1/data
これをやる前には,以下のerrorが出た。
bash-3.2$ FATAL: data directory "/sw/var/postgresql-9.1/data" has group or world access
DETAIL: Permissions should be u=rwx (0700).
(4) start DB
pg_ctl start -D /sw/var/postgresql-9.1/data
http://www.postgresql.jp/document/9.1/html/index.html
ラベル:
archive,
mac,
popular,
postgreSQL
2012年9月5日水曜日
登録:
投稿 (Atom)