Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
engineering:computer_science:homelab:freenas:jails [2024/08/16 13:56] – removed - external edit (Unknown date) 127.0.0.1 | engineering:computer_science:homelab:freenas:jails [2024/08/16 13:56] (current) – ↷ Links adapted because of a move operation carlossousa | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Jails on FreeNAS ====== | ||
+ | |||
+ | Part of my [[engineering: | ||
+ | |||
+ | Jails runs FreeBSD, so if you are familiar with the OS you shouldn' | ||
+ | |||
+ | ===== Create a Jail on FreeNAS ===== | ||
+ | |||
+ | [TODO] Add Screenshots | ||
+ | |||
+ | ===== Connect to the Jail with ===== | ||
+ | |||
+ | <code bash> | ||
+ | jexec < | ||
+ | |||
+ | |||
+ | </ | ||
+ | |||
+ | ===== Installing Software on Jails ===== | ||
+ | |||
+ | Note: I will be using [[https:// | ||
+ | |||
+ | * Install Transmission | ||
+ | |||
+ | <code bash> | ||
+ | pkg install transmission | ||
+ | |||
+ | |||
+ | </ | ||
+ | |||
+ | * Add the following lines to **/ | ||
+ | |||
+ | <code bash> | ||
+ | vi / | ||
+ | |||
+ | |||
+ | </ | ||
+ | |||
+ | <code bash> | ||
+ | transmission_enable=" | ||
+ | transmission_watch_dir="/ | ||
+ | transmission_download_dir="/ | ||
+ | |||
+ | |||
+ | </ | ||
+ | |||
+ | * Add authentication to the Transmission Settings with | ||
+ | |||
+ | <code bash> | ||
+ | vi / | ||
+ | |||
+ | |||
+ | </ | ||
+ | |||
+ | <code bash> | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | |||
+ | |||
+ | </ | ||
+ | |||
+ | * Start the Daemon with | ||
+ | |||
+ | <code bash> | ||
+ | service transmission start | ||
+ | |||
+ | |||
+ | </ | ||
+ | |||
+ | * Access the WebUI via | ||
+ | |||
+ | <code bash> | ||
+ | < | ||
+ | |||
+ | |||
+ | </ | ||
+ | |||
+ | * You can stop the service with: | ||
+ | |||
+ | <code bash> | ||
+ | / | ||
+ | |||
+ | |||
+ | </ | ||
+ | ===== Export / Import Jails ===== | ||
+ | |||
+ | Export with: | ||
+ | |||
+ | <code bash> | ||
+ | iocage export | ||
+ | |||
+ | </ | ||
+ | |||
+ | Import with: | ||
+ | |||
+ | <code bash> | ||
+ | | ||
+ | |||
+ | </ | ||
+ | |||