반응형

[리눅스 쉘 스크립트]CentOS : OS 확인 

 

1. 용도 및 목적

OS 버전에 맞게 동작 시키기 위함, 해당 OS 버전의 case 문 안에 추가하여 사용

 

2. 환경 : CentOS 6.9 64bit, /bin/bash

 

3. 쉘 스크립트

#vi xxxxx.sh

----------------------------------------------

#!/bin/bash

 

######################################

#

#                   Search OS 

#                                                       by Ru

######################################

 

RHELVer=`cat /etc/redhat-release |awk '{print $7}' |cut -b1`

DATE=`date +%H:%M`

 

case $RHELVer in

5)

echo "RHEL 5.X"

echo $DATE

;;

6)

echo "RHEL 6.X"

echo $DATE

;;

7)

echo "RHEL 7.X"

echo $DATE

;;

*)

echo "Untested OS"

esac

----------------------------------------------

 

 

반응형
반응형

[리눅스 쉘 스크립트]CentOS : ftp 자동 파일 업/다운로드

 

1. 용도 및 목적

특정 일시 특정 장소에 파일 업 다운로드를 위함(crontab 등록 또는 다른 관리 데몬으로 실행)

 

2. 환경 : CentOS 6.9 64bit, /bin/bash

 

3. 쉘 스크립트

#vi xxxxx.sh

----------------------------------------------

#!/bin/bash

 

######################################

#

#                   FTP Auto UP/DOWNload 

#                                                       by Ru

######################################

 

ftp -n 192.168.35.11 << EOF > /root/ftplog.txt

  user root password

#passive 모드 ON/OFF(OFF는 Active mode)

  passive

#prompt off 해야 파일 업다운로드마다 확인을 안함(default on)

  prompt

#ascii mode or binary mode 원하는 모드 주석제거

#  accii

#  binary

#client 작업 위치

  lcd /root

#server 작업 위치

  cd /root

#그냥 뭐있나 확인 ls

  ls

#test 으로 시작하는 파일 전부 다운로드(단일 파일은 get)

  mget test*

#test 으로 시작하는 로컬 파일 전부 업로드(단일 파일은 put)

  mput test*

#test 으로 시작하는 서버 파일 전부 삭제(단일 파일은 delete)

  mdelete test*

  quit

EOF

----------------------------------------------

 

 

반응형
반응형
[Network Setting Guide] IPv4, IPv6
 
1. 용도 및 목적
네트워크 IP 세팅 관련(할당 방법)
 
2. IPv4
상위 대역은 전문적인 설계에 맡기고 C클래스 이하만 할당
 
IPv4 주소체계
총 32비트로 각 8비트씩 4자리며 각 자리는 . 로 구분
 
IPv4 사설 대역(RFC1918)
10.0.0.0
172.16.0.0
192.168.0.0
 
루프백 주소
127.0.0.1
 
