Comments on: 10 Things to Do After Fresh Installation of FreeBSD https://www.tecmint.com/things-to-do-after-installing-freebsd/ Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks. Sat, 20 Jun 2020 07:31:31 +0000 hourly 1 By: HubTou https://www.tecmint.com/things-to-do-after-installing-freebsd/comment-page-1/#comment-1340024 Sat, 20 Jun 2020 07:31:31 +0000 https://www.tecmint.com/?p=26733#comment-1340024 For fully disabling Sendmail, you can just use sendmail_enable="NONE" instead of the 4 lines mentioned.

As can be read in /etc/rc.d/sendmail:

case ${sendmail_enable} in
[Nn][Oo][Nn][Ee])
        sendmail_enable="NO"
        sendmail_submit_enable="NO"
        sendmail_outbound_enable="NO"
        sendmail_msp_queue_enable="NO"
        ;;
esac
]]>
By: Mike Stroud https://www.tecmint.com/things-to-do-after-installing-freebsd/comment-page-1/#comment-1325376 Tue, 07 Apr 2020 07:20:37 +0000 https://www.tecmint.com/?p=26733#comment-1325376 Sorry to do this again, but this is a truly useful article and I refer to it often!

nameserver your_first_DNS_server_IP
nameserver your_second_DNS_server_IP
search your_local_domain

Should read:

nameserver="your_first_DNS_server_IP"
nameserver="your_second_DNS_server_IP"
search="your_local_domain"

Thanks again!

]]>
By: anon https://www.tecmint.com/things-to-do-after-installing-freebsd/comment-page-1/#comment-1321607 Mon, 16 Mar 2020 15:27:47 +0000 https://www.tecmint.com/?p=26733#comment-1321607 In reply to Jadwiga.

Found the Hipster.

]]>
By: Ravi Saive https://www.tecmint.com/things-to-do-after-installing-freebsd/comment-page-1/#comment-1320902 Wed, 11 Mar 2020 04:21:53 +0000 https://www.tecmint.com/?p=26733#comment-1320902 In reply to Mike Stroud.

@Mike,

Corrected the command in the article…

Thanks

]]>
By: Mike Stroud https://www.tecmint.com/things-to-do-after-installing-freebsd/comment-page-1/#comment-1320689 Mon, 09 Mar 2020 13:54:11 +0000 https://www.tecmint.com/?p=26733#comment-1320689 pkg install nano bash bash_completion

…should read bash-completion, not bash_completion.

]]>