ghostbsd-build status
Moderator: Developer
ghostbsd-build status
Hi everyone,
I have been working on converting ghostbsd-build to build GhostBSD from our repository, a lot of complication have been occurring, but it is now compiling iso for MATE, I did not test XFCE yet.
Note: There will be configuration missing since our ports that were made to configure our setting are not compatible with pkg there is still a lot of work left to do. I invite everyone to test build and reports all problem here.
I have been working on converting ghostbsd-build to build GhostBSD from our repository, a lot of complication have been occurring, but it is now compiling iso for MATE, I did not test XFCE yet.
Note: There will be configuration missing since our ports that were made to configure our setting are not compatible with pkg there is still a lot of work left to do. I invite everyone to test build and reports all problem here.
Re: ghostbsd-build status
LightDM does not start at boot time and looking, and one file gets corrupted when I reinstalled it on the live session LightDM work. There is still have some setting it is going missing, but it is getting there.
Re: ghostbsd-build status
ericbsd, please give me the few lines of code needed to sync with upstream the https://github.com/GhostBSD/freebsd-ports.
I need to semi-automate this task, because it must be run once only, before to start all four build task.
I need to semi-automate this task, because it must be run once only, before to start all four build task.
Re: ghostbsd-build status
there is the code:
Code: Select all
#!/bin/sh
pkg info | grep -q git
if [ ! $? -eq 0 ] ; then
echo "please install git"
exit
fi
ls | grep -q freebsd-ports
if [ ! $? -eq 0 ] ; then
read -p "Do you wish to install freebsd-ports?" yn
case $yn in
[Yy]* ) git clone https://github.com/GhostBSD/freebsd-ports.git;;
[Nn]* ) exit;;
* ) echo "Please answer yes or no.";;
esac
fi
cd freebsd-ports
git remote -v | grep -q freebsd
if [ ! $? -eq 0 ] ; then
git remote add freebsd https://github.com/freebsd/freebsd-ports.git
fi
git fetch freebsd
git checkout master
git merge freebsd/master
git push origin master
-
- Developer
- Posts: 388
- Joined: Thu Dec 22, 2016 10:30 pm
- Location: Japan
- Has thanked: 1 time
- Been thanked: 1 time
Re: ghostbsd-build status
Ericbsd I tried to make an xfce iso and I get this:
Installing package xfce-live-settings
Installing package grub2-efi
Cleaning cachedir
Nothing to do.
#### Running plugins ####
-> common-live-setting
-> common-base-setting
-> adduser
Please add xdg-user-dirs in pkglist
-> gitpkg
Downloading pcbsd tools from GitHub
installing pc-syinstall
-> dm
-> finalize
ln: /sbin/mount_ntfs: File exists
*** Error code 1
Stop.
make: stopped in /usr/home/keef/ghostbsd-build
Any ideas?
Installing package xfce-live-settings
Installing package grub2-efi
Cleaning cachedir
Nothing to do.
#### Running plugins ####
-> common-live-setting
-> common-base-setting
-> adduser
Please add xdg-user-dirs in pkglist
-> gitpkg
Downloading pcbsd tools from GitHub
installing pc-syinstall
-> dm
-> finalize
ln: /sbin/mount_ntfs: File exists
*** Error code 1
Stop.
make: stopped in /usr/home/keef/ghostbsd-build
Any ideas?
-
- Developer
- Posts: 388
- Joined: Thu Dec 22, 2016 10:30 pm
- Location: Japan
- Has thanked: 1 time
- Been thanked: 1 time