설치 / 사용기

소프트웨어 FreeBSD 설치때, io에러 해결설명(펌)

2013.04.23 01:29

ㅇㅁㅁ 조회:4821




https://www.dan.me.uk/blog/2012/05/05/full-disk-encryption-in-freebsd-9-x-well-almost/

https://lists.freebsd.org/pipermail/freebsd-questions/2011-December/235919.html

https://www.tldp.org/HOWTO/Linux+FreeBSD-2.html

https://www.wonkity.com/~wblock/docs/html/disksetup.html


우리말이 아니라 좀 그렇지만...
안돌아가는 머리에 쥐 좀 날듯,ㅎ

설명의 요점은  초기 설치시에 GPART 가 에러를 유발하는것을 무시하고,
그냥은 안되니, 라이브시디로 들어가서 수동으로
이미 있어가지고, 에러나 만들고 있는넘을 강제로 지워버리고,
새로 만들어서  비번 만드는 작업이랑 모든것을 하라는 얘기 같은데,

저도 이젠 시간날때봐서 한번 해봐야 할것같습니다. 

Full disk encryption in FreeBSD 9.x (well, almost!)

This article will tell you how to fully encrypt your hard disk in FreeBSD 9.x. 

When I say ‘fully’, I mean as close as possible. 

It will leave the bootloader and /boot folder unencrypted,

but everything else will be encrypted (including your swap space). 

Basically, all your data is encrypted and that’s the point…

Boot from any FreeBSD 9 install medium (except bootonly),

and choose Live CD at the installer menu.

For this article, I will assume you’re using the /dev/ada0 disk,

a 10GB /boot, a 4GB swap and remaining disk encrypted. 

The contents will be encrypted using AES-XTS 256-bit encryption 

with a 4 kilobit random data partial key and a passphrase

(required to type on boot). 

This method requires no external data

(no USB sticks, no bootable CDs to boot the OS)

? but does not offer two factor authentication

which is better than this method. 

For general encryption needs, this method is more than sufficient.

Note that more recent CPUs support AESNI flag for offloading.

As GELI uses the crypto(4) framework,

the OS will utilise this function of your CPU

to assist the encryption to decrease CPU load.

First, we need to remove any existing

GPT or MBR partition tables on the disk

? ignore any ‘invalid argument’ messages you get at this stage:

gpart destroy -F ada0

Now we need to initialise a new GPT partition table, as follows:

gpart create -s gpt ada0

We will now create a 64kb boot partition (this contains the boot loader only,

so is safe and required to be unencrypted):

gpart add -s 128 -t freebsd-boot ada0

Next, we will create the /boot partition

? you can adjust the sizes here if you need,

but i’d suggest not shrinking it too much

or you’ll get into problems when doing OS upgrades later…

gpart add -s 10G -t freebsd-ufs ada0

Now for a swap partition.  Again, you can adjust the size if needed. 

This will be encrypted during boot with a one-time 256bit key.

gpart add -s 4G -t freebsd-swap ada0

Finally, we assign the remaining data to a partition. 

This will form the entire disk (excluding /boot)

and will be encrypted shortly.

gpart add -t freebsd-ufs ada0

OK, so we’ve created… ada0p1 (bootloader),

adap2 (unencrypted /boot partition), adap3 (swap partition)

and adap4 (encrypted disk partition). 

We need to write the boot loader to the disk now:

gpart bootcode -b /boot/pmbr -p /boot/gptboot -i 1 ada0

Now we need to format the /boot partition:

newfs -O2 -U -m 0 -j /dev/ada0p2

And temporarily mount it as /mnt:

mount /dev/ada0p2 /mnt

Now we will create a 4kb random data file

that will form part of the encryption key:

dd if=/dev/random of=/mnt/encryption.key bs=4096 count=1

Now we’re in a position to encrypt the main disk. 

This part will ask for a passphrase twice to complete:

kldload geom_eli
geli init -a HMAC/SHA256 -b -B /mnt/ada0p4.eli -e AES-XTS -K /mnt/encryption.key -l 256 -s 4096 /dev/ada0p4
geli attach -k /mnt/encryption.key /dev/ada0p4

You will receive some messages on the console

about checksum mismatches

? this is normal and please ignore them.

If you have time, I recommend writing the entire disk

with random data to initialise the checksums. 

This is a VERY time consuming step ? you can skip it if you wish, but it is recommended:

dd if=/dev/random of=/dev/ada0p4.eli bs=1m

Next we will unmount the old parition so we can mount the new “root” after formatting 

(and re-mount the /boot partition too):

umount /mnt
newfs -O2 -U -j -m 6 /dev/ada0p4.eli
mount /dev/ada0p4.eli /mnt
mkdir /mnt/bootdir
mount /dev/ada0p2 /mnt/bootdir

OK, we’re ready to install the OS files onto the disk now…

We will install the base, kernel, src and ports tarballs as follows:

cd /mnt
unxz -c /usr/freebsd-dist/base.txz | tar xpf -
unxz -c /usr/freebsd-dist/kernel.txz | tar xpf -
unxz -c /usr/freebsd-dist/src.txz | tar xpf -
unxz -c /usr/freebsd-dist/ports.txz | tar xpf -

