설치 / 사용기

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

2013.04.23 01:29

ㅇㅁㅁ 조회:4798




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 - - -
1913 소프트웨어| Win8Mpe F [68] tara 15829 67 07-14
1912 소프트웨어| 새로운 RSIMAGEX 로 64 비트 PE에서 윈도우 설치하기 2 [12] Min. 7968 1 07-14
1911 소프트웨어| 새로운 RSIMAGEX 로 64 비트 PE 에서 윈도우 설치하기 1 [1] Min. 5085 1 07-14
1910 소프트웨어| 디트로이트 빌드 1094 설치기 [2] Callisto 4128 0 07-13
1909 소프트웨어| 버추얼박스에 윈도를 Wim으로 설치하기 [15] suk 4629 2 07-13
1908 소프트웨어| vmware9 설치기 [1] 푸른푸른 3986 0 07-13
1907 소프트웨어| 새로산 SSD840 설치 사용경험 [10] 마니또우 4730 1 07-12
1906 소프트웨어| Windows8_ExtremeEdition_64_R2한국어 [27] 마니또우 6558 5 07-12
1905 소프트웨어| 또 Testdisk 덕을 보네요. [5] suk 4609 0 07-12
1904 소프트웨어| 64비트 PE... 소 뒷걸음치다 쥐 한 번 잡았습니다 [10] Min. 6143 2 07-11
1903 소프트웨어| 윈도우 8.1 프리뷰 사용기 [2] Soul? 5525 0 07-10
1902 소프트웨어| ivelocity [2] 임달화 3981 0 07-10
1901 소프트웨어| GRUB 에서 ISO로 돌릴때 조각모음 하는 툴 [10] Min. 5124 4 07-08
1900 소프트웨어| USB랑 하드에 GRUB심기 (RSMBRTOOL) [10] Min. 5300 5 07-08
1899 소프트웨어| 오오~ Grub 재밌네요. [23] suk 4610 2 07-07
1898 소프트웨어| 오랜만에 들려봅니다. ^^ [30] tara 4936 21 07-07
1897 소프트웨어| 윈도우 8 pe 한글 입력 문제 해결 ..^^ [7] 오늘을사는 4011 5 07-06
1896 소프트웨어| 오늘도 구글신의 도움으로.....윈팔 아이콘변경/등록.....T... hanco 3733 1 07-06
1895 소프트웨어| 설치 했습니다....윈팔 [7] hanco 4688 0 07-05
1894 소프트웨어| 윈빌드로 8pe빌드 첨 해 보았네요 ,^^ [12] 오늘을사는 4407 6 07-04
XE1.11.6 Layout1.4.8