Latest FOG 0.33b
-
Ok thought it was just me but just in case I am imaging another machine to test on I am using hyper-V by the way on a 2012 r2 server machine. Also can we change the 5 min option it does seem forever at times
-
how would I force delete a client from the database?
-
Went to add a new workstation to try to image and test and started to get this errors
FOG DEBUG: Host: Database Load Failed: ID: 0, Error: Row not found
-
Changing the checkin time is done per client in the file config.ini found in âC:\Program Files (x86)\FOG\etcâ
Iâve got mine, now, set to 20 seconds just for testing, still trying to work out kink in it.
I donât know why Youâre seeing the issue with that, did it create the host and did you set an Image with the host?
-
[quote=âTom Elliott, post: 21813, member: 7271â]Changing the checkin time is done per client in the file config.ini found in âC:\Program Files (x86)\FOG\etcâ
Iâve got mine, now, set to 20 seconds just for testing, still trying to work out kink in it.
I donât know why Youâre seeing the issue with that, did it create the host and did you set an Image with the host?[/quote]
it created the host but when I click on it it shows no data like it is corrupted. I am not sure why it happened I just did a full host inventory from PXE menu.
-
That sounds like, to me at any rate, that the isValid() function is actually checking if the MAC is valid AND if itâs associated with a host. I donât know yet, still working on snapins.
-
ok i will wait for you let me know when I can play again lol
-
So I think I fixed the issue, however I think the FOG Client is bugged.
Originally the files would be sent with #!ok\n and then the options information.
I found if I I send the commands as originally in 0.32, they say the meta issue. If I remove the \n on the ok line, it starts to work, but errors out saying it canât find valid task id, which as far as I can tell is because itâs sending the JOBTASKID= variable as: #!okJOBTASKID=
Trying 0.32 service.
-
r1130 released. Should fix snapin tasks. Changes title for Pending Macs. More service fixups.
-
Snapin tasks now works.
r1131 released.
-
i suggest also to modify fog to do this:
GRUB2 stage1 location:
[LIST]
[][B]Stage 1[/B]: boot.img is stored in the master boot record (MBR), or optionally in any of the [URL=âhttp://en.wikipedia.org/wiki/Volume_boot_recordâ]volume boot records[/URL] (VBRs), and addresses the next stage by an [URL=âhttp://en.wikipedia.org/wiki/LBA48â]LBA48[/URL] address (the 1024 cylinder boundary of GRUB legacy is omitted); at installation time it is configured to load the first sector of core.img.
[][B]Stage 1.5[/B]: core.img is by default written to the sectors between the MBR and the first partition, when these sectors are free and available. For legacy reasons, the first partition of a hard drive does not begin at sector 1 (counting begins with 0) but at sector 63, leaving a gap of 63 sectors of empty space. That space is not part of any partition or file system, and therefore not prone to any problems related with it. Once executed, core.img will load its configuration file and any other modules needed, particularly [URL=âhttp://en.wikipedia.org/wiki/File_systemâ]file system[/URL] drivers; at installation time, it is generated from diskboot.img and configured to load the [I]stage 2[/I] by its [URL=âhttp://en.wikipedia.org/wiki/Path_(computing)â]file path[/URL].
[/LIST]
so copying only the MBR is not correct! we must copy also all data before sda1 starts -
Hi, I created (very) simple UML diagram of FOG 0.33. Just classes (that I found in /var/www/fog/lib/fog/) and their associations (no functions and variables of classes) and for now, doesnât look nice, but itâs start. Itâs been created in UMLet. I was not able to upload source (it has .uxf extension), so just .pdf. Is it possible to allow .uxf?
[url=â/_imported_xf_attachments/0/512_fog_0.33_v01.pdf?:â]fog_0.33_v01.pdf[/url]
-
Good morning all. Tom I am downloading new version as we speak will let you know if I have any problems.
-
[quote=âTom Elliott, post: 21774, member: 7271â]Itâs all good. You can decompress the init.gz with xz -d -c init.gz > init
Then mount the init file created to another directory. I Usually create a tmp folder inside /tftpboot/fog/images/
[code]
mkdir tmp
xz -d -c init.gz > init
mount -o loop init tmp
[/code][/quote]
i tryed to modify fog script.
simply modified the line:
partclone.${fs_type} -c -s $part -O /tmp/pigz1 -N -f 1 2>/tmp/status.fog
with:
part_fs_type=
blkid $part | awk 'BEGIN {FS="\""} { print $4 }'
### row patch to use correct partclone.fstype
partclone.${part_fs_type} -c -s $part -O /tmp/pigz1 -N -f 1 2>/tmp/status.fogin upload section. I think that must work, but to test i recreated init.gz with:
umount ./init
xz -z -c init > init.gz
and overwrited original init.gz into tftp/fog dir : donât bootswhat i must do to recreate a working init.gz?
-
xz -C crc32 -z -c init > init.gz (I think)
That said, I donât think that command will work.
extfs, ntfs, hfsp, btrfs, xfs are the partclone binary names. so if i read your script right, if it comes up as ext4, itâs going to try partclone.ext4 which is wrong.
-
[quote=âTom Elliott, post: 21829, member: 7271â]xz -C crc32 -z -c init > init.gz (I think)
That said, I donât think that command will work.
extfs, ntfs, hfsp, btrfs, xfs are the partclone binary names. so if i read your script right, if it comes up as ext4, itâs going to try partclone.ext4 which is wrong.[/quote]
administrator@fog:~/tmp/usr/sbin$ sudo ln -s partclone.extfs partclone.ext4
administrator@fog:~/tmp/usr/sbin$ sudo ln -s partclone.extfs partclone.ext3
administrator@fog:~/tmp/usr/sbin$ sudo ln -s partclone.extfs partclone.ext2works like a charm
-
[quote=âfabritrento, post: 21830, member: 21607â]administrator@fog:~/tmp/usr/sbin$ sudo ln -s partclone.extfs partclone.ext4
administrator@fog:~/tmp/usr/sbin$ sudo ln -s partclone.extfs partclone.ext3
administrator@fog:~/tmp/usr/sbin$ sudo ln -s partclone.extfs partclone.ext2works like a charm :D[/quote]
exist a develop environment where i can access and do testing? -
[quote=âfabritrento, post: 21828, member: 21607â]i tryed to modify fog script.
simply modified the line:
partclone.${fs_type} -c -s $part -O /tmp/pigz1 -N -f 1 2>/tmp/status.fog
with:
part_fs_type=
blkid $part | awk 'BEGIN {FS="\""} { print $4 }'
### row patch to use correct partclone.fstype
partclone.${part_fs_type} -c -s $part -O /tmp/pigz1 -N -f 1 2>/tmp/status.fog[/quote]
alternatively we can insert this:
else
part_fs_type=blkid $part | awk 'BEGIN {FS="\""} { print $4 }'| sed -e 's/1/fs/g' |sed -e 's/2/fs/g'|sed -e 's/3/fs/g'|sed -e 's/4/fs/g'
### row patch to use correct partclone.fstype
partclone.${part_fs_type} -c -s $part -O /tmp/pigz1 -N -f 1 2>/tmp/status.fog
partclone.${fstype} -c -s $part -O /tmp/pigz1 -N -f 1 2>/tmp/status.fog
fi
what is the more correct solution? -
hey Tom I am getting a new error now. This is after dropping my old database because the currpted client would not let me access much and starting a new one I re inventory the computer whiched worked fine but now I am getting this.
Unable to determain snapin status because the MAC address was not correctly formated.
-
[quote=âfabritrento, post: 21833, member: 21607â]alternatively we can insert this:
else
part_fs_type=blkid $part | awk 'BEGIN {FS="\""} { print $4 }'| sed -e 's/1/fs/g' |sed -e 's/2/fs/g'|sed -e 's/3/fs/g'|sed -e 's/4/fs/g'
### row patch to use correct partclone.fstype
partclone.${part_fs_type} -c -s $part -O /tmp/pigz1 -N -f 1 2>/tmp/status.fog
partclone.${fstype} -c -s $part -O /tmp/pigz1 -N -f 1 2>/tmp/status.fog
fi
what is the more correct solution?[/quote]iâm testing image upload right now, in some minutes i say to you if patch workedâŠ