Note: this can take a while (especially the ports extraction)

so please be patient. 

If you’d like to see some kind of progress, change the “xpf” to “xvpf”

and it will scroll the files to the screen as they are extracted.

Now we have to move the /boot folder to the unencrypted partition

(it’s really not much use if it’s encrypted!)

? we will also move the keyfile and backup file into the /boot folder:

mv boot bootdir/
ln -fs bootdir/boot
mv encryption.key ada0p4.eli bootdir/boot/

Now we need to prepare a few things in the installed OS

? so we will chroot into the folder:

chroot /mnt

We need to tell the boot loader to load kernel modules for decryption,

and also tell it about the keyfile for the partition…

edit the file /boot/loader.conf and enter the following:

vfs.root.mountfrom=”ufs:/dev/ada0p4.eli”
aesni_load=”YES”
geom_eli_load=”YES”
geli_ada0p4_keyfile0_load=”YES”
geli_ada0p4_keyfile0_type=”ada0p4:geli_keyfile0″
geli_ada0p4_keyfile0_name=”/boot/encryption.key”

Now we need to tell the system

to encrypt our swap space using a one-time key

on each boot (note: this prevents system dumps from working)

… edit /etc/rc.conf and enter:

geli_swap_flags=”-e AES-XTS -l 256 -s 4096 -d”

Next we need to tell the system our mountpoints…

edit the file /etc/fstab and enter:

# Device                   Mountpoint FStype Options Dump Pass#
/dev/ada0p4.eli   /                   ufs    rw      0    0
/dev/ada0p2         /bootdir   ufs    rw      1    1
/dev/ada0p3.eli   none           swap   sw      0    0

Now we need to initialise a few things… let’s start by setting the root password:

passwd root

And configuring your timezone:

tzsetup

And initialise the sendmail aliases file:

cd /etc/mail
make aliases

You can do any other system setup you need now, such as adding users,

configuring SSH or networking…  when you’re done:

exit

Now we’re done, we can reboot…

reboot

On boot, you will see a prompt for:

Enter passphrase for ada0p4:

Note, however, that devices are still being detected while this occurs

so it may scroll off the screen (usually while detecting USB devices)

? this doesn’t affect your ability to enter the passphrase,

but can be confusing if you’re not expecting it!

Once the system is up and running, you can use it as normal.

The only point to note is that when you do an OS upgrade,

during the “mergemaster” stage,

it will complain that /boot is a symlink not a directory. 

Simply tell it to ignore/do nothing and it will install the files as normal.


번호 제목 글쓴이 조회 추천 등록일
[공지] 사용기/설치기 이용안내 gooddew - - -
662 소프트웨어| Ventoy1.0.41 지역화 [43] 메인보드 1599 58 04-22
661 소프트웨어| RSPartition2.34 [21] 카멜 1230 31 04-22
660 소프트웨어| RSPartition2.35 [10] 카멜 1229 25 04-24
659 소프트웨어| LG Smart Recovery 전체 제작 과정 [6] 카멜 1919 21 04-24
658 소프트웨어| 레인미터 Timer 스킨 설명입니다. [7] 갑파니 886 9 04-29
657 소프트웨어| RSImageX2.73.exe [31] 카멜 1955 46 04-29
656 소프트웨어| UEFI 시스템 복사 ( Aomei Partition Assistant ) [12] gooddew 1432 18 05-01
655 소프트웨어| 여러 PE 에서 유틸리티 공유방법 - RSPasc [23] 카멜 1581 31 05-06
654 소프트웨어| Ventoy로 ISO로 된 PE 부팅하기 2 [26] suk 1976 37 05-09
653 소프트웨어| 꼬마PE 및 Data_R_boot 부팅 테스트 [13] 오스 1075 7 05-10
652 소프트웨어| 트루이미지, 아오메이, 테라바이트 3종 백업프로그램 사용... [14] 비숍 1745 6 05-11
651 소프트웨어| Aomei Backupper 6.5.1k [7] 오스 835 14 05-18
650 소프트웨어| 앞에 나무가 큰 집을 어둠이 다녀갔습니다. [34] do98 1620 20 05-18
649 소프트웨어| [실사] AOMEI Backupper 6.5.1 백업&복구 활용 방법! [17] Geheimnis 1195 13 05-19
648 소프트웨어| Ventoy & Grub4dos 다음버전 예고편 [37] 메인보드 1000 27 05-19
647 소프트웨어| Ventoy앞 OS뒤 갈아엎은뒤 OS재설치 스샷 (Bios MBR모드편) [22] 메인보드 906 17 05-20
646 소프트웨어| Ventoy앞 OS뒤 갈아엎은뒤 OS재설치 스샷 (Uefi GPT모드편) [23] 메인보드 1427 20 05-20
645 소프트웨어| Macrium 백업이미지로 부팅해서 프로그램 추가 및 윈도우 ... [11] 단테9 1149 8 05-23
644 소프트웨어| Ventoy & Grub4dos 에서... 년월일시간표시 [22] 메인보드 839 27 05-27
643 소프트웨어| 브라우저알못의 네이버 웨일 설치기 [8] Antory 801 3 05-28
XE1.11.6 Layout1.4.8