You are not logged in.

#1 2005-06-20 08:42:32

CyberTron
Member
From: Gotland ,Sweden
Registered: 2005-03-17
Posts: 645
Website

encryption? Anyone good at explaining how it is done?

Hi!

Didn't really know where to put this, so move it if this is the wrong part of the forum...

Well, my question to everyone is, how many of you use cryptation on your partitions? and if so, can someone write a tutorial in the wiki on how to do it?

I've been looking for good tutorials, and I can't seem to find any that are good...I would really like to start cryptateing my partitions, I know that it often aint that hard to break for a fbi-guy, but it might make it harder for people that aint suppose to have my data ...

The problem is that I don't feel confident how it works...so if anyone wanna explain and maybe put something up in the wiki that would be great !!

/CyberTron


http://www.linuxportalen.com  -> Linux Help portal for Linux and ArchLinux (in swedish)

Dell Inspiron 8500
Kernel 2.6.14-archck1  (selfcompiled)
Enlightenment 17

Offline

#2 2005-06-20 08:50:26

cactus
Taco Eater
From: t͈̫̹ͨa͖͕͎̱͈ͨ͆ć̥̖̝o̫̫̼s͈̭̱̞͍̃!̰
Registered: 2004-05-25
Posts: 4,622
Website

Re: encryption? Anyone good at explaining how it is done?

cryptation?
You mean..encryption?


"Be conservative in what you send; be liberal in what you accept." -- Postel's Law
"tacos" -- Cactus' Law
"t̥͍͎̪̪͗a̴̻̩͈͚ͨc̠o̩̙͈ͫͅs͙͎̙͊ ͔͇̫̜t͎̳̀a̜̞̗ͩc̗͍͚o̲̯̿s̖̣̤̙͌ ̖̜̈ț̰̫͓ạ̪͖̳c̲͎͕̰̯̃̈o͉ͅs̪ͪ ̜̻̖̜͕" -- -̖͚̫̙̓-̺̠͇ͤ̃ ̜̪̜ͯZ͔̗̭̞ͪA̝͈̙͖̩L͉̠̺͓G̙̞̦͖O̳̗͍

Offline

#3 2005-06-20 09:21:28

Kern
Member
From: UK
Registered: 2005-02-09
Posts: 464

Re: encryption? Anyone good at explaining how it is done?

Offline

#4 2005-06-20 11:02:29

CyberTron
Member
From: Gotland ,Sweden
Registered: 2005-03-17
Posts: 645
Website

Re: encryption? Anyone good at explaining how it is done?

yes, encryption is the correct word big_smile

*sorry*

i will look into dmcrypt


http://www.linuxportalen.com  -> Linux Help portal for Linux and ArchLinux (in swedish)

Dell Inspiron 8500
Kernel 2.6.14-archck1  (selfcompiled)
Enlightenment 17

Offline

#5 2005-06-20 19:28:13

apeiro
Daddy
From: Victoria, BC, Canada
Registered: 2002-08-12
Posts: 771
Website

Re: encryption? Anyone good at explaining how it is done?

A terse example of creating an encrypted filesystem image.  You can do it with real block devices (/dev/hda1) too.

# dd if=/dev/zero of=fs.img bs=1024 count=1048576
# losetup /dev/loop/0 fs.img
# cryptsetup create myfs /dev/loop/0
# mke2fs /dev/mapper/myfs
# mount /dev/mapper/myfs /mnt
< read/write/copy >
# umount /mnt
# cryptsetup remove myfs
# losetup -d /dev/loop/0

The losetup stuff is only required since I'm using a file to store my filesystem.  If you use a real block device, you don't need any loop devices.

Offline

Board footer

Powered by FluxBB