본문 바로가기
IT

odroid 서버 재설치

by Oh.mogilalia 2024. 7. 3.

그노무 plex media 서버 설치하면서 ufw 방화벽 설정을 잘못했는지 ssh 접속이 안되길래... 우짤 수 없이 새로 서버 설치 중.

https://mogibu.tistory.com/5156

3. 설정 변경 부분에서 sda1 UUID 변경

1) 파티션 UUID 확인
root@Gugeosigan:~# lsblk -f

2) boot.ini 설정 변경
root 파티션의 UUID를 mmcblk1p2에서 sda1로 변경
sudo cp /media/boot/boot.ini /media/boot/boot.ini.orig
sudo nano /media/boot/boot.ini
설정 변경
# Boot Args

# Boot Args
setenv bootargs "console=tty1 console=ttySAC2,115200n8 root=UUID=e139ce78-9841-40fe-8823-96a304a09859 rootwait ro fsck.repair=yes net.ifnames=0 ${videoconfig} ${hdmi_phy_control} ${hid_quirks} smsc95xx.macaddr=${macaddr} ${external_watchdog}"
==>
# Boot Args
setenv bootargs "console=tty1 console=ttySAC2,115200n8 root=UUID= 0b3231a1-98e7-4821-91e5-2cab0d7fe552 rootwait ro fsck.repair=yes net.ifnames=0 ${videoconfig} ${hdmi_phy_control} ${hid_quirks} smsc95xx.macaddr=${macaddr} ${external_watchdog}"

root@odroid:/#  blkid
/dev/mmcblk1p2: LABEL="rootfs" UUID="e139ce78-9841-40fe-8823-96a304a09859" TYPE="ext4" PARTUUID="3cedfd53-02"
/dev/sda1: UUID="0b3231a1-98e7-4821-91e5-2cab0d7fe552" TYPE="ext4" PARTUUID="479e1ab3-01"
/dev/mmcblk1p1: SEC_TYPE="msdos" LABEL_FATBOOT="boot" LABEL="boot" UUID="52AA-6867" TYPE="vfat" PARTUUID="3cedfd53-01"
/dev/sda2: LABEL="M-lM-^CM-^H M-kM-3M-<M-kM-%M-(" UUID="CADC2861DC2849D1" TYPE="ntfs" PARTUUID="479e1ab3-02"
/dev/sda3: LABEL="M-lM-^CM-^H M-kM-3M-<M-kM-%M-(" UUID="70622FA9622F7350" TYPE="ntfs" PARTUUID="479e1ab3-03"
root@odroid:/#

3) fstab 설정 변경
root 파티션 mmcblk1p2에서 sda1로 변경
sudo cp /etc/fstab /etc/fstab.orig
sudo nano /etc/fstab
===================
UUID=e139ce78-9841-40fe-8823-96a304a09859 / ext4 errors=remount-ro,noatime 0 1
LABEL=boot /media/boot vfat defaults 0 1
/dev/sda1 / ext4 defaults,noatime 0 1
UUID=CADC2861DC2849D1 /media/hdd2 ntfs defaults 0 1
UUID=70622FA9622F7350 /media/hdd3 ntfs defaults 0 1

/swapfile.1 swap swap auto 0 0
===========================

이것도 계속 samba 설치 수 hdd3 에 쓰기가 안되어 ntfs-3g 설치 후

fstab 수정

UUID=CADC2861DC2849D1 /media/hdd2 ntfs-3g defaults 0 0

UUID=70622FA9622F7350 /media/hdd3 ntfs-3g defaults 0 0

이후 쓰기도 됨. 즉 torrent 붙여넣기 가능해짐.

또 데몬 에러 및 플렉스 서버 설치 등 우여곡절 끝에 잘 마무리됨

 

 

 

 

 

'IT' 카테고리의 다른 글

WOL (Wake On Lan) 원격 부팅  (0) 2024.07.10
레노버 M600 미니PC 재구입  (0) 2024.07.03
odroid 서버에 PlexMedia 서버 설치  (1) 2024.06.30
우분투 서버 kill 서비스  (0) 2024.06.30
M600 서버에도 transmission-daemon 설치  (1) 2024.06.18