User Tools

Site Tools


project:bsd:freebsd

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
project:bsd:freebsd [2018/07/14 11:06] – [FreeBSD Port] maxfxproject:bsd:freebsd [2018/07/27 18:58] – [How to mount disk with geli from live CD] maxfx
Line 1: Line 1:
-====== Informations about FreeBSD ======+====== General informations about FreeBSD ======
  
 ====== Derivates FreeBSD OS ====== ====== Derivates FreeBSD OS ======
Line 195: Line 195:
 [[https://bsdmag.org/dynamic-memory-allocation-unix-systems/]] [[https://bsdmag.org/dynamic-memory-allocation-unix-systems/]]
  
-==== FreeBSD Port ====+====  Making a New Port  ====
 [[https://networking.ringofsaturn.com/Unix/createportpatch.php| Creating a FreeBSD Port Patch]] [[https://networking.ringofsaturn.com/Unix/createportpatch.php| Creating a FreeBSD Port Patch]]
  
Line 202: Line 202:
 ]] ]]
  
-=== Making a New Port === 
 [[https://www.freebsd.org/doc/handbook/ports-poudriere.html | Building Packages with Poudriere]] [[https://www.freebsd.org/doc/handbook/ports-poudriere.html | Building Packages with Poudriere]]
  
Line 732: Line 731:
     ip4.addr = 10.0.2.15;     ip4.addr = 10.0.2.15;
 } }
- 
 </code> </code>
  
-Packet forwarding+Packet forwarding 
 <code> <code>
 #Define the interfaces #Define the interfaces
Line 1112: Line 1110:
 zpool import -f zroot zpool import -f zroot
 </code> </code>
 +
 +
 +==== How to mount disk with geli from live CD  ====
 +
 +Boot live system ...
 +
 +<code>
 +geli attach /dev/ada0p3
 +password: 
 +</code>
 +
 +The command mount only part of filesystem.
 +For example /usr; /tmp; /var; but not /boot
 +<code>
 +zpool import -f /mnt zroot
 +</code>
 +
 +The command mount /boot etc..
 +<code>
 +zfs mount zroot/ROOT/default
 +</code>
 +
 +
 +