Fuse 1.3

i'm trying to make a package for fuse (filesystem in userspace) but i'm having troubles compiling it.  here's my preliminary PKGBUILD
pkgname=fuse
pkgver=1.3
pkgrel=1
pkgdesc="Utility that enables one to mount filesystems in userspace"
url="http://sourceforge.net/projects/avf"
license="GPL-2"
depends=('binutils')
source=(http://dl.sourceforge.net/sourceforge/avf/$pkgname-$pkgver.tar.gz)
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make prefix=$startdir/pkg/usr install
pretty straightforward.  here's the error i'm getting.
config.status: include/config.h is unchanged
config.status: executing depfiles commands
Making all in include
make[1]: Entering directory `/var/abs/local/fuse/src/fuse-1.3/include'
make all-recursive
make[2]: Entering directory `/var/abs/local/fuse/src/fuse-1.3/include'
Making all in linux
make[3]: Entering directory `/var/abs/local/fuse/src/fuse-1.3/include/linux'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/var/abs/local/fuse/src/fuse-1.3/include/linux'
make[3]: Entering directory `/var/abs/local/fuse/src/fuse-1.3/include'
make[3]: Leaving directory `/var/abs/local/fuse/src/fuse-1.3/include'
make[2]: Leaving directory `/var/abs/local/fuse/src/fuse-1.3/include'
make[1]: Leaving directory `/var/abs/local/fuse/src/fuse-1.3/include'
Making all in patch
make[1]: Entering directory `/var/abs/local/fuse/src/fuse-1.3/patch'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/var/abs/local/fuse/src/fuse-1.3/patch'
Making all in kernel
make[1]: Entering directory `/var/abs/local/fuse/src/fuse-1.3/kernel'
make -C /usr/src/linux-2.6.6-love4-lokean1 SUBDIRS=/var/abs/local/fuse/src/fuse-1.3/kernel modules
make[2]: Entering directory `/usr/src/linux-2.6.6-love4-lokean1'
CC [M] /var/abs/local/fuse/src/fuse-1.3/kernel/dev.o
In file included from include/linux/linkage.h:4,
from include/linux/kernel.h:11,
from /var/abs/local/fuse/src/fuse-1.3/kernel/fuse_i.h:33,
from /var/abs/local/fuse/src/fuse-1.3/kernel/dev.c:9:
include/linux/config.h:4:28: linux/autoconf.h: No such file or directory
In file included from include/linux/prefetch.h:14,
from include/linux/list.h:7,
from include/linux/thread_info.h:10,
from include/linux/spinlock.h:12,
from include/linux/capability.h:45,
from include/linux/sched.h:7,
from include/linux/module.h:10,
from /var/abs/local/fuse/src/fuse-1.3/kernel/fuse_i.h:34,
from /var/abs/local/fuse/src/fuse-1.3/kernel/dev.c:9:
include/asm/processor.h:67: error: `CONFIG_X86_L1_CACHE_SHIFT' undeclared here (not in a function)
include/asm/processor.h:67: error: requested alignment is not a constant
In file included from include/linux/sched.h:11,
from include/linux/module.h:10,
from /var/abs/local/fuse/src/fuse-1.3/kernel/fuse_i.h:34,
from /var/abs/local/fuse/src/fuse-1.3/kernel/dev.c:9:
include/linux/timex.h:81:3: #error You lose.
In file included from include/linux/timex.h:186,
from include/linux/sched.h:11,
from include/linux/module.h:10,
from /var/abs/local/fuse/src/fuse-1.3/kernel/fuse_i.h:34,
from /var/abs/local/fuse/src/fuse-1.3/kernel/dev.c:9:
include/linux/time.h:145:31: division by zero in #if
include/linux/time.h:145:31: division by zero in #if
include/linux/time.h:145:31: division by zero in #if
include/linux/time.h:145:31: division by zero in #if
include/linux/time.h:145:31: division by zero in #if
include/linux/time.h:145:31: division by zero in #if
include/linux/time.h:145:31: division by zero in #if
include/linux/time.h:145:31: division by zero in #if
include/linux/time.h:145:31: division by zero in #if
include/linux/time.h:145:31: division by zero in #if
include/linux/time.h:145:31: division by zero in #if
include/linux/time.h:145:31: division by zero in #if
include/linux/time.h:145:31: division by zero in #if
include/linux/time.h:145:31: division by zero in #if
include/linux/time.h:145:31: division by zero in #if
include/linux/time.h:145:31: division by zero in #if
include/linux/time.h:189:30: division by zero in #if
In file included from include/linux/timex.h:186,
from include/linux/sched.h:11,
from include/linux/module.h:10,
from /var/abs/local/fuse/src/fuse-1.3/kernel/fuse_i.h:34,
from /var/abs/local/fuse/src/fuse-1.3/kernel/dev.c:9:
include/linux/time.h: In function `jiffies_to_msecs':
include/linux/time.h:194: error: `CONFIG_HZ' undeclared (first use in this function)
include/linux/time.h:194: error: (Each undeclared identifier is reported only once
include/linux/time.h:194: error: for each function it appears in.)
include/linux/time.h:199:30: division by zero in #if
include/linux/time.h: In function `msecs_to_jiffies':
include/linux/time.h:204: error: `CONFIG_HZ' undeclared (first use in this function)
include/linux/time.h: In function `timespec_to_jiffies':
include/linux/time.h:223: error: `CONFIG_HZ' undeclared (first use in this function)
include/linux/time.h:229: error: `SHIFT_HZ' undeclared (first use in this function)
include/linux/time.h: In function `jiffies_to_timespec':
include/linux/time.h:242: error: `CONFIG_HZ' undeclared (first use in this function)
include/linux/time.h: In function `timeval_to_jiffies':
include/linux/time.h:264: error: `CONFIG_HZ' undeclared (first use in this function)
include/linux/time.h:268: error: `SHIFT_HZ' undeclared (first use in this function)
include/linux/time.h: In function `jiffies_to_timeval':
include/linux/time.h:280: error: `CONFIG_HZ' undeclared (first use in this function)
In file included from include/linux/module.h:23,
from /var/abs/local/fuse/src/fuse-1.3/kernel/fuse_i.h:34,
from /var/abs/local/fuse/src/fuse-1.3/kernel/dev.c:9:
include/asm/module.h:54:2: #error unknown processor family
In file included from include/linux/mm.h:232,
from include/linux/poll.h:10,
from /var/abs/local/fuse/src/fuse-1.3/kernel/dev.c:11:
include/linux/page-flags.h: At top level:
include/linux/page-flags.h:137: error: requested alignment is not a constant
/var/abs/local/fuse/src/fuse-1.3/kernel/dev.c: In function `fuse_dev_init':
/var/abs/local/fuse/src/fuse-1.3/kernel/dev.c:629: error: `proc_root_fs' undeclared (first use in this function)
make[3]: *** [/var/abs/local/fuse/src/fuse-1.3/kernel/dev.o] Error 1
make[2]: *** [/var/abs/local/fuse/src/fuse-1.3/kernel] Error 2
make[2]: Leaving directory `/usr/src/linux-2.6.6-love4-lokean1'
make[1]: *** [all-spec] Error 2
make[1]: Leaving directory `/var/abs/local/fuse/src/fuse-1.3/kernel'
make: *** [all-recursive] Error 1
==> ERROR: Build Failed. Aborting...
i believe it has to do with my kernel.  i'm going to test another kernel, but it will take me some time because i have to apply a reiser4 patch, or i might try the livecd.  either way, if someone could test this in the meantime, it would be much appreciated.

i've been unable to get a proper reiser4 patch that works and i'm also having troubles downloading a working version of the amlug live cd.  has anyone else tried to compile fuse?  it would be much appreciated if someone would just try to makepkg the PKGBUILD, and report whether or not it compiles.  thanx!

Similar Messages

  • Hi everybody, my Macbook air mid 2012 MD 231 suddenly shut down then i can not turn it on. I heard a sound like a fuse is blown or something like that. Did any system break or burnt? I did not charge at that moment. Plz help

    my Macbook air mid 2012 suddenly turn off after a strange sound (like the sound òf a fuse has blown or something like that) and I also feel a burnt smell too while i am watching a film on the internet and did not charge the laptop at this moment. The sound was from the left of it, and now just a dark screen , even I tried charging it (still has green light at the charge tool). I bought it on 13st April 2013, not often use.
    I love apple and i am so sad that a new product which i seldom use could be break so easily and outstanding. It's so late in my country now but i am too disappoint about the trouble so i am writing with hope of supporting from Apple and the community.
    Please help , thank bro

    You will have to take it to an Apple Store for repair.

  • Power Supply blows a fuse, Ext Soundcard power outages, Time Machine.

    Power Supply blows a fuse, Ext Soundcard momentary power outages. Time Machine won't backup.
    Ok here's my setup
    Mac Book Pro 13" APRIL 2011 latest firmware. 8GB RAM. Surge Protected mains connection..
    M-AUDIO FIREWIRE SOUNDCARD AUDIOPHILE most recent drivers and powered by the MacBooks Firewire Out using a NEET Pro Lead,
    The M-Audio has 2 x Firewire Ports and I take one  to a 2TB 7800rpm Iomega iMedia Drive which daisy chains to a 1TB FireWire Seagate HardDrive and yes both are Pre Powered and formatted for Time Machines exclusive use.
    The M-Audio Firewire module can be pre powered but isn't for this reason, the FireWire Out from the Mac IS pre powered, and I'm using a good quality NEET lead that powers the Audiophile ok over the last few months. I have been warned by the manual if I add a power supply to a pre powered firewire chain I could damage equipment, I'm now running the the screen as low as possible and the backlit keys off to minimise power drain, I also use an Acer 24" Monitor with a NEET DV mini port to HDMI adaptor and it's been working great but this must be more power drain on the power supply, One of the USB ports goes to an Native Instruments Maschine Sampler Module, the other goes to a Pre Powered 4 Port USB Hub and that has been fine, it has 1 Axiom 25 USB Midi Keyboard, 2 Pre Powered Hard Discs 1 Portable USB Drive. Now the problems started with Time Machine it can't backup and I get Hard Disk Unsafe Disconnects and Failed Time Machine Backups and Now my Soundcard does the same in that it momentarily disconnects and reconnects in a second, in Settings under ENERGY SETTINGS I've set hard drives to Never Shut Down, and the Screen also, it's been more frequent, then a fuse blows in the Power Supply without tripping up my Surge Protector Socket pfft! just great, well it is only a 3AMP Fuse in the Plug Socket but it saved my MacBook!, ok checks Mains, yes it's old, and I've started using the Central Heating alot now and when it turns on it could be causing a power surge, same with the FridgeFreezer. Things i've tried, on the Seagate pre powered FireWire Hardisc I have switched the Firewire lead to its second FW port, I got no errors with Time Machine this time, not 100% it's done yet, Soundcard resets in Logic 9 ****, I do have 2 lower quality Firewire Leads that go from the Soundcard to the 2 harddrives will need upgrading ASAP, thats next, I recon its time to upgrade the Soundcard as well for a Focusrite or similar as all my M-Audio Soundcards would literaly loose there minds on PCs and Macs, flakey drivers would just drop out of the Audiophole Firewire Card, more than I care to mention, so if that happens it could explain why the Time Machine drive drops out also, hmmm, and there was me thinking if I used a Mac it would all be ok. wrong. Would apreciate any qualified input, thanks.

    Ok some updates I see, 6 in total including a firmware and security upgrades, also two Native Instruments Updates, Reaktor and Kontakt. I will be testing, this. Before the Updates I managed to peak the CPU load in Logic 9 and was only using 14 tracks, will need to bounce the Synth Plugs and drum tracks and run all the source samples from the Local internal drive a Hitachi 5400rpm drive hmmm :/ will experiment, anyway my Iomega FW drive froze up the Iomega Mac Companion is the correct name for it 2TB 7800rpm but it met it's match or was is the processor? Still sussing it all out. Firewire leads upgrade in effect. testing.. bleep. .

  • Upgrade two WLC 5508 with HA SSO from 7.5.102.0 to 7.6.130.0 combined with FUS 1.9

    The running config is:
    - Two WLC5508's in HA SSO setup running version 7.5.102.0
    - about 130 x 2602i APs
    I need to upgrade to 7.6.130.0 using the pre-download feature to minimize the network downtime.
    Is it possible to transfer the 7.6 to the controllers and pre-download 7.6 to all APs, then do the FUS 1.9 upgrade and finally start the actual controller upgrade to 7.6.
    So the steps would be:
    1. Transfer 7.6 image to primary controller (do not reboot!), so still running 7.4 as active image.
    2. Start pre-download of 7.6 image to all APs and wait till all APs have the new image (do not know how long it takes for 130 APs).
    3. Upgrade both controllers with FUS 1.9 (HA should upgrade both controllers automatically) (takes about 45 minutes?)
    4. Make 7.6 image the active/primary image on controllers and APs and reset controllers.
    If the steps above will not work, I would need to upgrade FUS 1.9 which means 1 hour downtime and then start the pre-download to all APs. The pre-download can take a long time I heard, so I need to wait and wait before I can start the 7.6 upgrade, which means another 1 hour downtime.
    This way I need two maintenance windows instead of one. So would it be possible to combine the pre-download and FUS?
    Regards,
    Bjorn

    >Do I need to upgrade the FUS 1.9 before the 7.6 image or can I do the FUS afterwards? If I can do it afterwards, I can do the upgrades in the same maintenance window. This way I can start the pre-download the day before, so I am pretty sure the APs have the image at the time of the maintenance window.
    >I cannot find any remarks about the required order of installation (FUS -> image or image -> FUS).
    Release Notes for Wireless LAN Controller Field Upgrade Software for Release 1.9.0.0 - p2 :
    * This release of the Field Upgrade Software is applicable to CISCO WLC's that are installed with the controller software release 6.0 and later.
                    So strict reading implies that you have to run 7.6 first.
    M.

  • HP Laserjet M2727nf Fuser error

    I installed a HP Laserjet M2727nf printer on my HP LE1901w computer using windows 7 and it is always telling me fuser error when I want to print a document. I have to off and on it several times before it prints. What do I do?

    Send it to the service for fuser replacement ... hint: ask for the price first ;-)

  • HP Laserjet CM6040MFP always paper jam on fuser when printing full photo in plain paper

    Hello,
    My office using Printer HP Laserjet CM6040MFP, but i have problem.
    The printer always paper jam on fuser when printing full photo in plain paper. i don't why, but this problem occurs on other printer with the same type.
    please help me
    - Product Name: HP Laserjet CM6040MFP Q3938A
    - OS Installed: Windows 7 64 bit
    Regards,
    Milannerz
    This question was solved.
    View Solution.

    Hi -
    I can't tell from your post which specific jam you are experiencing.
    I found the following on the HP.com support web site at
    http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?lang=en&cc=us&objectID=c01450544&jumpi...
    On this page are a lot of possible jam causes and solutions.  This one is a description I think sounds similar to your report. 
    Common causes of jams
    Cause: When printing on lightweight paper or on jobs with heavy toner coverage, paper is wrapping on the fuser causing Fuser Delay Jam or Fuser Wrap Jam messages.
    Solution: Set the LIGHT MEDIA optimize mode on the Print Quality menu to ON .
    Although I am an HP employee, I am speaking for myself and not for HP.
    --Say Thanks by clicking the Kudos Star in the post that helped you.
    --Please mark the post that solves your problem as Accepted Solution

  • HP LaserJet P4515 - error 13.05.00 Fuser Output, Paper Late Jam.

    HP LaserJet P4515 - error 13.05.00 Fuser Output, Paper Late Jam.
    I have frequent Paper Jam errors of this type during duplex jobs. Simplex jobs seem to work fine unless I try to duplex manually by printing on one side and then the other.
    When it jams, I will have one page hitting the sensors after the Pre-transfer roller, usually the next blank page from any given tray, and my duplex page, which has gone through one time and has returned for the backpage, folded in underneath or on top of itself after it passes the tranfer roller but before it hits the Fuser rollers.
    Sometimes it wil happen every other duplex page or it may allow 5 to 10 before doing it again.
    The fuser has been replaced twice, because I thought maybe the first fuser was defective.
    I have run the component tests, sensor tests and they appear to be normal.
    I need to know where I need to look next.
    Right now I am considering changing the feed guide assembly, since that is where the jamming is taking place.
    This question was solved.
    View Solution.

    The feed guide assembly was the culprit.
    The main roller connected to the gears was broken, which allowed the smaller gear to come out.

  • HP Color LaserJet 5525 Fuser trouble shooting

    My HP Color LaserJet 5525 has a squeek or squeel at the top of the printer when printing or initializing. Could this be a bad Fuser Unit?

    Did you ever reach a conclusion to this problem? We are experiencing the same thing.

  • When I connect my MacBook Air to iPads through a powered USB hub the power cord for the hub explodes and trips the fuse on the building. I've tried different iPads, cords, power points to no avail.

    When I connect my mac air to some iPads through a powered USB hub for VPP/Configurator, the power point for the hub blows out (tripping the fuse in the building). I've tried different iPads, cords, power points and of course hubs. Also the computer has a habit of shutting down when any type of USB device is removed from it. Does anyone have any suggestions?

    I've done some experimenting, and this is what I've found out:
    1) The problem persists when I reformatted the USB HDD devices to ExFAT, so the problem apparently wasn't due to NTFS for Mac OS X by Paragon.
    2) The problem persists even when BackBlaze is paused, so I don't think that it's due to BackBlaze.
    3) The internet cuts out as soon as data begins transferring either to or from a USB HDD device and won't reconnected until I eject and unplug the device.
    4) The problem affects data transfers through either USB port.

  • TA26054 Hi! I'd like to replace the fuse ,wether ceramic or not on this PSU wich is Ac Bel api-9841-291

    Hi ! I would like to change the power supply  for atx or other brand and looking for some info that would simplify an overdue research that led to little info, ie links would not result in opening correct window , example : http://http://forums.macrumors.com/showthread.php?t=261623 at  #10 pres leads to tiger direct home page, last resort would be to change the fuse and again link to no avail https://discussions.apple.com/message/9052148?messageID=9052148#9052148?messageI D=9052148http:// because probably ceramic fuse in this Ac Bel api-9841-291 power supply. Any suggestions that leads to fix is appreciated and already did change psu last year , around same time for same psu so maybe a better fuse or atx altogether.Thanks Yal

    ATX to G4 Sawtooth PSU conversion isn't hard.
    I made an adapter documented here:
    http://www.jcsenterprises.com/Japamacs_Page/Blog/EA215F16-F592-4CF7-AA8A-496D532 3F6BC.html

  • How do I fuse audio files together?

    Hey, I'm finishing up the editing for my full-length horror feature, and currently I'm putting in the sound effects and I was trying to figure out how can I fuse audio files together?
    Here's the thing, my video files are files I converted into AVIs from VOBs, only problem is that the audio disappeared from them, but my friend tried to load all my VOBs into AVIs for me since I did something wrong but when he converted them the video was gone but the audio was there...so I figured I'd just take the audio and put it in place.
    Right now I have to put in a sound effect of the guy screaming while gory sounds are playing in the background, then after that I have a chainsaw scene where a woman screams, a chainsaw blases, a mechanical laughter is heard, and gory sounds are playing all together.
    If you could help me figure out how to get the files to fuse together to play the sounds all together, knowing I have to change the volume for each one, that would be very much appreciated. Thanks!
    -Toby

    Ah, those scroll bars. They don't stand out, as much, as I would like. I always overlook the ones in the Share Panel, though I have used them many times.
    Unfortunately, PrE has chosen an arrangement, where Audio & Video Tracks are grouped. I like the PrPro layout, where all Video Tracks are above a "centerline" and all Audio Tracks are below that.
    About the closest that one can come in PrE is to use Delete Unused Tracks, to remove empty Video Tracks, or to View Video Tracks (alone), or View Audio Tracks (alone). With a combo of those, one can customize the Timeline a bit.
    When cleaned up, one can then Add Tracks, for any additional Audio Tracks necessary.
    If one did ONLY the View Audio, they loose the ability to refer to the Video Track, and with SFX, that is necessary, at least for me.
    I like to keep each type of Audio on its own Track. That makes actions, like applying Track Keyframes, or adjustments to JUST that Clip, or Clip type. If I have SFX, music, camera Audio, and other Audio sources, I will put many SFX on their own Audio Track, the camera Audio on another, and then the music one one, or more additional Audio Tracks. Not too long ago, I had one Project with about 10 separate SFX Audio Tracks, one for a "loon," one for "crickets," three for "frogs," one for "pond ambiance," and then two for music (as I was doing faux DD 5.1 SS in PrPro), with one from Music F (front) and Music R (rear).
    Good luck, and happy editing,
    Hunt

  • Skipped or bad frames causes "Unknown error" while trying to fuse or export as...

    Hi. So, I'm trying to fuse footage from my Canon xf305 -to- an H.264 Youtube HD 29.97. I've successfully done this many times before, but this, one, particular clip has some problems. WithIn the roughly 10 minutes of this clip there are 4 small sections that the footage (video portion) seems to stall onto a still frame. This lasts literally for mabe 5 frames or so, and then the video continues. other than that the clip plays fine on the timeline, It's almost undetectable, but when I try and export out to any other format, Premiere gives me an "Unknown Error" about halfway through the export/fuse.  What's Up With That?
    I's there a way to "Force" Primiere to ignore those bad frames and export as best as possible?
    Thanks in Advance for any answeres.   Rich

    First thing I'd recommend is deleting the Cache files.  Go to Edit>Preferences>Media... and take note of their location on the hard drive.  Then close down PP and use Windows Explorer or Finder to delete those files.  When you reopen your project, PP will rebuild those files.
    Second thing I recommend is adding your voice to the following feature request to make this process easier.
    http://forums.adobe.com/thread/1369263?tstart=60

  • Swapped out CM2320nf Fuser Causes Black Pages. FW: 20140625.

    I’m sorry this is so long but I want to avoid unnecessary “Tried that” posts.
    My fuser was working fine except the sleeve and pressure roller were worn out and causing wrinkles along the left side of the page and occasionally folded over the page onto itself.
    I swapped the fuser out with one from one of my CP2025s that I know work. No wrinkling or folding now but the printer prints out all black pages.
    I’ve tried everything including, resetting to factory defaults both from the menu and using the up arrow and cancel buttons down on power up, recalibrating and cleaning. Secondary functions to clean the belt produced a smeary grey page. Color calibration causes black pages plus horizontal lines about a quarter of an inch high of the other 3 colors about an inch apart between the rest of the black page. Scan calibration also gives similar results. I also tried reinstalling the latest firmware dated 20140625. I tried using the Automatic Document Feeder to make a copy of a scanned page, same black page.
    I took out the fuser and reinstalled it to make sure I didn’t miss any electrical connections. This time I didn’t waste my time following the instructions in the Service Manual which tell you to remove all covers and the scanner unit. All’s you really have to do is pop off the back door right side stopper bar and remove the 3 screws at the top and lift up to remove back cover panel. The back door then comes off with the cover. Then 2 screws to get the fuser out. Nothing wrong or missing from the first installation so I reinstalled the fuser and still get the same results.
    I tried hooking it up to the network and was able to look at and set things up using the web based interface. All are working fine. I did a printer control panel keyboard test twice to make sure all keys are working and none are stuck in the down position. No problems.
    Finally I tried to print the test page from the Windows 8.1 64 bit OS Devices and printers page for this printer. Again no text only a black page.
    At no time have I gotten any text on any pages printed. Sometimes the black page will come out with a little color. Usually green.
    I read the entire User Manual, Technical Reference Manual and Service Manual. The Service Manual has one section stating you can’t replace 2 of the circuit boards at the same time because one contains information about the other so if one is replaced the other will restore its information once the new board is installed. If you try replacing both boards at the same time both boards don’t have the information about the other so neither board gets restored causing major image quality problems.
    I did not remove or install any circuit boards. I only removed the straps connecting boards that I was instructed to detach using the instructions in the Service Manual.
    I’m at a loss as to how to fix this and don’t know how it could have happened unless one of the circuit boards got damaged during the process.   This is real annoying because these boards did not need to be exposed in the first place and were only exposed because of the unnecessary instructions to remove all the panels and covers in the Service Manual.
    Any help will be greatly appreciated.
    Best Regards,
    Paul Mighetto

  • Problem With HPLaserJetP1102w: Fuser Error

    I recently bought the HP LaserJet P1102w and in the beginning it worked perfectly. I printed something last Wednesday but when I got home yesterday, my printer didn't work and i get a hardware error. It claims to be a fuserfault. Is there anything I can do? I tried removing the toner and placing it back. I tried to unplug everything and plug things back in, i tried reinstalling the printer. Nothing seems to work. I have no idea what went wrong. Nothing I do seems to help. The printer is brand new and I only printed three times with it. Please tell me there is a solution

    Hello Lilly777,
    The fuser will fix your toner to the media (paper), this is done with some heat. It might be a power related issue, in case there is not 'enough' power to reach a specific temperature.
    Please check this document: "The Printer Will Not Turn On or Respond" - Solution two and four. Just to be sure everything is fine with the power supply.
    Another option would be Restoring the Factory Default Settings.
    Hope this help.
    Regards,
    AndOne
    Say "Thanks" by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as "Accepted Solution"
    (Although I am employed by HP, I am speaking for myself and not for HP)

  • MacBook Pro power adapter trips airline fuse

    I have recently been traveling between the UK and Asia on Emirates flights which have the older empower system which is not compatible with the Apple empower adapter, they use a standard power socket. When I try and charge my laptop from their power sockets it always trips the fuse on the seat, which it seems cannot be reset by the cabin crew. Is there an alternative power supply that does not draw so much current? - I'd rather not have to swap batteries if possible.

    All MacBooks since the beginning have come with 60W AC adapters, and all MBPs with 85W AC adapters. These numbers provide a fair indication of the maximum power that these machines can demand under any conditions that are likely to occur. I've measured the power draw of my MBP with a Kill-A-Watt meter under varying conditions. With both processor cores running flat out (190-196% CPU), no significant load on the GPU (using the 9400, not the 9600), screen and keyboard brightness set at maximum, BlueTooth and Airport turned on, no peripherals connected, and the battery fully charged (so no power is being drawn to charge it), my 15" 2.4GHz MBP with 4GB of RAM and a 250GB, 5400 RPM hard drive draws 40-41W. Charging the battery can add as much as 25W more, stressing the GPU would add another bunch, and of course running any FireWire or USB bus-powered peripherals such as external hard drives would increase the draw still more. A faster CPU probably draws more power, too. A watt's a watt whether it comes from a wall outlet or an Empower port, so you can assume that when you're working your machine hard it's asking for at least 35-45W, and perhaps more, from the Empower port. I have no idea what those ports are rated or fused for, but I suspect it isn't enough for your MBP if you're regularly blowing fuses. In other words, it may not matter what sort of Empower adapter you use: it's the MBP itself and the work you do with it in the air that determine how much power it will try to draw from your seat and whether it blows a fuse.

  • Thoughts on ZFS-FUSE stability?

    I'm considering putting ZFS on my home file server for the data drives, and setting it up for mirrored RAID. I was wondering if anyone had any experiences with it as far as stability and data loss, good or bad. Performance isn't a HUGE concern, since it's just for my own use. I do keep backups on an external hard drive in any case, but that's one of those things you hope you never have to use.
    So has anyone used ZFS-FUSE extensively, and if so, how was your experience with it? Is it ready for prime time, or not?

    Well, since few people seem to be talking about the current state of ZFS on Linux, I'll offer my experience:
    Other than a solvable bug preventing some filesystems from NFS export (affects ZFS and other FS as well), I've found ZFS-FUSE to be a pleasure to use.  ZFS is much more mature than BTRFS and I think a production-functional kernel module is not far away.  BTRFS has had recent data loss issues and I wouldn't trust my important data to it yet.
    I am running a 4-disk RAIDZ2 setup with 4 2TB disks that gives me ~3.7TB of usable space with dual redundancy.  If you decide to expand your storage, ZFS makes it a breeze.  NFS exporting with ZFS is also super easy, as long as you organize your ZFS 'filesystems' properly.  It's a bit different thinking about ZFS filesystems but I really like it (individual permissions and sharing settings, variable size, nestable) now that I'm used to it.  I also have no trouble sharing the filesystems over Samba to my Windows boxes.
    ZFS-FUSE is not blazing fast but it's fast enough for my NAS running backups and serving high-bandwidth media.  The self-checking/self-healing feature gives me a calm feeling about data I haven't had before.  It's easy to get status and statistics about the current state of the FS from the zfs and zpool commands.  I only wish I'd switched my NAS to ZFS sooner!
    EDIT: This post by a BSD user describes well how I feel about ZFS:
    ZFS is not just only another filesystem. And there are faster filesystems out there.
    But if you need the features of ZFS, it is the best you have ever worked with.
    http://hub.opensolaris.org/bin/view/Com … zfs/whatis
    Last edited by doublerebel (2011-09-22 20:26:20)

Maybe you are looking for

  • How can I delete an old exchange email account

    I have a new iPad Air. I restored it from a backup of my old iPad 3. My work exchange email account came with it but does not work. When I followed the procedures my work support provided I found a new email account was created with the same name.  I

  • Creation of a ztable

    Hi, what is the purpose of a ztable. when would we be pushed to create one. how do we create it like is it going to se11 enter a table name and create. centrino

  • Drag And Drop Example and Pointers

    Hello, Could you please point me to some code samples and URLs regarding the implementation of Drag and Drop in JavaFX? (I want to implement a DnD between two TableViews) Thx v much

  • Adobe PDF Pack

    Is there a trial version of PDF Pack? I have the new version of Adobe XI but it does not allow me to merge PDF files into one file. I have also tried to Upgrade to the PDF Pack and it sends me to contact support; which I cannot get through to anyone

  • CATS WBS Issue

    Hi All, In CAT2 transaction, if I manually create a data entry by copying the wbs element from the worklist and  save then if I  execute the program  "DPR_CATS_CPR_TRANSF" the confirmation time is reflected in the PS system. But if I upload data thro