Installing Fresh Ports Froxlor have questions

I'm installing Fresh Ports which is a web hosting control panel based on froxlor. Fresh ports is for FreeBSD. It is a manual install. I have a few questions.

What am I supposed to do with the dependency lines. Do I type them into the command line or?

Take a look here.

freshports.org

dependency lines
  • froxlor>0:sysutils/froxlor
When I install apache it has on the apache page a bunch of dependencies. I have never had to install dependencies when installing apache. Can you look at the site and answer whether I will have to install a bunch of dependencies to install apache. Take a look at freshports.org and let me know.
 
I'm installing Fresh Ports which is a web hosting control panel based on froxlor.
No, it's not. Freshports is a website created by dvl@; http://freshports.org

This is a website that shows a lot of information from the FreeBSD ports tree. Please understand this.


I have never had to install dependencies when installing apache. Can you look at the site and answer whether I will have to install a bunch of dependencies to install apache.
Dependencies are automatically installed. Please take some time to read the handbook.
 
Am I supposed to just make this directory when typing this command or do I start with the make packagelist.

Here are the command to start for froxlor on fresh ports.

make generate-plist am I supposed to startwith this command to install.

https://www.freshports.org/sysutils/froxlor/ It's on this site.

When I type the following command it says directory does not exist. make generate-plist create this directory ro do I.
 
It said directory does not exist when I typed the following


cd /usr/ports/sysutils/froxlor/ && make install clean
 
I just installed the package for froxlor. It looked like it was installing db and web server etc. I'll check to see if apache is running.
 
No service will ever run automatically by just installing it. You have to enable them in /etc/rc.conf.

Why do you want to install this tool in the first place? If the idea is to "manage" your own machine without understanding how FreeBSD works, this won't work. You should really read the handbook first and get some grips on administrating FreeBSD before operating services on it.
 
I just installed the package for froxlor. It looked like it was installing db and web server etc. I'll check to see if apache is running.
These are the packages that are install with froxlor (on latest FreeBSD version):
Code:
apache24: 2.4.56
dovecot: 2.3.20
froxlor: 2.0.10
libargon2: 20190702
php81: 8.1.17
php81-bcmath: 8.1.17
php81-curl: 8.1.17
php81-filter: 8.1.17
php81-ftp: 8.1.17
php81-gettext: 8.1.17
php81-pcntl: 8.1.17
php81-pdo: 8.1.17
php81-pdo_mysql: 8.1.17
php81-posix: 8.1.17
php81-session: 8.1.17
php81-xml: 8.1.17
php81-zip: 8.1.17
postfix: 3.7.4,1
proftpd: 1.3.8_1
proftpd-mod_sql_mysql: 1.3.8_1
webalizer: 2.23.8_14

You can check the dependencies with pkg-info(8).

You have to install
MySQL (databases/mysql80-server | databases/mysql80-client) or
MariaDB (databases/mariadb106-server | databases/mariadb106-client)
and set up it for froxlor and start apache: # service apache24 start

P.S. Take zirias@ advice seriously. If you've been a Linux user, at least read this for now: FreeBSD Quickstart Guide for Linux Users. Be sure that without reading the Handbook, you'll definitely get into trouble.
 
Back
Top