@Junkhacker said:
testing with the available pre-release versions of Windows 10 have at this time had no issue with compatibility with fog.
Same here, I’ve tested it today.
@Junkhacker said:
testing with the available pre-release versions of Windows 10 have at this time had no issue with compatibility with fog.
Same here, I’ve tested it today.
@Deastrom said:
FOG version 1.2.0
There are some modifications for Debian 8 in SVN version, like services starting.
@Matt-Derrick I have not my FOG here, I’ll test/check tomorrow.
@brycew Hi, have you upload the image with the same SVN version ? Have you try to mount manually NFS share with another linux client ?
@Matt-Derrick Hi, can you post your apache log ?
@JBailey I know that it’s in the web Interface This error is describe in the Wiki here https://wiki.fogproject.org/wiki/index.php/Troubleshoot_FTP#You_must_first_upload_an_image_to_create_a_download_task
@Tom-Elliott said:
Please have a look and let us know how it goes
On my debian 7 it’s OK. Thx for the fix.
To test if json is available in php, I’ve modified confirmPackageInstallation()
in svn/trunk/lib/ubuntu/functions.sh :
confirmPackageInstallation() {
for x in $packages; do
dots "Checking package: $x"
if [ "$osid" -eq 1 ]; then
rpm -q $x >/dev/null 2>&1
elif [ "$osid" -eq 2 ]; then
if [ "$x" = "php5-json" ]; then
php -m $x 2>/dev/null | grep '^json' >/dev/null 2>&1
else
dpkg -l $x 2>/dev/null | grep '^ii' >/dev/null 2>&1
fi
elif [ "$osid" -eq 3 ]; then
pacman -Q $x >/dev/null 2>&1
fi
errorStat $?
done
}
Not sure if redhat based have the same problem (@Wayne-Workman ? )
@Tom-Elliott said:
What operating system? If Debian or Ubuntu what’s the output of
apt-cache search php5-json
?
php5-json is in the php5-common package.
@no1bossman
Hi,
to view NFS shares of a server you can (from a linux client) use that :
showmount -e your_fog_server_ip
below an example :
showmount -e xxx.xxx.xxx.xxx
Export list for xxx.xxx.xxx.xxx:
/fogimages/dev *
/fogimages *
@Darrell-Lanson said:
I get this error but I know the password is correct I can still make upload and download images just can’t use the snapins so is my password corrupted somehow now
Got error 1045: acess denied for user fog@localhost using password yes when trying to connect
Try to install phpmyadmin, there are some tools to check repair tables :
sudo apt-get install phpmyadmin
It have a user friendly interface, after install go to : http://your_server_fog/phpmyadmin
@flat4 said:
Im Having the same problem, i can deploy an windows 8.1 image but for some reason i cannot upload it. I get the same screen as the OP. Any progress on this?
Edit i fix my issue with a little google, someone else posted to use Part Magic and try to open the drive in the file viewer. When this happens it will tell you to run a command to remove the hibernated file. I did and boom fog is now uploading the image.
“Removing hibernate file and page file” feature is available since FOG 0.12
sudo mysqlcheck -u fog -p fog
Enter password: (type your mysql fog user password)
@Darrell-Lanson said:
So I discovered I couldn’t upload snapins and I found this error I have no idea on how to fix any help would be appreciated I am thinking this happened while I was imaging a computer and the power went out but don’t know the commands to do a repair.
8:22:07 [ERROR] /usr/sbin/mysqld: Table ‘./fog/groups’ is marked as crashed and should be repaired
150626 8:22:07 [Warning] Checking table: ‘./fog/groups’
150626 8:22:07 [ERROR] /usr/sbin/mysqld: Table ‘./fog/history’ is marked as crashed and should be repaired
150626 8:22:07 [Warning] Checking table: ‘./fog/history’
150626 8:22:07 [ERROR] /usr/sbin/mysqld: Table ‘./fog/hosts’ is marked as crashed and should be repaired
150626 8:22:07 [Warning] Checking table: ‘./fog/hosts’
150626 8:22:07 [ERROR] /usr/sbin/mysqld: Table ‘./fog/images’ is marked as crashed and should be repaired
150626 8:22:07 [Warning] Checking table: ‘./fog/images’
150626 8:22:07 [ERROR] /usr/sbin/mysqld: Table ‘./fog/imagingLog’ is marked as crashed and should be repaired
150626 8:22:07 [Warning] Checking table: ‘./fog/imagingLog’
150626 8:22:07 [ERROR] /usr/sbin/mysqld: Table ‘./fog/inventory’ is marked as crashed and should be repaired
150626 8:22:07 [Warning] Checking table: ‘./fog/inventory’
150626 8:22:07 [ERROR] /usr/sbin/mysqld: Table ‘./fog/tasks’ is marked as crashed and should be repaired
150626 8:22:07 [Warning] Checking table: ‘./fog/tasks’
150626 8:22:07 [ERROR] /usr/sbin/mysqld: Table ‘./fog/userTracking’ is marked as crashed and should be repaired
150626 8:22:07 [Warning] Checking table: ‘./fog/userTracking’
Can you check your database integrity ? (https://dev.mysql.com/doc/refman/5.1/en/check-table.html)
@robza Have you try to install manually the package php5-fpm ?
sudo apt-get install php5-fpm