FOG IMAGES- Deleted Dev
-
@Trev-lchs having had a read and the Dev is where it places images that are uploading prior to moving them to the images folder i guess i have broken it, any help in recreating the Dev folder would be much appreciated.
-
mkdir /images/dev touch /images/dev/.mntcheck chmod -R 777 /images/dev chown -R fogproject:root /images/dev
-
@Quazz said in FOG IMAGES- Deleted Dev:
chown -R fogproject:root /images/dev
Thank you just going to try and see if that fixed it, thanks very much
-
Hi Quazz we don’t get past “running init scripts” on attempting to upload an image, are the scripts missing from the dev folder? If so how do i put them back?
-
i have tried this but it fails with !/bin/bash: event not found after the first echo command
mkdir -p /images/dev
touch /images/dev/.mntcheck
mkdir -p /images/dev/postinitscripts
echo “#!/bin/bash” > /images/dev/postinitscripts/fog.postinitecho “## This file serves as a starting point to call your custom pre-imaging/post init loading scripts.” >> /images/dev/postinitscripts/fog.postinit
echo “## <SCRIPTNAME> should be changed to the script you’re planning to use.” >> /images/dev/postinitscripts/fog.postinit
echo “## Syntax of post init scripts are” >> /images/dev/postinitscripts/fog.postinit
echo “#. ${postinitpath}<SCRIPTNAME>” >> /images/dev/postinitscripts/fog.postinit
chown -R fog:root /images
chmod -R 777 /images -
@Trev-lchs Use single quotes instead of double round your echo command so the literal string is passed.
Or paste the script in its entirety using a text editor.
-
@Trev-lchs said in FOG IMAGES- Deleted Dev:
Unfortunately still sticks on Running post Init scriptsAny ideas?
-
@Trev-lchs You may need to set the owner and permissions again since you’ve made a new folder and file.
So run the chmod and chown commands again.
-
@Quazz still the same, any other things you can think of?
-
would i need to run those permissions on the actual postinitscripts folder?
-
@Trev-lchs No; they are applied recursively (-R)
Can you share a picture of where it hangs?
-
What version of FOG is installed?
Why not just rerun the installation script? This should recreate the missing dev folder and files as well as make sure they’re set to the proper permissions.
@Quazz is giving the right information, but If you’re using a fog version of 1.5.7 or earlier (I believe this was where we added fogproject as opposed to fog user) then the likely issue is here.
-
@Tom-Elliott hi Tom thanks for the reply
we are running 1.5.7.2 i did consider upgrading to 1.5.8 but i am sure i did this last time with git, but cannot remember the commands to do so. Could you please tell me what are the commands to rerun the install script?
as to where is stops it is on the first screen i will send a picture shortly
-
This post is deleted! -
-
@Tom-Elliott i think i have it
cd /root/fogproject
cd bin
./installfog.sh -
@Tom-Elliott id still like very much to install 1.5.8 if you have the time to let me know what i need to do with git please? git is installed on the server.
-
-
@Tom-Elliott
that seems to have killed it completely -
@Trev-lchs
Please, in the future, ask a question and be a little patient?I understand wanting to get this fixed and all, but you kind of got ahead of yourself there.
To update to the latest master version (1.5.9-RC2 I believe currently)
cd /root/fogproject git pull cd bin ./installfog.sh -y
Let it run all the way through. Once it’s complete, it should have restarted all the services for you automatically.
If you really want 1.5.8 run these commands:
cd /root/fogproject git checkout tags/1.5.8 -b v1.5.8-branch cd bin ./installfog.sh -y
Again, wait for the install to complete.
Thank you,