EX)
네트워크 주소 넷마스크 사용가능 HOST 수 브로드캐스팅 주소
192.168.1.0
 
 
네트워크 주소
PREFIX
NETMASK
사용가능 IP
사용가능 HOST 수
브로드캐스팅 주소
네트워크 1개
192.168.1.0
24
255.255.255.0
1~254
254
192.168.1.255
네트워크 2개
192.168.1.0
25
255.255.255.128
1~126
126
192.168.1.127
192.168.1.128
25
255.255.255.128
129~254
126
192.168.1.255
네트워크 4개
192.168.1.0
26
255.255.255.192
1~62
62
192.168.1.63
192.168.1.64
26
255.255.255.192
65~126
62
192.168.1.127
192.168.1.128
26
255.255.255.192
129~190
62
192.168.1.191
192.168.1.192
26
255.255.255.192
193~254
62
192.168.1.255
네트워크 8개
192.168.1.0
27
255.255.255.224
1~30
30
192.168.1.31
192.168.1.32
27
255.255.255.224
33~62
30
192.168.1.63
192.168.1.64
27
255.255.255.224
65~94
30
192.168.1.95
192.168.1.96
27
255.255.255.224
97~126
30
192.168.1.127
192.168.1.128
27
255.255.255.224
129~158
30
192.168.1.159
192.168.1.160
27
255.255.255.224
161~190
30
192.168.1.191
192.168.1.192
27
255.255.255.224
193~222
30
192.168.1.223
192.168.1.224
27
255.255.255.224
225~254
30
192.168.1.255
네트워크 16개
192.168.1.0
28
255.255.255.240
1~14
14
192.168.1.15
192.168.1.16
28
255.255.255.240
17~30
14
192.168.1.31
192.168.1.32
28
255.255.255.240
33~46
14
192.168.1.47
192.168.1.48
28
255.255.255.240
49~62
14
192.168.1.63
192.168.1.64
28
255.255.255.240
65~78
14
192.168.1.79
192.168.1.80
28
255.255.255.240
81~94
14
192.168.1.95
192.168.1.96
28
255.255.255.240
97~110
14
192.168.1.111
192.168.1.112
28
255.255.255.240
113~126
14
192.168.1.127
192.168.1.128
28
255.255.255.240
129~142
14
192.168.1.143
192.168.1.144
28
255.255.255.240
145~158
14
192.168.1.159
192.168.1.160
28
255.255.255.240
161~174
14
192.168.1.175
192.168.1.176
28
255.255.255.240
177~190
14
192.168.1.191
192.168.1.192
28
255.255.255.240
193~206
14
192.168.1.207
192.168.1.208
28
255.255.255.240
209~222
14
192.168.1.223
192.168.1.224
28
255.255.255.240
225~238
14
192.168.1.239
192.168.1.240
28
255.255.255.240
241~254
14
192.168.1.255
네트워크 32개
192.168.1.0
29
255.255.255.248
1~6
6
192.168.1.7
네트워크 64개
192.168.1.0
30
255.255.255.252
1~2
2
192.168.1.3
라우팅 용
192.168.1.1
32
255.255.255.255
1
1
 
 
3. IPv6
IPv6 주소체계
총 128비트로 각 16비트씩 8자리며 각 자리는 : 로 구분
 
IPv6 사설 대역 및 문서(예시 작성용)(RFC3849)
2001:DB8::/32
fc00::/7
 
루프백 주소
::1
 
EX) fc00::/7
1111 1100 0000 0000 ::/7
8421 8421 8421 8421
f     c     0     0
 
EX) FC00::A::201/96
FC00:0000:0000:00000:0000:0000A:0000:0201/96
 
 

 

 

반응형
반응형

[Linux Guide] CentOS 6.9 Guide : 네트워크 초기화

1. 용도 및 목적

네트워크 인터페이스 초기화 또는 ifconfig 상의 에러초기화

2. 설치 환경

-O/S

 Windows 10 Pro , VirtualBox(CentOS6.9)

-H/W

 Intel(R) Core(TM) i5-6200U CPU @ 2.30GHz

 RAM 8GB

 SDD 256GB

3. 진행

-네트워크 스탑

#service network stop

-모듈 확인(사용중인 인터페이스의 driver 정보를 확인)

#ethtool -i bond0
#ethtool -i eth0
#ethtool -i eth1

-모듈 정상 출력 확인(bond0은 bonding, eth0/1 은 e1000을 사용)

#lsmod |grep bonding
#lsmod |grep e1000

-모듈 삭제(bond0은 bonding, eth0/1 은 e1000을 사용하며 다 삭제)

#modprobe -r bonding
#modprobe -r e1000

-모듈 출력 안되는거 확인(bond0은 bonding, eth0/1 은 e1000을 사용)

#lsmod |grep bonding
#lsmod |grep e1000

-모듈 인식

#modprobe e1000
#modprobe bonding

-네트워크 시작

#service network start

완료




