lost and found ( for me ? )

Ubuntu 9.04 has been released

ついにGA版リリース!

早速インストールしたのでメモ。

Dell Inspiron 1526

すんなりインストール完了。
音が出ないなー。
Fedora 10 は音が出るんだけど。alsa の設定はまたの機会に。

バージョン確認方法

$ cat /etc/lsb-release 
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=9.04
DISTRIB_CODENAME=jaunty
DISTRIB_DESCRIPTION="Ubuntu 9.04"

ファイルシステムは ext4 にしてみた。

# mount | grep ext4 | grep -v grep
/dev/sda1 on / type ext4 (rw,relatime,errors=remount-ro)

root ユーザになる方法

root のパスワードは ユーザ xxxx のパスワード

$ sudo su -
[sudo] password for xxxx: 
root@alaska:~# 

rootユーザのパスワードを設定

root@alaska:~# passwd 
新しいUNIXパスワードを入力してください: 
新しいUNIX パスワードを再入力してください: 
passwd: パスワードは正しく更新されました
root@alaska:~# 

rootユーザからログアウト

root@alaska:~# exit
logout

su でログイン

hattori@alaska:~$ su -
パスワード: 
root@alaska:~# 

root ユーザで作業ができる。
Red Hat系で、rootでログインし操作しているので。。

sshd のインストール

Synaptic パッケージマネージャから open-sshserver をインストール




CLIからインストールする場合は、下記コマンドで。

# sudo apt-get install openssh-server openssh-client


# ps aux | grep sshd | grep -v grep
root      5737  0.0  0.0   5436  1104 ?        Ss   00:22   0:00 /usr/sbin/sshd

# lsof -i:22
COMMAND  PID USER   FD   TYPE DEVICE SIZE NODE NAME
sshd    5737 root    3u  IPv4  23584       TCP *:ssh (LISTEN)
sshd    5737 root    4u  IPv6  23586       TCP *:ssh (LISTEN)

$ ssh 127.1 -l root
root@127.1's password: 

Server Edition おもしろそうな機能あるなー。
クラウドって言葉が出ると、なんか興味がそそられる。
あとで Server Edition もインストールしてみよう。


Cloud

Interface compatibility with EC2 reduces the cost of learning a new interface when moving from a private to a public cloud. It enables users to adopt popular management tools for private cloud computing and to develop skills using the same techniques that they would deploy on Amazon's popular public cloud.
An extensive range of popular development services including an elastic block storage (EBS) equivalent and an S3 compatible storage manager eases integration.
Support for elastic IP assignment enables users to assign static public IPs to any virtual instance.
SOAP with WS-security ensures secure internal communication.
Support for instance control operations enables users to reboot virtual machines. This helps users troubleshoot more effectively.
KVM hypervisor provides users with best-of-breed virtualization technology

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.