Search results

  1. B

    Code optimization when building the system to the processor architecture

    Comparing the GCC 4.2.1 and LLVM Clang 3.1 compilers : http://www.phoronix.com/scan.php?page=article&item=freebsd_91_llvmgcc&num=1
  2. B

    Ecryptfs on FreeBSD?

    I would prefer to use PEFS instead of EncFS. PEFS is a kernel level stacked cryptographic filesystem for FreeBSD, which was developed and is maintained by gk@freebsd.org sysutils/pefs-kmod
  3. B

    lightweight password manager

    I had to use sysutils/pwsafe, I had no complaints about her and she had none about me.
  4. B

    lightweight password manager

    Take a look at sysutils/pwsafe security/pwman security/pwman3
  5. B

    Crypting private data

    If you just want to edit a text file, you can add Password Protection to a file your editing in vim: -x <FILENAME>
  6. B

    lightweight httpd needed

    How about www/hiawatha
  7. B

    HOWTO: FDE FreeBSD 9.0-RC1, GELI+ZFS on root with boot from USB stick.

    and according to http://www.ducsu.at/wissenswiki/doku.php?id=zfs_vollverschluesselung: gpart create -s GPT ada0 Why not -s MBR, why not -t freebsd-zfs, why not use -l instead of glabel, whereis bootcode on da, too many "why?". I do not like to mix MBR and GPT. You can do it, but you should...
  8. B

    HOWTO: FDE FreeBSD 9.0-RC1, GELI+ZFS on root with boot from USB stick.

    Well, dd if=/dev/urandom of=/dev/ada0 bs=1M count=1 dd if=/dev/urandom of=/dev/da0 bs=1M count=1 fdisk -I /dev/ada0 bsdlabel -w /dev/ada0s1 glabel label zrpool /dev/ada0s1a mkdir /tmp/keys dd if=/dev/urandom of=/tmp/keys/zrpool.key bs=128k count=1 geli init -b -P -K /tmp/keys/zrpool.key...
  9. B

    HOWTO: FDE FreeBSD 9.0-RC1, GELI+ZFS on root with boot from USB stick.

    Please post output from: -l /dev/ad*and showwell,
  10. B

    HOWTO: FDE FreeBSD 9.0-RC1, GELI+ZFS on root with boot from USB stick.

    This howto was written for disk with MBR (see above), if you really need the GPT scheme please take a look at this post in the thread. Unfortunately you have made a few typos and inaccuracies in your paragraphs: Keys , Initiation and attachment GELI and Creation fstab and loader.conf.
  11. B

    HOWTO: FDE FreeBSD 9.0-RC1, GELI+ZFS on root with boot from USB stick.

    It would be nice to eliminate the ambiguity, imho.
  12. B

    HOWTO: FDE FreeBSD 9.0-RC1, GELI+ZFS on root with boot from USB stick.

    Yes it does. One of examples in the geli manpage shows how to configure two providers which will be attached on boot (before the root file system is mounted). One of them is using passphrase and three keyfiles and the other is using only a key-file.
  13. B

    VLC streaming

    May be you will find something useful in VideoLAN Streaming Howto
  14. B

    HOWTO: FDE FreeBSD 9.0-RC1, GELI+ZFS on root with boot from USB stick.

    Yes of course. 6.Initiation and attachment GELI: mkdir /boot/keys dd if=/dev/random of=/boot/keys/zrpool.key bs=128k count=1 geli init -b -P -K /boot/keys/zrpool.key /dev/label/zrpool 11. a)create /tmp/usbboot/boot/loader.conf You need to add those lines to /tmp/usbboot/boot/loader.conf...
  15. B

    mplayer

    Please try: mplayer http:”*****”:8080 –dumpstream –dumpfile test1.mpeg You can open another terminal and watch a movie: test1.mpeg when you need Ctrl+C in first terminal.
  16. B

    Tor Browser

    man tor | less -p ExitNodes ... ExitNodes node,node,... A list of identity fingerprints, nicknames, country codes and address patterns of nodes to use as exit node---that is, a node that delivers traffic for you outside the Tor network. ...You can set preferred...
  17. B

    Installed ghostery plugin for firefox...

    For completeness sake you can try new experimental add-on for Firefox - Collusion . This page will show you a demo of what you might see if you were surfing the web with Collusion.
  18. B

    FreeBSD Foundation's New Project: Implement GEM/KMS/DRI for Intel Graphics

    PC-BSD 9-STABLE testing snapshot which includes the new DRM/GEM/KMS work is now available to testers. Please report any issues you find to the FreeBSD X11 mailing list so that the FreeBSD Xorg porting team can address them.
  19. B

    Unable to mount an UDF DVD

    @sharsch, despite UDF, try: mount_cd9660 /dev/cd0 /mnt
  20. B

    Root On ZFS @ FreeBSD 9

    For example, boot from small ufs partition: service moused onestart # optional ) =================== gpart create -s gpt ada0 gpart add -b 34 -s 94 -t freebsd-boot ada0 gpart add -s 512M -t freebsd-ufs -l boot ada0 gpart add -t freebsd-zfs -l disk0 ada0 gpart bootcode -b /boot/pmbr -p...
Back
Top