=?ISO-8859-1?Q?Flash_8=3A_Filereference_-_Dialog_=22Sp?=   =?ISO-8859-1?Q?eichern_unter=22_crashed_bei_=22gro=DFen_Schrif?=   =?ISO-8859-1?Q?tarten=22?=

Hallo zusammen,
wir verwenden ein Objekt vom Typ filereference, um Dateien
zum Download
anzubieten. Soweit klappt alles wunderbar.
Einzige Ausnahme: Bei einem dt. Windows XP mit "gro�en
Schriftarten"
(Anzeige->Eigenschaften->Darstellung->Schriftgrad:"Gro�e
Schriftarten")
wird der Dialog "Speichern unter" nicht angezeigt und die
Flash-Anwendung st�rzt ab.
Nach bisheriger Recherche ruft filereference einen
Windows-Systemdialog auf.
Hat jemand �hnliche Probleme beobachten k�nnen
oder wei� jemand, wie man
diese Schwierigkeiten beheben oder umgehen kann? Ist das
vielleicht ein
bekanntes Problem? Gibt es einen Hinweis in der
Knowledge-Base von
Macromedia bzw. Microsoft?
Vielen Dank f�r Kommentare.
Gr��e,
Michael

Similar Messages

  • I cant connect itune store since i download the new ISO~what should i do ?, I cant connect itune store since i download the new ISO~what should i do ?

    Please tell me how to do now~~

    Hi SarahHannah,
    If you are having trouble activating iMessage, this article contains relevant troubleshooting steps:
    iOS: Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/ts4268
    Take care,
    - Ari

  • Mail : i lost ISO-8859-1 encodage and other....

    I can't select ISO-8859-1 because i lost in the menu this encodage. I have
    • 4 occidental (ISO latin 1 - windos Latin 1 - Mac OS roman - mac mail)
    • 6japness
    • 8 chiness
    • 3 coreen
    and
    • UTF 8 Only
    I lost all other encodage.... !!!
    All my computer is French language... !!!!!!!
    G5   Mac OS X (10.4.7)   Mail 2.1 (752/752.2)

    When i send email with picture or other attachment
    the endcoding change and windows can't read my email
    sithout chiness or other symbol..
    This is the well-known Chinese in Win Outlook problem. See this note for the explanation and possible fixes:
    http://homepage.mac.com/thgewecke/woutlook.html

  • Big5 to ISO-8859-1

    Hi, I want to convert a big5 chinese character to ISO-8859-1 character (&#xxxxx;)
    Here is my code:
    String record = "���~"; //a big5 string
    System.out.println("BIG5: " + record); //Display ok
    byte[] b = record.getBytes("ISO-8859-1");
    String target = new String(b, "ISO-8859-1");
    System.out.println("Target: " + target);
    But I can't get the ISO-8859-1 code which like &#xxxxx; but gives me ???.
    Please advice.

    ISO-8859-1 DO have chinese characters
    In JSP, when I submit a chinese value in a form, I "ll
    receive this chinese characters in ISO-8859-1
    encodings and get: 好人 (In chinese:
    �n�H)
    And when I put this ISO-8859-1 characters in the value
    field of a form, the html gives me chinese character
    in Big5 correctly.
    I just don't know how to convert ISO-8859-1 to Big5 in
    Java and vice versa.
    Please help.ISO-8859-1 doesn't support chinese characters.
    The reason that you can received chinese characters from a html form was because the charset of that html page was set to BIG-5. When a user makes a request, all request parameters and values will be encoded with the charset of the HTML page.

  • [Solved] how do i build my ISO image with archiso?

    hi all
    i've been following this wiki and it's been going really well (it hasn't gone wrong...). but the wiki page just sort of stops halfway through the configuration bit
    a google search brought me to this page which suggests using the "build.sh" script located in my chroot environment's /tmp/releng/ directory.
    running this script returns the error "build.sh: line 207: syntax error near unexpected token '('
    line 207 of the file reads:
    paste -d"\n" <(sed "s|%ARCH%|i686|g" ${script_path}/aitab.${_iso_type}) \
    i don't really know much about scripts so i can't see what's wrong
    any advice?
    sorry if i've missed a wiki or something n00bish like that. also i'm aware that someone who doesn't know what they're doing shouldn't be attempting archiso but i thought it would be a fun learning experience
    here's the full build.sh in case it is helpful:
    #!/bin/bash
    set -e -u
    iso_name=archlinux
    iso_label="ARCH_$(date +%Y%m)"
    iso_version=$(date +%Y.%m.%d)
    install_dir=arch
    arch=$(uname -m)
    work_dir=work
    out_dir=out
    verbose=""
    script_path=$(readlink -f ${0%/*})
    # Base installation (root-image)
    make_basefs() {
    mkarchiso ${verbose} -w "${work_dir}" -D "${install_dir}" -p "base" create
    mkarchiso ${verbose} -w "${work_dir}" -D "${install_dir}" -p "memtest86+ syslinux mkinitcpio-nfs-utils nbd curl" create
    # Additional packages (root-image)
    make_packages() {
    mkarchiso ${verbose} -w "${work_dir}" -D "${install_dir}" -p "$(grep -v ^# ${script_path}/packages.${arch})" create
    # Copy mkinitcpio archiso hooks (root-image)
    make_setup_mkinitcpio() {
    if [[ ! -e ${work_dir}/build.${FUNCNAME} ]]; then
    local _hook
    for _hook in archiso archiso_shutdown archiso_pxe_common archiso_pxe_nbd archiso_pxe_http archiso_pxe_nfs archiso_loop_mnt; do
    cp /lib/initcpio/hooks/${_hook} ${work_dir}/root-image/lib/initcpio/hooks
    cp /lib/initcpio/install/${_hook} ${work_dir}/root-image/lib/initcpio/install
    done
    cp /lib/initcpio/install/archiso_kms ${work_dir}/root-image/lib/initcpio/install
    cp /lib/initcpio/archiso_shutdown ${work_dir}/root-image/lib/initcpio
    cp /lib/initcpio/archiso_pxe_nbd ${work_dir}/root-image/lib/initcpio
    cp ${script_path}/mkinitcpio.conf ${work_dir}/root-image/etc/mkinitcpio-archiso.conf
    : > ${work_dir}/build.${FUNCNAME}
    fi
    # Prepare ${install_dir}/boot/
    make_boot() {
    if [[ ! -e ${work_dir}/build.${FUNCNAME} ]]; then
    local _src=${work_dir}/root-image
    local _dst_boot=${work_dir}/iso/${install_dir}/boot
    mkdir -p ${_dst_boot}/${arch}
    mkarchroot -n -r "mkinitcpio -c /etc/mkinitcpio-archiso.conf -k /boot/vmlinuz-linux -g /boot/archiso.img" ${_src}
    mv ${_src}/boot/archiso.img ${_dst_boot}/${arch}/archiso.img
    mv ${_src}/boot/vmlinuz-linux ${_dst_boot}/${arch}/vmlinuz
    cp ${_src}/boot/memtest86+/memtest.bin ${_dst_boot}/memtest
    cp ${_src}/usr/share/licenses/common/GPL2/license.txt ${_dst_boot}/memtest.COPYING
    : > ${work_dir}/build.${FUNCNAME}
    fi
    # Prepare /${install_dir}/boot/syslinux
    make_syslinux() {
    if [[ ! -e ${work_dir}/build.${FUNCNAME} ]]; then
    local _src_syslinux=${work_dir}/root-image/usr/lib/syslinux
    local _dst_syslinux=${work_dir}/iso/${install_dir}/boot/syslinux
    mkdir -p ${_dst_syslinux}
    for _cfg in ${script_path}/syslinux/*.cfg; do
    sed "s|%ARCHISO_LABEL%|${iso_label}|g;
    s|%INSTALL_DIR%|${install_dir}|g;
    s|%ARCH%|${arch}|g" ${_cfg} > ${_dst_syslinux}/${_cfg##*/}
    done
    cp ${script_path}/syslinux/splash.png ${_dst_syslinux}
    cp ${_src_syslinux}/*.c32 ${_dst_syslinux}
    cp ${_src_syslinux}/*.com ${_dst_syslinux}
    cp ${_src_syslinux}/*.0 ${_dst_syslinux}
    cp ${_src_syslinux}/memdisk ${_dst_syslinux}
    mkdir -p ${_dst_syslinux}/hdt
    wget -O - http://pciids.sourceforge.net/v2.2/pci.ids | gzip -9 > ${_dst_syslinux}/hdt/pciids.gz
    cat ${work_dir}/root-image/lib/modules/*-ARCH/modules.alias | gzip -9 > ${_dst_syslinux}/hdt/modalias.gz
    : > ${work_dir}/build.${FUNCNAME}
    fi
    # Prepare /isolinux
    make_isolinux() {
    if [[ ! -e ${work_dir}/build.${FUNCNAME} ]]; then
    mkdir -p ${work_dir}/iso/isolinux
    sed "s|%INSTALL_DIR%|${install_dir}|g" ${script_path}/isolinux/isolinux.cfg > ${work_dir}/iso/isolinux/isolinux.cfg
    cp ${work_dir}/root-image/usr/lib/syslinux/isolinux.bin ${work_dir}/iso/isolinux/
    cp ${work_dir}/root-image/usr/lib/syslinux/isohdpfx.bin ${work_dir}/iso/isolinux/
    : > ${work_dir}/build.${FUNCNAME}
    fi
    # Customize installation (root-image)
    # NOTE: mkarchroot should not be executed after this function is executed, otherwise will overwrites some custom files.
    make_customize_root_image() {
    if [[ ! -e ${work_dir}/build.${FUNCNAME} ]]; then
    cp -af ${script_path}/root-image ${work_dir}
    chmod 750 ${work_dir}/root-image/etc/sudoers.d
    chmod 440 ${work_dir}/root-image/etc/sudoers.d/g_wheel
    mkdir -p ${work_dir}/root-image/etc/pacman.d
    wget -O ${work_dir}/root-image/etc/pacman.d/mirrorlist http://www.archlinux.org/mirrorlist/all/
    sed -i "s/#Server/Server/g" ${work_dir}/root-image/etc/pacman.d/mirrorlist
    chroot ${work_dir}/root-image /usr/sbin/locale-gen
    chroot ${work_dir}/root-image /usr/sbin/useradd -m -p "" -g users -G "audio,disk,optical,wheel" arch
    : > ${work_dir}/build.${FUNCNAME}
    fi
    # Split out /lib/modules from root-image (makes more "dual-iso" friendly)
    make_lib_modules() {
    if [[ ! -e ${work_dir}/build.${FUNCNAME} ]]; then
    mv ${work_dir}/root-image/lib/modules ${work_dir}/lib-modules
    : > ${work_dir}/build.${FUNCNAME}
    fi
    # Split out /usr/share from root-image (makes more "dual-iso" friendly)
    make_usr_share() {
    if [[ ! -e ${work_dir}/build.${FUNCNAME} ]]; then
    mv ${work_dir}/root-image/usr/share ${work_dir}/usr-share
    : > ${work_dir}/build.${FUNCNAME}
    fi
    # Make [core] repository, keep "any" pkgs in a separate fs (makes more "dual-iso" friendly)
    make_core_repo() {
    if [[ ! -e ${work_dir}/build.${FUNCNAME} ]]; then
    local _url _urls _pkg_name _cached_pkg _dst _pkgs
    mkdir -p ${work_dir}/repo-core-any
    mkdir -p ${work_dir}/repo-core-${arch}
    pacman -Sy
    _pkgs=$(comm -2 -3 <(pacman -Sql core | sort | sed 's@^@core/@') \
    <(grep -v ^# ${script_path}/core.exclude.${arch} | sort | sed 's@^@core/@'))
    _urls=$(pacman -Sddp ${_pkgs})
    pacman -Swdd --noprogressbar --noconfirm ${_pkgs}
    for _url in ${_urls}; do
    _pkg_name=${_url##*/}
    _cached_pkg=/var/cache/pacman/pkg/${_pkg_name}
    _dst=${work_dir}/repo-core-${arch}/${_pkg_name}
    cp ${_cached_pkg} ${_dst}
    repo-add -q ${work_dir}/repo-core-${arch}/core.db.tar.gz ${_dst}
    if [[ ${_pkg_name} == *any.pkg.tar* ]]; then
    mv ${_dst} ${work_dir}/repo-core-any/${_pkg_name}
    ln -sf ../any/${_pkg_name} ${_dst}
    fi
    done
    : > ${work_dir}/build.${FUNCNAME}
    fi
    # Process aitab
    # args: $1 (core | netinstall)
    make_aitab() {
    local _iso_type=${1}
    if [[ ! -e ${work_dir}/build.${FUNCNAME}_${_iso_type} ]]; then
    sed "s|%ARCH%|${arch}|g" ${script_path}/aitab.${_iso_type} > ${work_dir}/iso/${install_dir}/aitab
    : > ${work_dir}/build.${FUNCNAME}_${_iso_type}
    fi
    # Build all filesystem images specified in aitab (.fs .fs.sfs .sfs)
    make_prepare() {
    mkarchiso ${verbose} -w "${work_dir}" -D "${install_dir}" prepare
    # Build ISO
    # args: $1 (core | netinstall)
    make_iso() {
    local _iso_type=${1}
    mkarchiso ${verbose} -w "${work_dir}" -D "${install_dir}" checksum
    mkarchiso ${verbose} -w "${work_dir}" -D "${install_dir}" -L "${iso_label}" -o "${out_dir}" iso "${iso_name}-${iso_version}-${_iso_type}-${arch}.iso"
    # Build dual-iso images from ${work_dir}/i686/iso and ${work_dir}/x86_64/iso
    # args: $1 (core | netinstall)
    make_dual() {
    local _iso_type=${1}
    if [[ ! -e ${work_dir}/dual/build.${FUNCNAME}_${_iso_type} ]]; then
    if [[ ! -d ${work_dir}/i686/iso || ! -d ${work_dir}/x86_64/iso ]]; then
    echo "ERROR: i686 or x86_64 builds does not exist."
    _usage 1
    fi
    local _src_one _src_two _cfg
    if [[ ${arch} == "i686" ]]; then
    _src_one=${work_dir}/i686/iso
    _src_two=${work_dir}/x86_64/iso
    else
    _src_one=${work_dir}/x86_64/iso
    _src_two=${work_dir}/i686/iso
    fi
    mkdir -p ${work_dir}/dual/iso
    cp -a -l -f ${_src_one} ${work_dir}/dual
    cp -a -l -n ${_src_two} ${work_dir}/dual
    rm -f ${work_dir}/dual/iso/${install_dir}/aitab
    rm -f ${work_dir}/dual/iso/${install_dir}/boot/syslinux/*.cfg
    if [[ ${_iso_type} == "core" ]]; then
    if [[ ! -e ${work_dir}/dual/iso/${install_dir}/any/repo-core-any.sfs ||
    ! -e ${work_dir}/dual/iso/${install_dir}/i686/repo-core-i686.sfs ||
    ! -e ${work_dir}/dual/iso/${install_dir}/x86_64/repo-core-x86_64.sfs ]]; then
    echo "ERROR: core_iso_single build is not found."
    _usage 1
    fi
    else
    rm -f ${work_dir}/dual/iso/${install_dir}/any/repo-core-any.sfs
    rm -f ${work_dir}/dual/iso/${install_dir}/i686/repo-core-i686.sfs
    rm -f ${work_dir}/dual/iso/${install_dir}/x86_64/repo-core-x86_64.sfs
    fi
    paste -d"\n" <(sed "s|%ARCH%|i686|g" ${script_path}/aitab.${_iso_type}) \
    <(sed "s|%ARCH%|x86_64|g" ${script_path}/aitab.${_iso_type}) | uniq > ${work_dir}/dual/iso/${install_dir}/aitab
    for _cfg in ${script_path}/syslinux.dual/*.cfg; do
    sed "s|%ARCHISO_LABEL%|${iso_label}|g;
    s|%INSTALL_DIR%|${install_dir}|g" ${_cfg} > ${work_dir}/dual/iso/${install_dir}/boot/syslinux/${_cfg##*/}
    done
    mkarchiso ${verbose} -w "${work_dir}/dual" -D "${install_dir}" checksum
    mkarchiso ${verbose} -w "${work_dir}/dual" -D "${install_dir}" -L "${iso_label}" -o "${out_dir}" iso "${iso_name}-${iso_version}-${_iso_type}-dual.iso"
    : > ${work_dir}/dual/build.${FUNCNAME}_${_iso_type}
    fi
    purge_single ()
    if [[ -d ${work_dir} ]]; then
    find ${work_dir} -mindepth 1 -maxdepth 1 \
    ! -path ${work_dir}/iso -prune \
    | xargs rm -rf
    fi
    purge_dual ()
    if [[ -d ${work_dir}/dual ]]; then
    find ${work_dir}/dual -mindepth 1 -maxdepth 1 \
    ! -path ${work_dir}/dual/iso -prune \
    | xargs rm -rf
    fi
    clean_single ()
    rm -rf ${work_dir}
    rm -f ${out_dir}/${iso_name}-${iso_version}-*-${arch}.iso
    clean_dual ()
    rm -rf ${work_dir}/dual
    rm -f ${out_dir}/${iso_name}-${iso_version}-*-dual.iso
    make_common_single() {
    make_basefs
    make_packages
    make_setup_mkinitcpio
    make_boot
    make_syslinux
    make_isolinux
    make_customize_root_image
    make_lib_modules
    make_usr_share
    make_aitab $1
    make_prepare $1
    make_iso $1
    _usage ()
    echo "usage ${0} [options] command <command options>"
    echo
    echo " General options:"
    echo " -N <iso_name> Set an iso filename (prefix)"
    echo " Default: ${iso_name}"
    echo " -V <iso_version> Set an iso version (in filename)"
    echo " Default: ${iso_version}"
    echo " -L <iso_label> Set an iso label (disk label)"
    echo " Default: ${iso_label}"
    echo " -D <install_dir> Set an install_dir (directory inside iso)"
    echo " Default: ${install_dir}"
    echo " -w <work_dir> Set the working directory"
    echo " Default: ${work_dir}"
    echo " -o <out_dir> Set the output directory"
    echo " Default: ${out_dir}"
    echo " -v Enable verbose output"
    echo " -h This help message"
    echo
    echo " Commands:"
    echo " build <mode> <type>"
    echo " Build selected .iso by <mode> and <type>"
    echo " purge <mode>"
    echo " Clean working directory except iso/ directory of build <mode>"
    echo " clean <mode>"
    echo " Clean working directory and .iso file in output directory of build <mode>"
    echo
    echo " Command options:"
    echo " <mode> Valid values 'single' or 'dual'"
    echo " <type> Valid values 'netinstall', 'core' or 'all'"
    exit ${1}
    if [[ ${EUID} -ne 0 ]]; then
    echo "This script must be run as root."
    _usage 1
    fi
    while getopts 'N:V:L:D:w:o:vh' arg; do
    case "${arg}" in
    N) iso_name="${OPTARG}" ;;
    V) iso_version="${OPTARG}" ;;
    L) iso_label="${OPTARG}" ;;
    D) install_dir="${OPTARG}" ;;
    w) work_dir="${OPTARG}" ;;
    o) out_dir="${OPTARG}" ;;
    v) verbose="-v" ;;
    h|?) _usage 0 ;;
    _msg_error "Invalid argument '${arg}'" 0
    _usage 1
    esac
    done
    shift $((OPTIND - 1))
    if [[ $# -lt 1 ]]; then
    echo "No command specified"
    _usage 1
    fi
    command_name="${1}"
    if [[ $# -lt 2 ]]; then
    echo "No command mode specified"
    _usage 1
    fi
    command_mode="${2}"
    if [[ ${command_name} == "build" ]]; then
    if [[ $# -lt 3 ]]; then
    echo "No build type specified"
    _usage 1
    fi
    command_type="${3}"
    fi
    if [[ ${command_mode} == "single" ]]; then
    work_dir=${work_dir}/${arch}
    fi
    case "${command_name}" in
    build)
    case "${command_mode}" in
    single)
    case "${command_type}" in
    netinstall)
    make_common_single netinstall
    core)
    make_core_repo
    make_common_single core
    all)
    make_common_single netinstall
    make_core_repo
    make_common_single core
    echo "Invalid build type '${command_type}'"
    _usage 1
    esac
    dual)
    case "${command_type}" in
    netinstall)
    make_dual netinstall
    core)
    make_dual core
    all)
    make_dual netinstall
    make_dual core
    echo "Invalid build type '${command_type}'"
    _usage 1
    esac
    echo "Invalid build mode '${command_mode}'"
    _usage 1
    esac
    purge)
    case "${command_mode}" in
    single)
    purge_single
    dual)
    purge_dual
    echo "Invalid purge mode '${command_mode}'"
    _usage 1
    esac
    clean)
    case "${command_mode}" in
    single)
    clean_single
    dual)
    clean_dual
    echo "Invalid clean mode '${command_mode}'"
    _usage 1
    esac
    echo "Invalid command name '${command_name}'"
    _usage 1
    esac
    Last edited by gav989 (2012-02-12 10:59:11)

    thanks for that, according to this it should be run like
    /path/to/build.sh build single netinstall
    from inside the chroot
    posting this for my own reference and in case it helps others, will mark as solved
    thanks again for your help
    Last edited by gav989 (2012-02-12 10:58:04)

  • How to create one ISO file large than 2G

    hi,
    here when I create one ISO with 3G(larger than 2G) on solaris 10 machine, I met below error:
    mkisofs: File too large. cannot fwrite 32768*1
    Anyone has suggestion for this problem? How to create one ISO files larger than 2G?
    See the detail logs information:
    <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
    mkisofs -o my.iso -A "Software DVD" -D -L -P "Study "-p CBC/XLE -r -T -V R50 -v iso
    mkisofs: The option '-L' is reserved by POSIX.1-2001.
    mkisofs: The option '-L' means 'follow all symbolic links'.
    mkisofs: Mkisofs-2.02 will introduce POSIX semantics for '-L'.
    mkisofs: Use -allow-leading-dots in future to get old mkisofs behavior.
    mkisofs: The option '-P' is reserved by POSIX.1-2001.
    mkisofs: The option '-P' means 'do not follow symbolic links'.
    mkisofs: Mkisofs-2.02 will introduce POSIX semantics for '-P'.
    mkisofs: Use -publisher in future to get old mkisofs behavior.
    Warning: creating filesystem that does not conform to ISO-9660.
    mkisofs 2.01 (sparc-sun-solaris2.10)
    Scanning iso
    Scanning iso/rac_stage3
    Using RAC_S000 for /rac_stage2 (rac_stage1)
    Using RAC_S001 for /rac_stage1 (rac_stage3)
    Using INSTA000.1;1 for ..
    Writing: The File(s) Start Block 48
    0.42% done, estimate finish Thu Feb 1 16:12:35 2007
    0.84% done, estimate finish Thu Feb 1 16:12:36 2007
    1.26% done, estimate finish Thu Feb 1 16:12:36 2007
    1.69% done, estimate finish Thu Feb 1 16:12:36 2007
    2.11% done, estimate finish Thu Feb 1 16:12:36 2007

    87.65% done, estimate finish Thu Feb 1 16:14:54 2007
    88.07% done, estimate finish Thu Feb 1 16:14:54 2007
    mkisofs: File too large. cannot fwrite 32768*1
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Thanks!

    does it matter "copy protection" ? for the problem that i have?
    my computer is alwyes get stuck while i trying to made a dvd or image
    i made few disks wite menu in the past & i had not problems at all

  • 2013.03-4 archboot "2k13-R1" ISO hybrid images released

    Hi Arch community,
    Arch Linux (archboot creation tool) 2013.03-4, "2k13-R1" has been released.
    Homepage and for more information on archboot:
    http://wiki.archlinux.org/index.php/Archboot
    Summary:
    - major update/cleanup on all components
    Hybrid image files and torrents are provided, which include
    i686 and/or x86_64 core repository. Please check md5sum before using it.
    Hybrid image file is a standard CD-burnable image and also a raw disk image.
        - Can be burned to CD(RW) media using most CD-burning utilities.
        - Can be raw-written to a drive using 'dd' or similar utilities.
          This method is intended for use with USB thumb drives.
    Please get it from your favorite arch linux mirror:
    https://downloads.archlinux.de/iso/archboot/2013.03/
    <yourmirror>/iso/archboot/2013.03/
    /boot for PXE/Rescue files are provided here:
    https://downloads.archlinux.de/iso/arch … 13.03/boot
    <yourmirror>/iso/archboot/2013.03/boot
    Changelog:
    GENERAL:
    - kernel 3.8.4 / LTS kernel 3.0.70
    - pacman 4.0.3 usage
    - RAM recommendations: 768 MB
    - major update/cleanup on all components
    Kernel changes:
    - bump to latest 3.8.x series and bump lts to latest 3.0.x series
    Environment changes:
    - updated pacman mirrorlist
    - replaced netcfg with netctl
    - removed ide-legacy hook
    - replaced arch_virtio, arch_fw with block hook
    - replaced usbinput with keyboard hook
    - replaced dbus-core with dbus
    - bump to latest mkinitcpio code
    - bump syslinux from 4.x to 5.0
    - removed bind and dnsutils
    - blacklist floppy module during boot
    setup changes:
    - replaced netcfg network setup with netctl
    - always install netctl instead of netcfg
    - replaced gummiboot-efi with gummiboot
    - removed initscripts compat mode
    - always install systemd-sysvcompat
    - updated gummiboot install routine
    - updated refind install routine
    - removed persistent soundcard and network hack,
      systemd handles everything now.
    - no need to add hostname to /etc/hosts anymore
    quickinst changes:
    - removed initscripts compat mode
    - removed rc.conf hint
    - removed double check on ntfs
    Further documentation can be found on-disk and on the wiki.
    Thanks to all beta testers, which reported bugs during this development period.
    Have fun!
    greetings
    tpowa
    Last edited by tpowa (2013-03-23 19:22:43)

    openfred wrote:- When booting install media with LTS kernel, then it may be good to install LTS kernel ?
      latest kernel (3.8) were installed instead.
    Fixed in archboot git syslinux changed boot parameter names.
    openfred wrote:- When installing grub (BIOS/grub-bios), I had only the choice between /dev/sda (target drive) and /dev/sdb (USB boot drive).
      Would it be possible to be presented the option to install grub in a partition (ex: /dev/sdX) ?
      For testing reason, I installed Arch with archboot on another partition, as I am chainloading from another "main" partition.
    For grub it is recommended to use a grub boot partition.
    You can use syslinux for installing to a partition.
    openfred wrote:- After the installation, network is not working, AND /etc/netctl is empty...
      So I wonder if it is normal, as this new version of Archboot seems to provide...netctl :-)
    Please tell me what you have done, on my virtual machine all works as it should.
    You need to setup your connection with installer and choose autoconfiguration yes on system configuration.
    Last edited by tpowa (2013-03-25 08:33:47)

  • Is there a way to apply noise reduction based on ISO value?

    I shoot a lot of sports using auto ISO which means I get hundreds of images from a day with a variety of different ISO values, including all sorts of intermediate values (like ISO 280, for example).  There are times when I'd like to apply LR noise reduction across the whole batch of images, but I'd like to apply it based on the ISO value of the image.  For example at ISO 1250 and above, I want a particular NR Luminance value.  From 640 to 1250, I want a different value.  From 400-640, a different value.  I know you can define some things at import time based on ISO, but that doesn't seem practical when the ISO value can be nearly anything as it would take hundreds of import profiles.
    So, any ideas how to apply NR based on the ISO across a batch of images?

    jfriend0 wrote:
    How do "defaults" interact with a preset applied upon import?  I shoot RAW and apply a preset upon import for every import I do.  If I apply a preset upon import will it override the "default" anyway?  If that's the case, then defaults are of no use to me.
    Yes - Lightroom presets are absolute, but unlike the default settings, presets don't have to specify all the settings. If a preset setting is specified, it will blindly overwrite the previous setting, if not specified then the previous value will remain unaltered.
    DevAdjust supports relative presets:  final-value = present-value +/- relative-preset-value
    Rob

  • Creating an ISO file from FCP

    I have been asked something for the first time ever...to provide a TOS format DVD.  I have received this befire..but never created. What export steps do I take to make the DVD?
    Thanks

    You make an regular dvd using dvdstudiopro.  Once you do the build you need to create an iso image.
    Here's a link I found with a simple google for "creating an iso file on a mac"
    http://club.myce.com/f59/create-iso-image-mac-os-x-using-built-disk-utility-app- 200501/

  • Disk Utility - create ISO Data DVD image for burning?

    Which are the exact options in Disk Utility that I need to select, in order to create an ISO DVD Data image that will be readable by PCs and Macs alike?
    I have looked on the web and in the help but am none the wiser due to lack of an explanation of the options
    Format: Mac OS Extended (journaled),...,MS-DOS (FAT)
    Partitions:Single partition - Apple Partition Map,...,Single Partition CD/DVD with ISO data
    If you cannot point me in the direction of some decent documentation, please just tell me which options I need to select to create an ISO Data DVD
    Thanks

    Try this link.
    Basically, you can drag a folder into the list on the left. Then, with the folder selected, click New Disk Image from the toolbar at the top (not sure of the exact wording, but it's something along those lines). Make sure to select ISO from the pop-up menu.
    Also try this article to convert a DMG to ISO.

  • Hyper-V 2012 R2 Gen 2 VM failed to boot from SCSI DVD drive using ISO image file

    Hello:
    I'm having a problem trying to install Windows 8.1 Professional on a new Gen 2 VM. I created a new Gen 2 VM using Hyper-V Manager running on Windows Server 2012 R2 and then told it to boot off DVD drive which pionts to the ISO file that I copied to the E:
    drive.  The ISO file mounted in the virtual DVD drive is the Windows 8.1 Professional x64 VL ISO that I downloaded off of TechNet. When I start up the VM to install the OS, I receive this error:
    "Synthetic SCSI Controller (Instance ID 7512B228-F7BC-4DD8-B4F4-72A5B042C2E9): Failed to Power on with Error 'The file or directory is corrupted and unreadable.' (0x80070570). (Virtual machine ID 4195A398-3531-4A34-8588-D1FC3F3DD2D4)"
    Basically the SCSI controller can't read the ISO file. However, the IDE controller on a Gen1 VM can read and boot from the ISO just fine. Has anyone else run into this problem? Is there a way to resolve this issue and allow me to boot the ISO from a SCSI
    controller?
    Or is there a bug with the Hyper-V SCSI controller that makes it unable to boot from ISOs properly?
    -JP

    Hi JP,
    In addition , please try  :
    1. copy the ISO to an not shared local folder or drive
    2. uncheck the   "enable secure boot" in VM settings .
    If the issue still persists , maybe you can try to down load a new ISO file then try to boot again .
    Hope it helps
    Best Regards
    Elton Ji 
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Unable to install Generation 2 VM using ISO on win Server 2012 R2

    I'm having a problem trying to build a new Generation 2 VM for Windows 8.1 Enterprise. I create a new Gen2 VM and then tell it to install the OS off of a virtual DVD drive attached to the SCSI controller. The ISO file mounted in the virtual DVD drive is
    the Windows 8.1 Enterprise x64 evaluation ISO that I downloaded off of TechNet. When I start up the VM to install the OS, I receive this error:
    "Synthetic SCSI controller [...] Failed to Power on with Error: 'The version does not support this version of the file format'".
    Basically the SCSI controller can't read the ISO file. However, the IDE controller on a Gen1 VM can read and boot from the ISO just fine. Has anyone else run into this problem? Is there a way to resolve this issue and allow me to boot the ISO from a
    SCSI controller?
    Or is there a bug with the client Hyper-V SCSI controller that makes it unable to boot from ISOs properly? Has anyone experienced a similar issue on the server side?

    Did you check your VM boot order?
    Also, since this forum is under SCVMM - are you attempting to use SCVMM to create this Generation2 VM and then boot it from the ISO?  If so, you may have to use the Hyper-V Manger to do that, as the boot order could not be changed with SCVMM the last
    I checked.
    Brian Ehlert
    http://ITProctology.blogspot.com
    Learn. Apply. Repeat.
    Disclaimer: Attempting change is of your own free will.

  • Hyper-v cannot boot Gen2 guest from Windows 2012 R2 or Windows 8.1 x64 ISO - file format not supported, Gen1 works fine

    I am new to Gen2 Hyper-V and so far I simply can't use it, because I am unable to install any (supported) guest OS from an ISO ...
    So far I tried that on:
    1. my HP Z230/i4770 workstation (Secure Boot disabled) host running Windows 8.1 Pro x64 (with Hyper-V feature enabled), can't boot any VM with supported OS ISO.
    2. my home desktop/i3770K (secure Boot enabled) host running Windows 8.1 Pro x64, same result, error during VM boot from ISO, quoted below.
    Synthetic SCSI controller (instance blah blah) Failed to Power on with Error 'The version does not support this version of file format'
    Gen1 guests of course work perfectly fine with those ISOs, because emulated DVD IDE picks up the official Enterprise Evaluation ISO of either Windows Server 2012 R2 or Windows 8.1 x64 Enterprise, perfectly fine and all works OK in Legacy boot mode.
    When I create a new guest and select Gen2, then no matter if I check or uncheck the Secure Boot in virtual Boot Order options for the guest (while setting the SCSI DVD at top of course), it simply doesn't work, always same error. I tried first connecting
    to VM to see if it prompts for key press, but it doesn't, the error is instant on Power on when (supported) ISO image is selected to be booted.
    I verified that both of official Enterprise Evaluation ISO's of either WS2012r2 and W8.1x64 are bootable in both the UEFI mode (Secure Boot enabled) and Legacy BIOS mode using a physical computer.
    What am I missing here???

    FYI, above is wrong! it's not about linking ISO to virtual DVD or selecting "Install OS later", it's all about the location of the ISO file and share permissions on parent folder!
    I was actually suspecting several issues, but haven't had time to test it, was thinking about issues like assigning (or not) some of initial settings during Gen2 VM creation, e.g.:
    -Network connection through virtual switch or Not Connected (make no different if assigned or not)
    -Memory above 4096MB (makes no difference if < or > 4096MB)
    -ISO file location (makes huge difference!)
    The ISO file CANNOT be placed on network share OR in shared folder on same local drive as the VHDX file (works fine if parent folder is not shared).
    I can now replicate the issue easily every time and it always fails with file format unsupported message whenever I have the ISO file located either on remote network share, or (fails the same way too) when I have the ISO file placed locally (on host drive)
    when simply a parent folder is shared... must be some permissions issue... and a pretty dumb one considering that in production environments nearly everything is placed on remote file servers ...
    ... so the moral of the story is, if you want to install Gen2 VM in win8/2012 hyper-V then you must copy the ISO file to Hyper-V host drive AND make sure the parent folder is not shared. works every time now! :)

  • Bootable ISO not recognized by Hyper-V on Win 8.1 Enterprise 64-bit - VMware Workstation understands perfectly

    I activated Hyper-V on my fully patched Windows 8.1 Enterprise 64-bit host PC and tried to create a Windows Server 2008 R2 virtual machine that should have installed from the bootable ISO (the one I downloaded from my MSDN subscription) for Windows Server
    2008 R2, but when the VM starts, it goes through its boot device progression and fails to recognize the ISO as bootable.  No amount of coaxing will convince Hyper-V to use the bootable ISO to install the operating system in the VM.
    To see if there was an issue with the ISO, I removed Hyper-V from the host (because, as I discovered, VMware refuses to run when Hyper-V is present) and then fired up VMware Workstation 10, pointed it to the exact same ISO and it created the VM from that
    ISO just fine.  That proves there is nothing wrong with the ISO image.
    I'm new to Hyper-V since I've been using VMware Workstation for quite some time and figured it was high time I began to make the switch to Hyper-V (since I'm paying for it anyway).
    What setting(s) do I need to adjust to insure that Hyper-V sees the bootable ISO properly so it will install that OS in the virtual machine?
    If you think development is tough now, think how hard it was using punched cards :-)

    I followed the Hyper-V wizard instructions to the letter, including telling it the full path to where the ISO I wanted to use in creating my very first VM is located.  I assume (perhaps incorrectly) that the Hyper-V wizard mounted that ISO on whatever
    device it deemed appropriate, hopefully one that is in the boot device sequence.  It all was very straight-forward and easy to understand; however, it doesn't work.  
    The corresponding wizard in VMware Workstation 10 fully understands the ISO and proceeds with its "Easy Install" process without anything else except the license key.
    I didn't capture a video of the failed Hyper-V boot process, but to summarize, it went through its "progression" of devices and simply never found the ISO that I had previously designated.
    Despite its seeming simplicity, the Hyper-V creation wizard doesn't perform what it is instructed to do while the equivalent VMware Workstation 10 wizard works flawlessly.
    If you think development is tough now, think how hard it was using punched cards :-)

  • How to convert Windows 8.1 .exe file to ISO image for installation via Boot Camp?

    I have a late 2013 retina display MacBook Pro and want to use Boot Camp to run one piece of software that is run exclusively on Windows operating systems.  I have a Windows 8.1 download from MS that is an .exe file, and I need to convert it (I believe) to an ISO image on a flash drive.  How do I convert the .exe file to an ISO image?

    If you want to use Mac OS X at the same time as Windows, run one of these:
    VMWare Fusion
    Parallels
    Virtual Box (Open Source)
    If you are willing to alternate Boot Windows -OR- Mac OS X, all you need is Bootcamp Assistant (and your Windows installer, of course.)
    >>NB In any case, do not allow Windows to directly modify the Partition Map or change the size of any Partition. That will wipe out the Partition Map, and Mac OS X. Windows is not a pleasant guest.

Maybe you are looking for