User Tools

Site Tools


project:bsd:freebsd

Differences

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

Link to this comparison view

Next revision
Previous revision
Next revisionBoth sides next revision
project:bsd:freebsd [2018/07/14 09:54] – created 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]]
  
-=== Making a New Port ===+[[http://zewaren.net/site/node/172 |  
 +Build your own FreeBSD ports and make packages out of them using jails, poudriere and portshaker 
 +]] 
 [[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 728: 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 1108: 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>
 +
 +<code>
 +zfs mount zroot/ROOT/default
 +</code>
 +
 +
 +