[root@SERVER .ssh]# mount|grep -i " / "
/dev/mapper/rootvg-root_lv on / type ext3 (rw)
[root@SERVER .ssh]# mount -o remount /
mount: block device /dev/rootvg/root_lv is write-protected, mounting read-only
[root@SERVER .ssh]#
재부팅하지 않고 "/"를 다시 쓸 수 있게 만들려면 어떻게 해야 합니까?
[root@SERVER ~]# lsb_release -a
LSB Version: :core-3.1-amd64:core-3.1-ia32:core-3.1-noarch:graphics-3.1-amd64:graphics-3.1-ia32:graphics-3.1-noarch
Distributor ID: RedHatEnterpriseServer
Description: Red Hat Enterprise Linux Server release 5.4 (Tikanga)
Release: 5.4
Codename: Tikanga
[root@SERVER ~]#
업데이트:
[root@SERVER ~]# lvdisplay rootvg/root_lv
Locking type -1 initialisation failed.
[root@SERVER ~]# lvdisplay rootvg/root_lv --ignorelockingfailure
--- Logical volume ---
LV Name /dev/rootvg/root_lv
VG Name rootvg
LV UUID 2Cccd4-oGrx-ssQW-xzK5-MZuA-g4NS-tFDFpd
LV Write Access read/write
LV Status available
# open 1
LV Size 2.00 GB
Current LE 64
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 256
Block device 253:0
[root@SERVER ~]# lvchange -p rw rootvg/root_lv
Locking type -1 initialisation failed.
[root@SERVER ~]#
[root@SERVER ~]# lvchange --ignorelockingfailure -p rw rootvg/root_lv
Only -a permitted with --ignorelockingfailure
Run `lvchange --help' for more information.
[root@SERVER ~]#
"-a" 기능을 사용해야 합니까?
답변1
확인하다 lvdisplay rootvg/root_lv
. LV가 읽기 전용 모드로 표시되면 읽기-쓰기로 설정해야 합니다. LV가 정상 상태라고 가정하면 이는 다음과 같이 수행할 수 있습니다 lvchange -p rw
.
답변2
아래 의견에 명시된 것처럼 mount -o remount,rw /
해야 할 일은 작동하지 않을 것이라고 생각합니다 .
답변3
동일한 오류가 발생하여 검색한 결과 단일 사용자 모드로 재부팅하고 문제의 디스크에서 fsck를 실행해야 한다는 답변을 찾았습니다. 문제가 해결되었습니다.