Displaying 4 results from an estimated 4 matches for "destination_fil".
Did you mean:
destination_file
2002 Apr 16
2
Can rsync update files in place?
I've just subscribed, but a search of the archive doesn't indicate this
has been handled before...
Is there a way to get rsync to not create a new file while transferring
and then rename it, but to instead update the existing file in place,
i.e. simply write those blocks that have been updated and leave the rest
alone?
That would be ideal for what I wanted rsync for, namely updating
2008 Jul 29
1
can't crop images using ImageMagick
...Here''s my code:
require ''RMagick''
top_square = params[:top_square].to_d
left_square = params[:left_square].to_d
width_square = params[:width_square].to_d
height_square = params[:height_square].to_d
source_file = "#{RAILS_ROOT}/public#{@photo.public_filename}"
destination_file = "#{RAILS_ROOT}/public#{city_photo.public_filename}"
img = Magick::Image.read(source_file).first
img.crop!(left_square, top_square, width_square, height_square)
img.write destination_file
Thanks,
Andy
--~--~---------~--~----~------------~-------~--~----~
You received this message bec...
2020 May 05
3
Custom ISO
Hi All,
I am trying to make a customer ISO. When I run this command:
mkisofs -o $DESTINATION_FILE -b isolinux/isolinux.bin -c boot.cat \
-no-emul-boot -boot-info-table \
-V "$NAME" -boot-load-size 4 -boot-info-table -R -J -v -T \
-eltorito-alt-boot -e images/efiboot.img \
$DESTINATION_DIR
it tells me:
Size of boot image is 4 sectors -> No emulation...
2020 May 06
0
Custom ISO
Thanks for hint. I have changed to this:
genisoimage \
-v \
-J -R \
-V "$NAME" \
-b isolinux/isolinux.bin -no-emul-boot -boot-load-size 4 \
-boot-info-table -eltorito-alt-boot -b images/efiboot.img
-no-emul-boot -boot-load-size 18755 \
-o $DESTINATION_FILE .
it now creates the ISO and is EFI bootable.
However - I have a different issue arise. In normal install or EFI
install (both) it hangs at "Starting dracut initqueue hook..."
Only thing I am changing is the add the boot options for my kickstart
file. So then I tried select the &quo...