FreeNAS 9のJail環境でWordpressを動作させる試みで最後にWordpressをインストールします
今日現在の最新版はwordpress-3.7.1-ja.tar.gzになります
WordPress 日本語ローカルサイトへようこそ
http://ja.wordpress.org/
wordpress-3.7.1-ja.tar.gz
http://ja.wordpress.org/wordpress-3.7.1-ja.tar.gz
- wordpress-3.7.1-ja.tar.gzをdownload
- 展開
1 2 3 4 5 6 7 8 9 10 11 12 13 |
; html-script: false ] root@vhost:/root # cd /usr/local/src root@vhost:/usr/local/src # wget http://ja.wordpress.org/wordpress-3.7.1-ja.tar.gz --2013-11-18 15:40:36-- http://ja.wordpress.org/wordpress-3.7.1-ja.tar.gz Resolving ja.wordpress.org (ja.wordpress.org)... 66.155.40.249, 66.155.40.250 Connecting to ja.wordpress.org (ja.wordpress.org)|66.155.40.249|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 5042472 (4.8M) [application/octet-stream] Saving to: 'wordpress-3.7.1-ja.tar.gz' 100%[======================================>] 5,042,472 202KB/s in 14s 2013-11-18 15:40:50 (348 KB/s) - 'wordpress-3.7.1-ja.tar.gz' saved [5042472/5042472] |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
; html-script: false ]root@vhost:/usr/local/src # tar xvfz wordpress-3.7.1-ja.tar.gz -C /usr/local/www wordpress/ wordpress/wp-comments-post.php wordpress/wp-signup.php wordpress/wp-admin/ wordpress/wp-admin/upgrade-functions.php (snip) wordpress/wp-content/languages/admin-ja.po wordpress/wp-content/index.php wordpress/xmlrpc.php wordpress/wp-links-opml.php root@vhost:/usr/local/src # ls -l /usr/local/www/ total 30 drwxr-xr-x 6 root wheel 6 Jun 26 03:47 apache22 drwxr-xr-x 2 root wheel 5 Nov 15 16:04 nginx-dist drwxr-xr-x 5 nobody nogroup 22 Oct 30 06:32 wordpress root@vhost:/usr/local/src # ls -l /usr/local/www/wordpress/ total 242 -rw-r--r-- 1 nobody nogroup 418 Sep 25 09:18 index.php -rw-r--r-- 1 nobody nogroup 19929 Jan 18 2013 license.txt -rw-r--r-- 1 nobody nogroup 3081 Oct 30 06:32 readme-ja.html -rw-r--r-- 1 nobody nogroup 10099 Oct 30 06:32 readme.html -rw-r--r-- 1 nobody nogroup 4892 Oct 4 23:12 wp-activate.php drwxr-xr-x 9 nobody nogroup 88 Oct 30 06:32 wp-admin -rw-r--r-- 1 nobody nogroup 271 Jan 9 2012 wp-blog-header.php -rw-r--r-- 1 nobody nogroup 4795 Sep 6 10:38 wp-comments-post.php -rw-r--r-- 1 nobody nogroup 4255 Oct 30 06:32 wp-config-sample.php drwxr-xr-x 5 nobody nogroup 6 Oct 30 06:32 wp-content -rw-r--r-- 1 nobody nogroup 2932 Sep 25 09:18 wp-cron.php drwxr-xr-x 11 nobody nogroup 121 Oct 30 06:32 wp-includes -rw-r--r-- 1 nobody nogroup 2380 Sep 25 09:18 wp-links-opml.php -rw-r--r-- 1 nobody nogroup 2359 Sep 12 15:57 wp-load.php -rw-r--r-- 1 nobody nogroup 31739 Oct 23 23:40 wp-login.php -rw-r--r-- 1 nobody nogroup 7772 Oct 23 02:22 wp-mail.php -rw-r--r-- 1 nobody nogroup 10585 Oct 8 04:34 wp-settings.php -rw-r--r-- 1 nobody nogroup 25673 Oct 23 02:22 wp-signup.php -rw-r--r-- 1 nobody nogroup 4026 Sep 25 09:18 wp-trackback.php -rw-r--r-- 1 nobody nogroup 3015 Oct 23 23:40 xmlrpc.php |
もし標準のtar(bsdtar)で展開する場合は下記を参考にして下さい
1 2 3 4 5 6 7 8 9 10 11 12 |
; html-script: false ] root@vhost:/usr/local/src # ls -l wordpress-3.7.1-ja.tar.gz -rw-r--r-- 1 root wheel 5042472 Oct 30 10:24 wordpress-3.7.1-ja.tar.gz root@vhost:/usr/local/src # gzip -d wordpress-3.7.1-ja.tar.gz root@vhost:/usr/local/src # ls -l total 16007 -rw-r--r-- 1 root wheel 16261120 Oct 30 10:24 wordpress-3.7.1-ja.tar root@vhost:/usr/local/src # tar -xf wordpress-3.7.1-ja.tar root@vhost:/usr/local/src # ls -l total 16007 drwxr-xr-x 5 nobody nogroup 22 Oct 30 06:32 wordpress -rw-r--r-- 1 root wheel 16261120 Oct 30 10:24 wordpress-3.7.1-ja.tar |