Where are the kernel-headers?

I'm trying to compile a gamepad driver but I don't know what directory to put into the makefile for the KERNEL_DIR section.  The guide I'm following is for Ubuntu and it has it in /usr/src but I can't seem to find a "kernel-headers" file.
Thanks,
Nathan

Make sure that you have the kernel-headers package installed. Then you'll find them in /usr/src/linux-2.6.24-ARCH.

Similar Messages

  • Where are the docking headers in Premiere Elements 13?

    I've just purchased Adobe Premiere Elements 13.  I'm using a dual monitor arrangement on my three-year old iMac.
    In earlier versions of Premiere Elements it was possible, using docking headers, to arrange screen components and windows to my own preferred layout and then save it.  Next time I started Premiere, the screen layout would appear as per my personal layout.
    I've not been able to find that facility on the latest version of PE.  A couple of components can be rearranged, but not many, it seems, and even those are likely to disappear too easily, especially when using a dual monitor.  Certainly it seems necessary to rearrange the entire layout manually whenever I restart PE.
    Am I missing something?  Is there a way to fix the screen layout as I want it for as long as I want it?
    My thanks if you are able to help.
    Ken

    Ken
    It is what it is. This is an old story.
    Premiere Elements 11, 12, and 13 are significantly different from version earlier than 11 with regard to dual monitor feature.
    http://atr935.blogspot.com/2013/04/pe11-dual-monitor-workflow-concerns.html
    Loss of memory of dual monitor set up after the save close of the project is part of the matter.
    Also see
    Re: PE11 Dual Monitor Workspace Concerns
    Originally written about in Premiere Elements 11 Daily Discoveries at another forum.
    Premiere Elements 11 Daily Discoveries - Page 2 - Elements Village
    ATR

  • Where are the page headers?

    For some reason, I have lost the information that appears at the top of each page.  Does anyone have an idea what happened, and what can be done about it.It's hard to work up pictures without this material.  This may seem like an easy question but it's got me in a tizzy---again.  Thanks to whomever.

    http://www.johnrellis.com/psedbtool/photoshop-elements-faq.htm#_Setting_the_Windows

  • [solved] building the kernel headers for custom kernels

    well, ive been building several different kernels for my laptop, so that i can test stuff. but ive got a problem with the kernel headers.
    ive mirrored the arch kernel's PKGBUILD and modified some naming to get a custom kernel. but when i try to build a custmo module, it complains the headers are broken. (example, vbox_build_module).
    im pasting the pkgbuild here for future reference...if someone sees something thats plain wrong, please say so.
    thanks
    # $Id: PKGBUILD 60382 2009-12-04 15:31:11Z tpowa $
    # Maintainer: Tobias Powalowski <[email protected]>
    # Maintainer: Thomas Baechler <[email protected]>
    pkgbase="kernel26"
    #pkgname=('kernel26' 'kernel26-firmware' 'kernel26-headers') # Build stock -ARCH kernel
    pkgname=('kernel26-git' 'kernel26-git-headers') # Build kernel with a different name
    _kernelname=${pkgname#kernel26}
    pkgver=2.6.34
    pkgrel=1
    _patchname=""
    _branch="linux-2.6"
    _gittag="v2.6.34-rc3"
    #_gittag="origin"
    arch=(i686 x86_64)
    license=('GPL2')
    groups=('base')
    url="http://www.kernel.org"
    source=(config
    # standard config files for mkinitcpio ramdisk
    kernel26.preset
    ${_patchname})
    build() {
    cd ${srcdir}/$_branch
    msg "Fetching branch ${_branch}"
    ## FOR BISECT, Comment these lines
    git reset --hard
    git clean -d -f
    git fetch
    msg "Cheking out tag ${_gittag}"
    git checkout $_gittag
    ### a patch
    if [ "${_patchname}" != "" ]; then
    patch -Np1 -i ${srcdir}/$_patchname || return 1
    fi
    # if [ "$CARCH" = "x86_64" ]; then
    cat ../config.x86_64 >./.config
    # else
    cat ../config >./.config
    # fi
    if [ "${_kernelname}" != "" ]; then
    sed -i "s|CONFIG_LOCALVERSION=.*|CONFIG_LOCALVERSION=\"${_kernelname}\"|g" ./.config
    fi
    # get kernel version
    make prepare
    # load configuration
    # Configure the kernel. Replace the line below with one of your choice.
    make menuconfig # CLI menu for configuration
    #make xconfig # X-based configuration
    #make oldconfig # using old config from previous kernel version
    # ... or manually edit .config
    # stop here
    # this is useful to configure the kernel
    #msg "Stopping build"
    #return 1
    yes "" | make config
    # build!
    make bzImage modules || return 1
    package_kernel26-git() {
    pkgdesc="The Linux Kernel and modules"
    backup=(etc/mkinitcpio.d/${pkgname}.preset)
    depends=('coreutils' 'kernel26-firmware>=2.6.32' 'module-init-tools' 'mkinitcpio>=0.5.20')
    # pwc, ieee80211 and hostap-driver26 modules are included in kernel26 now
    # nforce package support was abandoned by nvidia, kernel modules should cover everything now.
    # kernel24 support is dropped since glibc24
    replaces=('kernel24' 'kernel24-scsi' 'kernel26-scsi'
    'alsa-driver' 'ieee80211' 'hostap-driver26'
    'pwc' 'nforce' 'squashfs' 'unionfs' 'ivtv'
    'zd1211' 'kvm-modules' 'iwlwifi' 'rt2x00-cvs'
    'gspcav1' 'atl2' 'wlan-ng26' 'rt2500')
    install=kernel26.install
    optdepends=('crda: to set the correct wireless channels of your country')
    KARCH=x86
    cd ${srcdir}/$_branch
    _kernver="$(make kernelrelease)"
    mkdir -p ${pkgdir}/{lib/modules,boot}
    make INSTALL_MOD_PATH=${pkgdir} modules_install || return 1
    cp System.map ${pkgdir}/boot/System.map26${_kernelname}
    cp arch/$KARCH/boot/bzImage ${pkgdir}/boot/vmlinuz26${_kernelname}
    # # add vmlinux
    install -m644 -D vmlinux ${pkgdir}/usr/src/linux-${_kernver}/vmlinux
    # install fallback mkinitcpio.conf file and preset file for kernel
    install -m644 -D ${srcdir}/kernel26.preset ${pkgdir}/etc/mkinitcpio.d/${pkgname}.preset || return 1
    # set correct depmod command for install
    sed \
    -e "s/KERNEL_NAME=.*/KERNEL_NAME=${_kernelname}/g" \
    -e "s/KERNEL_VERSION=.*/KERNEL_VERSION=${_kernver}/g" \
    -i $startdir/kernel26.install
    sed \
    -e "s|source .*|source /etc/mkinitcpio.d/kernel26${_kernelname}.kver|g" \
    -e "s|default_image=.*|default_image=\"/boot/${pkgname}.img\"|g" \
    -e "s|fallback_image=.*|fallback_image=\"/boot/${pkgname}-fallback.img\"|g" \
    -i ${pkgdir}/etc/mkinitcpio.d/${pkgname}.preset
    echo -e "# DO NOT EDIT THIS FILE\nALL_kver='${_kernver}'" > ${pkgdir}/etc/mkinitcpio.d/${pkgname}.kver
    # remove build and source links
    rm -f ${pkgdir}/lib/modules/${_kernver}/{source,build}
    # remove the firmware
    rm -rf ${pkgdir}/lib/firmware
    package_kernel26-git-headers() {
    pkgdesc="Header files and scripts for building modules for kernel26"
    mkdir -p ${pkgdir}/lib/modules/${_kernver}
    cd ${pkgdir}/lib/modules/${_kernver}
    ln -sf ../../../usr/src/linux-${_kernver} build
    cd ${srcdir}/$_branch
    install -D -m644 Makefile \
    ${pkgdir}/usr/src/linux-${_kernver}/Makefile
    install -D -m644 kernel/Makefile \
    ${pkgdir}/usr/src/linux-${_kernver}/kernel/Makefile
    install -D -m644 .config \
    ${pkgdir}/usr/src/linux-${_kernver}/.config
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/include
    for i in acpi asm-{generic,x86} config linux math-emu media net pcmcia scsi sound trace video; do
    cp -a include/$i ${pkgdir}/usr/src/linux-${_kernver}/include/
    done
    # copy arch includes for external modules
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/arch/x86
    cp -a arch/x86/include ${pkgdir}/usr/src/linux-${_kernver}/arch/x86/
    # copy files necessary for later builds, like nvidia and vmware
    cp Module.symvers ${pkgdir}/usr/src/linux-${_kernver}
    cp -a scripts ${pkgdir}/usr/src/linux-${_kernver}
    # fix permissions on scripts dir
    chmod og-w -R ${pkgdir}/usr/src/linux-${_kernver}/scripts
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/.tmp_versions
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/arch/$KARCH/kernel
    cp arch/$KARCH/Makefile ${pkgdir}/usr/src/linux-${_kernver}/arch/$KARCH/
    if [ "$CARCH" = "i686" ]; then
    cp arch/$KARCH/Makefile_32.cpu ${pkgdir}/usr/src/linux-${_kernver}/arch/$KARCH/
    fi
    cp arch/$KARCH/kernel/asm-offsets.s ${pkgdir}/usr/src/linux-${_kernver}/arch/$KARCH/kernel/
    # add headers for lirc package
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/video
    cp drivers/media/video/*.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/video/
    for i in bt8xx cpia2 cx25840 cx88 em28xx et61x251 pwc saa7134 sn9c102 usbvideo zc0301; do
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/video/$i
    cp -a drivers/media/video/$i/*.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/video/$i
    done
    # add docbook makefile
    install -D -m644 Documentation/DocBook/Makefile \
    ${pkgdir}/usr/src/linux-${_kernver}/Documentation/DocBook/Makefile
    # add dm headers
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/drivers/md
    cp drivers/md/*.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/md
    # add inotify.h
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/include/linux
    cp include/linux/inotify.h ${pkgdir}/usr/src/linux-${_kernver}/include/linux/
    # add wireless headers
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/net/mac80211/
    cp net/mac80211/*.h ${pkgdir}/usr/src/linux-${_kernver}/net/mac80211/
    # add dvb headers for external modules
    # in reference to:
    # http://bugs.archlinux.org/task/9912
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/dvb-core
    cp drivers/media/dvb/dvb-core/*.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/dvb-core/
    # add dvb headers for external modules
    # in reference to:
    # http://bugs.archlinux.org/task/11194
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/include/config/dvb/
    cp include/config/dvb/*.h ${pkgdir}/usr/src/linux-${_kernver}/include/config/dvb/
    # add dvb headers for http://mcentral.de/hg/~mrec/em28xx-new
    # in reference to:
    # http://bugs.archlinux.org/task/13146
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/frontends/
    cp drivers/media/dvb/frontends/lgdt330x.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/frontends/
    cp drivers/media/video/msp3400-driver.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/frontends/
    # add xfs and shmem for aufs building
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/fs/xfs
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/mm
    cp fs/xfs/xfs_sb.h ${pkgdir}/usr/src/linux-${_kernver}/fs/xfs/xfs_sb.h
    # add headers vor virtualbox
    # in reference to:
    # http://bugs.archlinux.org/task/14568
    cp -a include/drm $pkgdir/usr/src/linux-${_kernver}/include/
    # add headers for broadcom wl
    # in reference to:
    # http://bugs.archlinux.org/task/14568
    cp -a include/trace $pkgdir/usr/src/linux-${_kernver}/include/
    # copy in Kconfig files
    for i in `find . -name "Kconfig*"`; do
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/`echo $i | sed 's|/Kconfig.*||'`
    cp $i ${pkgdir}/usr/src/linux-${_kernver}/$i
    done
    cd ${pkgdir}/usr/src/linux-${_kernver}/include && ln -s asm-$KARCH asm
    # add header for aufs2-util
    cp -a ${srcdir}/$_branch/include/asm-generic/bitsperlong.h ${pkgdir}/usr/src/linux-${_kernver}/include/asm/
    chown -R root.root ${pkgdir}/usr/src/linux-${_kernver}
    find ${pkgdir}/usr/src/linux-${_kernver} -type d -exec chmod 755 {} \;
    # remove unneeded architectures
    rm -rf ${pkgdir}/usr/src/linux-${_kernver}/arch/{alpha,arm,arm26,avr32,blackfin,cris,frv,h8300,ia64,m32r,m68k,m68knommu,mips,microblaze,mn10300,parisc,powerpc,ppc,s390,sh,sh64,sparc,sparc64,um,v850,xtensa}
    package_kernel26-firmware() {
    pkgdesc="The included firmware files of the Linux Kernel"
    groups=('base')
    cd ${srcdir}/$_branch
    make firmware || return 1
    make INSTALL_MOD_PATH=${pkgdir} firmware_install || return 1
    Last edited by eldragon (2010-04-04 14:58:16)

    ngoonee wrote:
    Check out this line
    for i in acpi asm-{generic,x86} config linux math-emu media net pcmcia scsi sound trace video; do
    for anything that might be missing. The error message when compiling would give you more of a clue. Off-hand, you may need to add 'generated', as I recall I needed that when the kernel moved to 2.6.33.
    Problem with vbox_build_module after Kernel update.
    Would you care to elaborate for us less versed in "Linux Geek" skills?
    Thanks.......
    [root@Arch2009p2 jeff]# vbox_build_module
    Building vboxdrv for Linux 2.6.33-ARCH
    make[1]: Entering directory `/opt/VirtualBox/src/vboxdrv'
    for f in . linux r0drv r0drv/generic r0drv/linux VBox common/err common/string common/log generic math/gcc; \
    do rm -f $f/*.o $f/.*.cmd $f/.*.flags; done
    rm -rf .vboxdrv* .tmp_ver* vboxdrv.* Module.symvers Modules.symvers modules.order
    make[1]: Leaving directory `/opt/VirtualBox/src/vboxdrv'
    make[1]: Entering directory `/opt/VirtualBox/src/vboxnetflt'
    for f in . linux r0drv r0drv/linux VBox common/err common/string common/log generic math/gcc; \
    do rm -f $f/*.o $f/.*.cmd $f/.*.flags; done
    rm -rf .vboxnetflt* .tmp_ver* vboxnetflt.* Modules.symvers modules.order
    make[1]: Leaving directory `/opt/VirtualBox/src/vboxnetflt'
    make[1]: Entering directory `/opt/VirtualBox/src/vboxnetadp'
    for f in . linux r0drv r0drv/linux VBox common/err common/string common/log generic math/gcc; \
    do rm -f $f/*.o $f/.*.cmd $f/.*.flags; done
    rm -rf .vboxnetadp* .tmp_ver* vboxnetadp.* Modules.symvers modules.order
    make[1]: Leaving directory `/opt/VirtualBox/src/vboxnetadp'
    rm -f vboxdrv.ko vboxnetflt.ko vboxnetadp.ko
    *** Building 'vboxdrv' module ***
    make[1]: Entering directory `/opt/VirtualBox/src/vboxdrv'
    make KBUILD_VERBOSE= -C /lib/modules/2.6.33-ARCH/build SUBDIRS=/opt/VirtualBox/src/vboxdrv SRCROOT=/opt/VirtualBox/src/vboxdrv modules
    make[2]: Entering directory `/usr/src/linux-2.6.33-ARCH'
    CC [M] /opt/VirtualBox/src/vboxdrv/linux/SUPDrv-linux.o
    In file included from /opt/VirtualBox/src/vboxdrv/include/VBox/types.h:34,
    from /opt/VirtualBox/src/vboxdrv/linux/../SUPDrvInternal.h:39,
    from /opt/VirtualBox/src/vboxdrv/linux/SUPDrv-linux.c:37:
    /opt/VirtualBox/src/vboxdrv/include/iprt/types.h:100:30: error: linux/autoconf.h: No such file or directory
    make[3]: *** [/opt/VirtualBox/src/vboxdrv/linux/SUPDrv-linux.o] Error 1
    make[2]: *** [_module_/opt/VirtualBox/src/vboxdrv] Error 2
    make[2]: Leaving directory `/usr/src/linux-2.6.33-ARCH'
    make[1]: *** [vboxdrv] Error 2
    make[1]: Leaving directory `/opt/VirtualBox/src/vboxdrv'
    make: *** [all] Error 2

  • Where is the kernel documentation?

    I noticed that the kernel26 package contains the kernel and the source too, but where is the kernel documentation?
    i found some pages on the Wiki referring to /usr/src/linux-2.6.16-ARCH/Documentation ...
    but i dont have the Documentation directory, i searched for a kernel documentation package...didn't find any...

    Arch doesn't include the documentation in the kernel package - those wiki references are incorrect. I expect a quick google would find them online somewhere for you, or you could always download the complete source tarball from kernel.org.

  • Where are the diagnostic reports, or why aren't there any?

    Hello
    I understand that under mavericks, diagnostic reports are supposed to be found either in
    /Library/Logs/DiagnosticReports/ (System Diagnostic Reports),
    or in 
    ~/Library/Logs/DiagnosticReports (User Diagnostic Reports).
    Unfortunately, even after a number of crashes, they aren't. While in my case, the system DiagnosticReports folder exists, but contains nothing but powerstats, in the user library, not even the folder is there.
    So, either they are elsewhere, or they aren't being generated. In the first case, my question would be: Where are the diagnostic reports? In the latter, it would be: Why aren't there any (despite the system crashes)?
    (A similar question is to be found here: https://discussions.apple.com/message/24773940#24773940 , but ended with an open question. I'm starting a new thread, because this old one is marked as answered.)
    Thanks a lot.

    These are logs to help if a program crashes, or has other issues.
    If there are no issues, no logs are produced.
    See: http://support.apple.com/kb/ht4063
    Diagnostic and usage reports may include the following information:
    Details about application or system not responding, application unexpectedly quitting, or kernel panics
    Information about events on your computer (for example, whether a certain function, such as waking your computer, was successful or not)
    Usage information (for example, data about how you use Apple and third-party software, hardware, and services)
    Here's an example of one of my DiagnosticLogs:
    Process:         Preview [799]
    Path:            /Applications/Preview.app/Contents/MacOS/Preview
    Identifier:      com.apple.Preview
    Version:         7.0 (826)
    Build Info:      Preview-826000000000000~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [159]
    Responsible:     Preview [799]
    User ID:         501
    Date/Time:       2014-02-13 20:34:49.464 -0500
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  1B59A7FC-F3E6-021D-3D42-C1AE03E74EA3
    Sleep/Wake UUID: 465C3455-1DE9-4244-9DFC-41A34BC596F5
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayM objectAtIndex:]: index 0 beyond bounds for empty array'
    terminating with uncaught exception of type NSException
    abort() called

  • Where are the drivers for HP LaserJet 5P for Windows 8.1 (64bit)?

    Had been using HP LaserJet 5p printer with HP LaserJet 5p printer driver, but had printer disconnect for a few months due to not have black toner.  Now I want to use the printer and my control panel does not show HP Laser 5p printer for my tablet but shows it for my laptop.   I can not find the driver on the HP support list and the support list does not recognize  HP LaserJet 5p.   
    Where are the drivers for HP LaserJet 5p for windows 8.1 (64bit)??????

    Hi,
    Basic print drivers are available for the HP Laerjet 5P via Windows Update.
    Follow these steps to install the printer drivers on Windows 8.1:
    http://h20564.www2.hp.com/hpsc/doc/public/display?docLocale=en_US&docId=emr_na-c03470332#N100AA
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Hi there, I pay for extra iCloud space online. However I cannot seem to find any of my photos or account? As my iPod/iPhone only hold 1000 pictures, where are the previous pictures? And how can I access them?

    Hi there, I pay for extra iCloud space online. However I cannot seem to find any of my photos or account? As my iPod/iPhone only hold 1000 pictures, where are the previous pictures? And how can I access them?

    You cannot use iCloud Storage to suppliment your iPad. They are mainly used to backup iPad.
    Free up space on iPad
    Settings>General>Usage>Storage>Delete what is not needed to free up space on iPad.

  • Where are the drivers?

    Alright it's probably a stupid question but I just bought a new mac that came with leopard.I used boot camp to partition and install windows vista on my new mac. Everything worked fine until I had to install the drivers.I don't know where the drivers are. They supposed to be in the leopard dvd that i don't have. Where are the drivers?

    Hi Obe7,
    the Mac OSX install disc that you used to install Leopard on your Mac is a 'hybrid'-disc, which contains an OSX part (only visible while in OSX) and a Windows part (only visible while in Windows).
    The BootCamp 2.0 drivers are on the Windows part of that disc.
    While in Windows insert that disc and usually the driver installation starts automatically.
    If not, use the Windows Explorer to navigate to the disc and start the 'setup.exe' file manually.
    Stefan

  • Where are the older BIOS versions gone?

    Hi
    A few weeks back, I've upgraded the BIOS on my Pavilion G6 1001sq to the latest version (F66). I noticed that the laptop is running considearbly hotter since then and I want to revert to an older BIOS version. When I go to the updates page on the HP website and click on "older versions available" I can only see the F66 version on the page I'm directed to ( http://h10025.www1.hp.com/ewfrf/wc/previousVersions?softwareitem=ob-115746-1&cc=us&dlc=en&lc=en&os=4... ), although a long list with many versions was available till recently. Where are the older versions gone?

    Unfortunately, I do not know where they have gone. HP is working on issues with the suport and driver servers at the moment.
    Since your notebook does have the UEFI Diagnostics installed, you should be able to rollback to the previous version that was installed. Use the firmware management option to do that.
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • Where are the print drivers found?

    I have a Brother HL 2040 laser printer. THe Brother website has a version 2.2 driver for this printer. I downloaded and installed. When I add the printer I keep getting version 1.4 driver.
    Can someone tell me where are the drivers found on my iMac?
    Also I am trying to get this to print via a Linksys wireless print server. Do I use the ip address for the print server or the printer when adding this.
    I tried using the print server IP but I get a "printer paused" issue. I think I need the new print driver.
    thanks in advance for any help.

    I have not gotten the driver to update to the newest version. I deleted the Brother Folders as mentioned in the replies, no joy. No matter what I do it ends up 1.4 not 2.0.
    Version 1.4 worked OK for a USB connection, so I went forward with trying to get the network connection going. By trying every combination available I got it to work.
    What HP jetdesk-socket has to do with my printer...escapes me. But that combination with version 1.4 driver works.
    I will leave well enough alone.
    I have 2 other computer to update to SL.....maybe.

  • Where are the epson drivers for Mavericks for the artisan 835

    Where are the epson drivers for Mavericks for the artisan 835

    OMT8 wrote:
    Well, I have this printer too, and I get the following response from the System Prefs Printers and Scanners when I select to add this printer:
    "The software for this printer is currently unavailable. Please contact the printer’s manufacturer for the latest software."
    When you go to the Epson website for this particular printer it says:
    "The latest drivers for this product are available only via Apple's Software Update."
    And finally, when you go to Software Update it says: "No updates available"
    I second OMT8.
    Yes, the driver file at http://support.apple.com/kb/DL1398 allowed me to finally install my printer, but does Apple have _any idea_ how long it takes to download a 1.08GB file over a 1.5mbps DSL connection?
    Never mind how much of my pricey new SSD is being consumed by the resulting 1.80GB of driver files all for _one_ printer driver that should maybe occupy 200K?
    Or that the primary article on OS X printer drivers (http://support.apple.com/kb/HT3669) -- which does indicate that the Artisan 830 is supported -- does not mention or link to the driver file that's needed to make it work?
    Or what a complete violation of Apple's "it just works" gestalt it is to be confronted with the above Catch-22 and to have to search the web and then go through all of the above to make a new laptop talk to a two-year-old printer?
    Yes, my printer now works, and yes, Apple's Support Communities were instrumental in getting to this point. But spending all morning (plus download time) getting a printer driver installed tastes way too much like I paid for Apple and got Microsquish.
    -carl-

  • HP Officejet Pro 8600 Wireless - Where are the printing shortcuts?????

    HP Officejet Pro 8600 Wireless Printer
    Windows 7
    Where are the printing shortcuts?????
    I just replaced a canon printer that died that had the concept of PROFILES, so that I could setup a PROFILE for each type of printing, i.e. 4X6 photos/documents/5X7 photos.  So it was easy for our family to print, they would pick each setting.
    Now with latest driver for 8600 there are NO way to save a set of settings for a printer.   I have seen some old discussions on this but I just can't believe HP doesn't have this type of functionality in their drivers.  I don't need the ePrint and all the other bogus stuff installed with the 8600 driver, but I DO NEED the ability to save different sets of printing options so I don't have to remember, borderless or not, landscape or not, etc and keep wasting photo paper/ink/regular paper with incorrect options.
    Here is another posting with similar points -> Customers are NOT getting full print functionality.  We don't care about the extra software, it is minimal.  Full functionality includes the ability to create profiles for different printing situations so that the user can easily choose that profile (and therefore all the myriad settings for that profile).  What HP has done is give us ONE profile, essentially, and every time you want to do something different, you have to change that ONE profile.  How is that helping?
    As I said, if I want to switch from a normal printing job (e-mail, web page, etc.) which uses my ONE setting, and then want to print a 4x6 photo, I have to remember to change at least 6 different settings.  With the shortcut, I would select my "borderless photo" shortcut, and it would automatically switch paper trays, size, color, quality, you name it.  Now you force me to change that each and every time.
    If someone can explain why this is considered full functionality I would be extremely grateful.

    Hello,
    I am sorry you are having trouble with your print experience.
    I am going to make some assumptions here, which could be wrong in your case, but might help others.  Since you mention printing from Windows7 and ePrint in the same thread, can I assume you are trying to print using the HP ePrint driver for windows (www.hp.com/go/eprintsoftware) ?  The ePrint driver also comes preinstalled on all HP laptops and pcs now, so maybe you made a recent pc purchase and therefore have the ePrint driver installed?
    The goal of the ePrint windows driver currently has a lot less to do with providing the hundreds of print features and settings that the full featured, product specific print drivers provide.  The goal is to enable customers to be able to print to any recent or new HP printer through a number of different connection paths from a single installed print driver / print queue.  Once the ePrint driver is installed, printing with that driver will dynamically find direct network printers, cloud enabled printers, public print locations, direct wireless printers, etc., and create the correct print format depending on the print path taken.  If the printer is ePrint cloud enabled and has a good internet connection, the printer and the pc do not have to be in the same location.  For example, you can print from home to your printer at work.  You can send photos of the kids to your mom's printer in another state, etc.  The ePrint solution is also good for the traveling worker who just wants to send the occasional print job to the nearest network or wireless direct printer without having to find and install another print driver for each new printer.  One driver, one queue and you can print to any recent or new HP printer.
    The ePrint driver has a few important print settings that customers may want to use (copies, duplex, grayscale, etc).  More may be added over time depending on demand.
    BTW, because the ePrint driver does not have a ton of print settings to handle, the rendering of print jobs is as simple and efficient as possible and should not bog down your pc.
    If you want all the bells and whistles in the print driver experience and just want to print to a single printer you can download and install the product specific print driver from hp.com  
    I hope that helps out a few people who may be wondering what the purpose of ePrint is!!
    Good luck.
    I am an HP employee, but these are my own thoughts and suggestions

  • Where are the plus and minus keys on a Pavilion dv6-3150us Entertainment Notebook?

    Where are the plus and minus keys on a Pavilion dv6-3150us Entertainment Notebook?  Joe
    Joe B.

    Its on the keyboard somewhere on top center close to the number keys. To be straight, its just below F12 key. 
    //Click on Kudos and Accept as Solution if my reply was helpful and answered your question//
    I am an HP employee!!

  • Old mac wont boot xcpt via firewire, want to move iphoto files from old to new, where are the pics stored?

    old mac wont boot xcpt via firewire, want to move iphoto files from old to new, where are the pics stored?

    Photos are stored in your home folder (~pictures).
    Barry

Maybe you are looking for