반응형
반응형

[Linux Setting] CentOS 6.9 Setting Guide : 기본설정 : 자동실행 순서

1. 용도 및 목적

부팅시 자동실행 되는 스크립트 및 명령 순서를 확인하고 적재 적소에 넣고자 함

2. 설치 환경

-O/S

 Windows 10 Pro , VirtualBox(CentOS6.9)

-H/W

 Intel(R) Core(TM) i5-6200U CPU @ 2.30GHz

 RAM 8GB

 SDD 256GB

3. 순서 확인

-자동실행 순서 (테스트는 /etc/rc.local, rc3.d/Sxx, /etc/profile, .bash_profile, .bashrc 에 각 파일 로그 및 who, date 명령을 통해 순서대로 찍도록 했고 하기 결과를 나타냈다.)

rc3.d/Sxx -> rc.local -> 사용자 접근시 -> /etc/profile(전 사용자) -> .bashrc(개별사용자) -> .bash_profile(개별사용자) 

직접 테스트 한 결과

 [root@systemeng ~]# cat /root/teststart

testrc3dS98

Wed Sep 12 15:35:51 KST 2018

testrclocal

Wed Sep 12 15:35:51 KST 2018

testetcprofile(root 로그인 후 발생)

root     pts/0        2018-09-12 15:37 (192.168.35.1)

Wed Sep 12 15:37:32 KST 2018

testrootbashrc

root     pts/0        2018-09-12 15:37 (192.168.35.1)

Wed Sep 12 15:37:32 KST 2018

testrootbashprofile

root     pts/0        2018-09-12 15:37 (192.168.35.1)

Wed Sep 12 15:37:32 KST 2018






반응형
반응형

[Linux Setting] CentOS 6.9 Setting Guide : 패키지관리 : X Window 설치

1. 용도 및 목적

Linux 설치 및 다양한 테스트 환경을 만들기 위함, X window 설치, 오라클 같이 GUI 환경 설치가 필요한 부분에 사용할수도 있고, 웹이나 기타 관리에 있어서 필요한 부분이 있다.

2. 설치 환경

-O/S

 Windows 10 Pro , VirtualBox(CentOS6.9)

-H/W

 Intel(R) Core(TM) i5-6200U CPU @ 2.30GHz

 RAM 8GB

 SDD 256GB

3. 패키지 설치 진행(local 저장소 사용)

-X 윈도우 그룹패키지 설치(GUI를 KDE Decktop 사용시 Desktop 대신 넣으면 됩니다.)

# yum groupinstall "X Window System" "Desktop" "Fonts" "Korean Support [ko]" 

-초기 OS 설치시에는 하기 항목에서 선택하여 설치

-y 입력하여 진행

-설치 완료 후 설치 된 패키지 확인

-부팅 모드 변경(runlevel 3 에서 5로 변경 저장)

#vi /etc/inittab
id:5:initdefault:

-재기동

#reboot

-기동 후 바로 웰컴 문구 ->Forward

-License Information -> yes 선택 상태 -> Forward

-Create User (생성안함) -> Forward

-yes

-Date and Time -> Forward

-kdump -> Finish

-yes(재기동 됨)

-부팅 화면

-참고 : minimal로 설치 할때 직접 Network(bond0)를 생성해주었는데, Desktop 그룹이 설치되며, NetworManager(네트워크에 이상 현상이 나오니 제거를 한다. ) 가 설치 된다. (네트워크가 끊어지니, 로컬 화면에서 진행한다.)

아래와 같이 진행한다.(chkconfig 는 runlevel 에 대해 재기동여부 설정함)
chkconfig NetworkManager off
service NetworkManager stop
service network restart



반응형
반응형

[Linux Setting] CentOS 6.9 Setting Guide : 패키지 관리: man 설치

1. 용도 및 목적

