0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Linux実習

Last updated at Posted at 2020-09-30

2020-09-30 env_centos7_virtualbox
ポート番号ウェルノウンのみを表示
Linuxでは、ポート番号とサービスの対応一覧が、/etc/services に記されている。
主要なサービスで使用されているポート番号(0~1023,ウェルノウンポート)だけを抽出した。

$ wc -l /etc/services  #まず行数チェック
11176 /etc/services
$ head -1700 /etc/services | nl -b a  #nlのオプションなしは空行を含まないのでずれる
#ポート番号1023はなく1700行あたりが1022だった
1695  exp2 1022/dccp  # RFC3692-style Experiment 2 (*) [RFC4727] 
#1695行目の1022/dccpが予約port番号の最後
$ head -1695 /etc/services
exp2  1022/dccp  # RFC3692-style Experiment 2 (*)  [RFC4727]

2020-10-03
CUIからGUIに移行する
centos7のminimalであったので、GNOME Desktop をインストールする。

# yum groupinstall "GNOME Desktop"
完了したら起動時にGUIで立ち上がるようにする
# systemctl set-default graphical.target
再起動する
# reboot
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?