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.
ghostbsd-build status
Moderator: Developer
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
After more investigation the lightdm gets broken after extra setting file that mean somewhere in the cloning compressing and making the iso lightdm get broken.
Re: ghostbsd-build status
The latest commit of GhostBSD on GitHub is now working for MATE, I am testing the old code to configure graphics card to see if the issue is gone.
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
- NevilleGoddard
- Developer
- Posts: 517
- Joined: Thu Dec 22, 2016 10:30 pm
- Location: Japan
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?
Re: ghostbsd-build status
Sorry that I did not reply before, but I have fixed the problem this morning. the problem was in finalize.sh.
- NevilleGoddard
- Developer
- Posts: 517
- Joined: Thu Dec 22, 2016 10:30 pm
- Location: Japan
Re: ghostbsd-build status
Thanks. Will try again.
Re: ghostbsd-build status
I did an update you might want to do a git pull, slim was not setup.