Linux 설치 및 다양한 테스트 환경을 만들기 위함, minimal로 설치하고 우연찮게 man 을 보려고 했으나, man 도 설치가 안되어있다. 간단하게 명령어나 패키지 메뉴얼 파일이라고 보면 된다.

2. 설치 환경

-O/S

 Windows 10 Pro , VirtualBox(CentOS6.9)

-H/W

 Intel(R) Core(TM) i5-6200U CPU @ 2.30GHz

 RAM 8GB

 SDD 256GB

3. 진행

-확인

[root@systemeng ~]# man 명령어
-bash: man: command not found

-설치

[root@systemeng ~]# yum install man
Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
local                                                                    | 4.0 kB     00:00 ...
Resolving Dependencies
--> Running transaction check
---> Package man.x86_64 0:1.6f-39.el6 will be installed
--> Processing Dependency: lzma for package: man-1.6f-39.el6.x86_64
--> Running transaction check
---> Package xz-lzma-compat.x86_64 0:4.999.9-0.5.beta.20091007git.el6 will be installed
--> Processing Dependency: xz = 4.999.9-0.5.beta.20091007git.el6 for package: xz-lzma-compat-4.999.9-0.5.beta.20091007git.el6.x86_64
--> Running transaction check
---> Package xz.x86_64 0:4.999.9-0.5.beta.20091007git.el6 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

================================================================================================
 Package               Arch          Version                                 Repository    Size
================================================================================================
Installing:
 man                   x86_64        1.6f-39.el6                             local        265 k
Installing for dependencies:
 xz                    x86_64        4.999.9-0.5.beta.20091007git.el6        local        137 k
 xz-lzma-compat        x86_64        4.999.9-0.5.beta.20091007git.el6        local         16 k

Transaction Summary
================================================================================================
Install       3 Package(s)

Total download size: 418 k
Installed size: 887 k
Is this ok [y/N]: y
Downloading Packages:
------------------------------------------------------------------------------------------------
Total                                                           148 MB/s | 418 kB     00:00
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
  Installing : xz-4.999.9-0.5.beta.20091007git.el6.x86_64                                   1/3
  Installing : xz-lzma-compat-4.999.9-0.5.beta.20091007git.el6.x86_64                       2/3
  Installing : man-1.6f-39.el6.x86_64                                                       3/3
  Verifying  : xz-lzma-compat-4.999.9-0.5.beta.20091007git.el6.x86_64                       1/3
  Verifying  : man-1.6f-39.el6.x86_64                                                       2/3
  Verifying  : xz-4.999.9-0.5.beta.20091007git.el6.x86_64                                   3/3

Installed:
  man.x86_64 0:1.6f-39.el6

Dependency Installed:
  xz.x86_64 0:4.999.9-0.5.beta.20091007git.el6
  xz-lzma-compat.x86_64 0:4.999.9-0.5.beta.20091007git.el6

Complete!

-확인(which 는 실행 파일 경로를 알려준다.)

[root@systemeng ~]# which man
/usr/bin/man
[root@systemeng ~]# man 명령어
정상적으로 출력된다.



반응형
반응형

[Linux Setting] CentOS 6.9 Setting Guide : 패키지 관리: yum group 확인

1. 용도 및 목적

Linux 설치 및 다양한 테스트 환경을 만들기 위함, 설치 패키지에 관련되어 좀더 효율적인 방안을 찾기위해 초기 설치 때 설치와 비교 하도록 한다. OS image 마운트 및 yum local 설정이 되있는 상태이다.

2. 설치 환경

-O/S

 Windows 10 Pro , VirtualBox(CentOS6.9)

-H/W

 Intel(R) Core(TM) i5-6200U CPU @ 2.30GHz

 RAM 8GB

 SDD 256GB

3. 확인

-우리는 minimal 설치를 진행하였고, 몇개의 그룹패키지가 설치 되었는지 확인해본다. 설치된것이 거의 없다. 

