IT戦記

プログラミング、起業などについて書いているプログラマーのブログです😚

Ubuntu Server インストールめも

準備

ダウンロード

http://www.ubuntu.com/getubuntu/download

  • Ubuntu 8.04 LTS Server Edition
  • 64bit AMD and Intel computers (64 bit マシンなので)

で、ダウンロード

CD を焼く

ディスクユーティリティとかで

インストール

  • CD を入れてブート
  • Language
    • 「日本語」を選択
  • Ubuntu ロゴが表示される
    • 「Install Ubuntu Server」
    • ちょっと待つ(数十秒)
  • Ubuntu インストーラメニュー
    • 「Alt+Shift」を選択
    • ちょっと待つ(数十秒)
  • ホスト名
  • ディスクのパーティショニング
    • 「ガイド - ディスク全体を使う」を選択
    • 「はい」を選択
    • けっこう待つ(数分)
  • ユーザーとパスワードのセットアップ
    • 名前を入力
    • ユーザ名を入力
    • パスワードを入力
    • もう一度パスワードを入力
  • HTTP プロキシの設定
    • なし
  • Software selection
    • とりあえず「LAMP server」「OpenSSH server」を選択
    • mysql-server-5.0 を設定しています。
      • パスワードを入力
    • ちょっと待つ(数分)
  • インストールの完了

はやっ

セットアップ

  • ssh でログインする
    • ssh ユーザー名@ホスト名
    • Are you sure you want to continue connecting?
      • yes
    • パスワードを入力する
  • apt-get する準備
$ sudo apt-get update
  • .vimrc を書く
syntax on

set expandtab
set tabstop=4
set shiftwidth=4
set softtabstop=0
set number
set smartindent
set incsearch

怒られた

Error detected while processing /home/amachang/.vimrc:
line    2:
E319: Sorry, the command is not available in this version: syntax on
Press ENTER or type command to continue

あたらしく vim をインストールする

$ sudo apt-get install vim

おk

まとめ

サーバーで何をするかを考えていなかった