[root@systemeng ~]# yum grouplist
Loaded plugins: fastestmirror
Setting up Group Process
Loading mirror speeds from cached hostfile
Installed Groups:  #설치된 패키지 (뭐 없음)
   E-mail server
   Security Tools
Available Groups: #설치 가능한 패키지 그룹
   Additional Development
   Backup Client
   Backup Server
   Base
   CIFS file server
   Client management tools
   Compatibility libraries
   Console internet tools
   Debugging Tools
   Desktop
   Desktop Debugging and Performance Tools
   Desktop Platform
   Desktop Platform Development
   Development tools
   Dial-up Networking Support
   Directory Client
   Directory Server
   Eclipse
   Emacs
   FCoE Storage Client
   FTP server
   Fonts
   General Purpose Desktop
   Graphical Administration Tools
   Graphics Creation Tools
   Guest Agents
   Hardware monitoring utilities
   High Availability
   High Availability Management
   Identity Management Server
   Infiniband Support
   Input Methods
   Internet Applications
   Internet Browser
   Java Platform
   KDE Desktop
   Large Systems Performance
   Legacy UNIX compatibility
   Legacy X Window System compatibility
   Load Balancer
   Mainframe Access
   Messaging Client Support
   MySQL Database client
   MySQL Database server
   NFS file server
   Network Infrastructure Server
   Network Storage Server
   Network file system client
   Networking Tools
   Office Suite and Productivity
   PHP Support
   Performance Tools
   Perl Support
   PostgreSQL Database client
   PostgreSQL Database server
   Print Server
   Printing client
   Remote Desktop Clients
   Resilient Storage
   Ruby Support
   SNMP Support
   Scalable Filesystems
   Scientific support
   Server Platform
   Server Platform Development
   Smart card support
   Storage Availability Tools
   System Management
   System administration tools
   TeX support
   Technical Writing
   TurboGears application framework
   Virtualization
   Virtualization Client
   Virtualization Platform
   Virtualization Tools
   Web Server
   Web Servlet Engine
   Web-Based Enterprise Management
   X Window System
   iSCSI Storage Client
Available Language Groups:
   Afrikaans Support [af]
   Albanian Support [sq]
   Amazigh Support [ber]
   Arabic Support [ar]
   Armenian Support [hy]
   Assamese Support [as]
   Azerbaijani Support [az]
   Basque Support [eu]
   Belarusian Support [be]
   Bengali Support [bn]
   Bhutanese Support [dz]
   Brazilian Portuguese Support [pt_BR]
   Breton Support [br]
   Bulgarian Support [bg]
   Catalan Support [ca]
   Chhattisgarhi Support [hne]
   Chichewa Support [ny]
   Chinese Support [zh]
   Coptic Support [cop]
   Croatian Support [hr]
   Czech Support [cs]
   Danish Support [da]
   Dutch Support [nl]
   English (UK) Support [en_GB]
   Esperanto Support [eo]
   Estonian Support [et]
   Ethiopic Support [am]
   Faroese Support [fo]
   Fijian Support [fj]
   Filipino Support [fil]
   Finnish Support [fi]
   French Support [fr]
   Frisian Support [fy]
   Friulian Support [fur]
   Gaelic Support [gd]
   Galician Support [gl]
   Georgian Support [ka]
   German Support [de]
   Greek Support [el]
   Gujarati Support [gu]
   Hebrew Support [he]
   Hiligaynon Support [hil]
   Hindi Support [hi]
   Hungarian Support [hu]
   Icelandic Support [is]
   Indonesian Support [id]
   Interlingua Support [ia]
   Inuktitut Support [iu]
   Irish Support [ga]
   Italian Support [it]
   Japanese Support [ja]
   Kannada Support [kn]
   Kashmiri Support [ks]
   Kashubian Support [csb]
   Kazakh Support [kk]
   Khmer Support [km]
   Kinyarwanda Support [rw]
   Konkani Support [kok]
   Korean Support [ko]
   Kurdish Support [ku]
   Lao Support [lo]
   Latin Support [la]
   Latvian Support [lv]
   Lithuanian Support [lt]
   Low Saxon Support [nds]
   Luxembourgish Support [lb]
   Macedonian Support [mk]
   Maithili Support [mai]
   Malagasy Support [mg]
   Malay Support [ms]
   Malayalam Support [ml]
   Maltese Support [mt]
   Manx Support [gv]
   Maori Support [mi]
   Marathi Support [mr]
   Mongolian Support [mn]
   Myanmar (Burmese) Support [my]
   Nepali Support [ne]
   Northern Sotho Support [nso]
   Norwegian Support [nb]
   Occitan Support [oc]
   Oriya Support [or]
   Persian Support [fa]
   Polish Support [pl]
   Portuguese Support [pt]
   Punjabi Support [pa]
   Romanian Support [ro]
   Russian Support [ru]
   Sanskrit Support [sa]
   Sardinian Support [sc]
   Serbian Support [sr]
   Sindhi Support [sd]
   Sinhala Support [si]
   Slovak Support [sk]
   Slovenian Support [sl]
   Somali Support [so]
   Southern Ndebele Support [nr]
   Southern Sotho Support [st]
   Spanish Support [es]
   Swahili Support [sw]
   Swati Support [ss]
   Swedish Support [sv]
   Tagalog Support [tl]
   Tajik Support [tg]
   Tamil Support [ta]
   Telugu Support [te]
   Tetum Support [tet]
   Thai Support [th]
   Tibetan Support [bo]
   Tsonga Support [ts]
   Tswana Support [tn]
   Turkish Support [tr]
   Turkmen Support [tk]
   Ukrainian Support [uk]
   Upper Sorbian Support [hsb]
   Urdu Support [ur]
   Uzbek Support [uz]
   Venda Support [ve]
   Vietnamese Support [vi]
   Walloon Support [wa]
   Welsh Support [cy]
   Xhosa Support [xh]
   Zulu Support [zu]
Done

-그룹에 포함된 패키지 확인

[root@systemeng ~]# yum groupinfo "X Window System"
Loaded plugins: fastestmirror
Setting up Group Process
Loading mirror speeds from cached hostfile

Group: X Window System
 Description: X Window System Support.
 Mandatory Packages:
   xorg-x11-drivers
   xorg-x11-server-Xorg
   xorg-x11-xauth
   xorg-x11-xinit
 Default Packages:
   firstboot
   glx-utils
   hal
   plymouth-system-theme
   spice-vdagent
   wacomexpresskeys
   wdaemon
   xorg-x11-server-utils
   xorg-x11-utils
   xvattr
 Optional Packages:
   xcb-util-image
   xcb-util-keysyms
   xcb-util-wm

-실제 OS 설치 할때의 패키지 모습과 위에 grouplist 와 group명을 한번씩 찾아 비교해보면 도움이 된다. 

(참고)minimal -> Customize now 로 확인했기 때문에 거의 모든 항목에 체크박스가 풀려있다. 

 

확인 완료



반응형
반응형

[Linux Setting] CentOS 6.9 Setting Guide : 패키지 관리: yum 설정

1. 용도 및 목적

Linux 설치 및 다양한 테스트 환경을 만들기 위함, 이부분은 꽤 중요하다.대부분 현장에서 패키지를 온라인 저장소에서 받질 못하기에 우리처럼 minimal로 설치 된 서버라면 OS 이미지 마운트 후에 필요한 패키지를 설치해야한다. 그런데!! 문제는 리눅스는 의존성 덩어리라 rpm 한개 한개 설치 하려고 하면 솔직히 거의 불가능에 가까워진다. 이때 사용하는 것이 yum이라고 간단하게 이해하면 된다. 

2. 설치 환경

-O/S

 Windows 10 Pro , VirtualBox(CentOS6.9)

-H/W

 Intel(R) Core(TM) i5-6200U CPU @ 2.30GHz

 RAM 8GB

 SDD 256GB

3. 진행

-CentOS6.9 mount 

# mount /dev/sr0 /media/dvdrom/

mount: block device /dev/sr0 is write-protected, mounting read-only

-mount 상태 확인

[root@systemeng ~]# df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/mapper/VolGroup-lv_root
                       35G  700M   33G   3% /
tmpfs                 939M     0  939M   0% /dev/shm
/dev/sda1             477M   40M  413M   9% /boot
/dev/sr0              3.7G  3.7G     0 100% /media/dvdrom

-yum repository 설정 - 기본 저장소 백업

# cd /etc/yum.repos.d/
# ls
CentOS-Base.repo       CentOS-fasttrack.repo  CentOS-Vault.repo
CentOS-Debuginfo.repo  CentOS-Media.repo
# mkdir repobackup
# mv * repobackup/
# ls
repobackup

-현재 패키지가 0임을 확인

# yum repolist
Loaded plugins: fastestmirror
repolist: 0

-local repository 생성

# vi /etc/yum.repos.d/local.repo
[local]
name=local
baseurl=file:///media/dvdrom
gpgcheck=0
enabled=1

-현재 패키지 다시 확인

# yum repolist
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
local                                                              | 4.0 kB     00:00 ...
local/primary_db                                                   | 4.7 MB     00:00 ...
repo id                                    repo name                                status
local                                      local                                    6,706
repolist: 6,706

완료



반응형
반응형

[Linux Setting] CentOS 6.9 Setting Guide : 패키지 관리: OS image mount

1. 용도 및 목적

Linux 설치 및 다양한 테스트 환경을 만들기 위함, OS 기본 설치 후 솔루션 또는 별도 S/W 설치에 기본적인 리눅스 패키지들이 필요하게 된다. 우리는 최소로 설치 했기 때문에 어지간한 패키지가 거의 없을것이고, 필요에 따라 설치 할수 있도록 준비하도록 한다. (OS 이미지가 아니고 RPM 패키지만 받아서 구워갔어도 아래와 같이 진행한다.)

2. 설치 환경

-O/S

 Windows 10 Pro , VirtualBox(CentOS6.9)

-H/W

 Intel(R) Core(TM) i5-6200U CPU @ 2.30GHz

 RAM 8GB

 SDD 256GB

3. 진행

-실행 중인 가상머신(CentOS6 A) -> 장치 -> 광학 드라이브 -> 디스크 이미지 선택 클릭

-이전에 받은 DVD1 열기

-putty 로 CentOS6 A 접속 

-현재 디스크 볼륨 상태

# df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/mapper/VolGroup-lv_root
                       35G  700M   33G   3% /
tmpfs                 939M     0  939M   0% /dev/shm
/dev/sda1             477M   40M  413M   9% /boot

-OS 이미지를 마운트할 디렉토리 생성

# mkdir /media/dvdrom

-방금 생성한 디렉토리에 OS 이미지 마운트(/dev/sr0 이 DVD)

#mount /dev/sr0 /media/dvdrom/
mount: block device /dev/sr0 is write-protected, mounting read-only 

-OS 이미지 마운트 후 볼륨 상태

#df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/mapper/VolGroup-lv_root
                       35G  700M   33G   3% /
tmpfs                 939M     0  939M   0% /dev/shm
/dev/sda1             477M   40M  413M   9% /boot
/dev/sr0              3.7G  3.7G     0 100% /media/dvdrom

-중요 항상 임시 저장소는 다 사용한뒤 umount 해야함

# umount /media/dvdrom

# df -h

Filesystem            Size  Used Avail Use% Mounted on

/dev/mapper/VolGroup-lv_root

                       35G  725M   33G   3% /

tmpfs                 939M     0  939M   0% /dev/shm

/dev/sda1             477M   40M  413M   9% /boot


마운트 완료






반응형

+ Recent posts