Error Checking File System that doesn't exist anymore [Solved]

I had been dual booting Arch and Ubuntu on my desktop and recently decided to ditch ubuntu and experiment with slackware. I also decided to take advantage of the reinstall to clean up my partition scheme.
The old:
sda1 ntfs windows
sda2 fat32 shared data
sdba5 swap
sdb1 ext3 Arch's root
sdb2 ext3 Arch's home
sdb3 reiser Ubuntu home
sdb4 logical partition
sdb5 reiser Ubuntu's home
sdb6 ext3 used to be shared /boot, but only Ubuntu had been using it since last Arch reinstall
The new
no changes to sda or Arch's partions
sdb3 ext3 Slackware root
sd4 ext3 Slackware home
Slackware is working fine, but when I try to boot up Arch I can only get to where it checks the filesystem, sdb1 and sdb2 check clean, then it tries to check sdb5 and obviously isn't finding this to be clean. When it drops me to the terminal I my old partitions and sdb4 are clean. sdb3 gives me an error saying it can find the reiser journal (don't have the exact wording but it obviously thought this should be a reiserFS not ext3) but if I do fsck.ext3 instead of just fsck it says it's clean.
It's probably relevant that my last few boots before the slackware install were complaing that my ubuntu partitions weren't clean, which kind of confused me since I didn't even mount those in Arch but I didn't bother fixing it since I was planning on reformatting them when I installed slackware and I could still boot into Arch unlike now.  I'm wondering if Arch is still complaining about them not being clean from before I reformatted.
Can someone help me convince Arch to let me boot again?
Last edited by mcmillan (2007-08-07 16:23:54)

Have you changed fstab on Arch's root partition?
Use some LiveCD (even Arch's installation CD will do) to do so.

Similar Messages

  • Hello, I got a new computer with the old harddisk. Can't play my itunes music because not authorised. Apple ID is very old e-mail adress that doesn't exist anymore. When chose for secret question brth date seems wrong. Can't reach anyone!!!

    Hello, I got a new computer with the old harddisk. Can't play my itunes music because not authorised. Apple ID is very old e-mail adress that doesn't exist anymore and I forgot the password (5 years old??). When chose for secret question birth date seems wrong. Tried everything. I need to make a new apple-id but cannot connect the music that I bought under my old name to my new name. Can't reach anyone!!! Automatic FAQ system is of no help. What to do?

    That doesn't help me. For itunes it brings me to the express lane which doesn't help because my case is not in it. It's all standard procedure things. I understand those but my situation is different. The combination of a passport forgotten and an non-existing email adress (and birth dates that are not correct or not accepted). What I need is my password emailed to another email adress than the original one because that no longer exists.

  • How to deauthorize a computer , that doesn't exist anymore?

    I unisnstalled windows , and for some reason when i inserted my ipod to the freshly installed windows+itunes , and logged on my account , iTunes said , that its a new computer and asked me to authorize it , and so i did.
    My question is: how can i deauthorize my old version of windows , that doesn't exist anymore?
    I also have another question in this topic : When i want to buy items from itunes from a new device , it asks for my bank card number , and takes 1-2 dollars from it. Is this ok?

    Take a look at this Apple support article; it may help:
    One computer using multiple iTunes Store authorizations
    When i want to buy items from itunes from a new device , it asks for my bank card number , and takes 1-2 dollars from it. Is this ok?
    I'm not sure what you mean by this. What "items"? If you are referring to music, videos or movies, you get only one download per purchase, so if you buy the items again, whether from another device or the same one, yes, you will be charged again. Only apps allow redownloading without additional charge.
    Regards.

  • How do I update apps under an old apple id email that doesn't exist anymore and have forgotten the password?

    I want to update some apps on my iphone but can't because it's asking for an old apple id email that doesn't exist anymore and I have forgotten the password for it!
    Help!!!

    The apple id login is never deleted. The emaill address itself can be disabled or not in use any longer. The apple id login will still be available to you. If you will go to the website My Apple Id
    https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/
    and use the listed apple id login that your apps are asking for to update - once you have changed the password at the lsted website you then will be able to update using the old apple id once you have logged into the device using the old apple id and password.
    Good luck.

  • TypeError: Error #1010 on code that doesn't exist.

    Hello all,
    I have a drop down menu with 7 options. The menu is a movie clip with a mask that reveals each of the buttons when a person mouse_overs the menu button. Each menu option does the same thing, it will call a function based on the button clicked. The function for each button does the same thing:
    function INDEX_Safety (e:MouseEvent):void
              play();
              INDEX_SAFETY=true;
              Sound_Stopper ();
    Each of the functions will change the value of its respecive boolean variable. One for each button. Sound Stopper is a function that stops any FLV Sound that is currently playing.
    When it goes through play() it will come to a particular frame that has:
    Index_Jumper ();
    this function determines which boolean has been set to true, and does a gotoAndPlay("Label Name") based on the boolean that has been set to true. Then sets the boolean back to false.
    function Index_Jumper ():void
              if (INDEX_SAFETY==true){gotoAndPlay("Safety"); INDEX_SAFETY=false;}
              if (INDEX_TOOLS==true){gotoAndPlay("Tools and Positions"); INDEX_TOOLS=false;}
              if (INDEX_METHODS==true){gotoAndPlay("The Methods"); INDEX_METHODS=false;}
              if (INDEX_METHOD1==true){gotoAndPlay("Method 1"); INDEX_METHOD1=false;}
              if (INDEX_METHOD2==true){gotoAndPlay("Method 2"); INDEX_METHOD2=false;}
              if (INDEX_TDBL==true){gotoAndPlay("Installing TDBL"); INDEX_TDBL=false;}
              if (INDEX_RAISING==true){gotoAndPlay("Raising the Stand"); INDEX_RAISING=false;}
    The issue i am having: When i click on the 6th option, TDBL, i get the error:
    TypeError: Error #1010: A term is undefined and has no properties.
              at RaisingtheOperatorsPlatform_fla::MainTimeline/frame147()[RaisingtheOperatorsPlatform_fla. MainTimeline::frame147:10]
    It says frame 147:10
    From my understanding this means the 10th line on Frame 147.
    This is my frame 147:
    1. stop ();
    2. Caption ();
    3. IndexMC.Safety_Menu_Button.addEventListener(MouseEvent.CLICK, INDEX_Safety);
    4. IndexMC.Tools_Menu_Button.addEventListener(MouseEvent.CLICK, INDEX_Tools);
    5. IndexMC.Methods_Menu_Button.addEventListener(MouseEvent.CLICK, INDEX_Methods);
    6. IndexMC.Method1_Menu_Button.addEventListener(MouseEvent.CLICK, INDEX_Method1);
    7. IndexMC.Method2_Menu_Button.addEventListener(MouseEvent.CLICK, INDEX_Method2);
    8. IndexMC.TBDL_Menu_Button.addEventListener(MouseEvent.CLICK, INDEX_Tdbl);
    9. IndexMC.Raising_Menu_Button.addEventListener(MouseEvent.CLICK, INDEX_Raising);
    I dont have a 10th line.
    also, when i click the 7th option, nothing happens. However, options 1 - 5 on the drop down menu work just fine.
    Thanks for any insight.

    Right after posting that, I got an idea to try adding the following to frame 1:
    addEventListener(Event.ENTER_FRAME, Frame_147);
    function Frame_147 (event:Event):void
              if (currentFrame==147)
                        stop ();
              Caption ();
              IndexMC.Safety_Menu_Button.addEventListener(MouseEvent.CLICK, INDEX_Safety);
              IndexMC.Tools_Menu_Button.addEventListener(MouseEvent.CLICK, INDEX_Tools);
              IndexMC.Methods_Menu_Button.addEventListener(MouseEvent.CLICK, INDEX_Methods);
              IndexMC.Method1_Menu_Button.addEventListener(MouseEvent.CLICK, INDEX_Method1);
              IndexMC.Method2_Menu_Button.addEventListener(MouseEvent.CLICK, INDEX_Method2);
              IndexMC.TDBL_Menu_Button.addEventListener(MouseEvent.CLICK, INDEX_Tdbl);
              IndexMC.Raising_Menu_Button.addEventListener(MouseEvent.CLICK, INDEX_Raising);
    I then commented-out frame 147.
    the error i got pointed to line 36 of frame 1, which is:
      IndexMC.TDBL_Menu_Button.addEventListener(MouseEvent.CLICK, INDEX_Tdbl);
    Being able to focus on this, i see that i have IndexMC.TBDL instead of IndexMC.TDBL, i think this was one of those "been looking at this thing for too long" errors. Thank you for looking into this, the problem is now solved. As for the error pointing to a line that doesn't exist:
    I still have no idea why it would say the issue was frame 147:10

  • I am trying to change the Apple ID on my old iPhone 5c but it wants a password for an old Apple ID with and email that doesn't exist anymore

    MMy old iPhone 5c is wanting a password for logging into my apple account. The problem is that the email address its tied to doesn't exist anymore. I changed the email to a different one. But can't figure out how to change the email address on the phone to the new email address.

    The fact that the email address doesn't exist anymore doesn't matter. As far as the Apple ID is concerned, the email address is just a user name. As long as you know the password you used, it should be fine.
    If you don't remember the password, start here:
    https://iforgot.apple.com

  • Can't Completely Uninstall an App That Doesn't Exist Anymore

    Alright, so I've got a very run-of-the-mill, mid-2011 Macbook Air (1.6 GHz Intel Core i5, 2 GB 1333 MHz DDR3, running Yosemite) and everything really does run just fine. The only issue I've been having is completely eliminating traces of a particular app that actually doesn't exist anymore.
    Some time ago, I downloaded a little To-Do List sort of thing called Intuition+. It was made to be a checklist, and also a planner that would integrate with Calendar. Not very long after I got the app, the company deleted it entirely. I did as much as I knew how to get rid of anything associated with it on my laptop, but it still shows up as a calendar option in Calendar.
    Now, I know it's probably harmless, but it drives me nuts that I can't get rid of the **** thing 100%. It was called Intuition+. Any advice?
    Apologies if I'm leaving out any info that might be helpful-- I've never posted here before, so let me know what I can do to help you help me 8)

    So this is an app that you've downloaded from the iTunes store, not from the Mac App Store ? If it is then it should be in the Apps part of your iTunes library - if you have iTunes 11 on your Mac then option-command-S should enable the left-hand sidebar, and on that sidebar there should be an Apps section e.g.
    But apps from the iTunes store can only be installed/used on iOS devices i.e. an iPhone, iPod Touch and/or an iPad (they will appear in your iTunes library for syncing and backup purposes) - you can't use iTunes apps on a Mac.

  • Tried to restore from backup but it's asking for my iCloud password for an email address that doesn't exist anymore. What do I do?

    I had my phone replaced today and have tried to restore from the backup I made this morning. It didn't restore properly so I wanted to try again but I can't as it asks for my iCloud password for a non-existant email account. I changed my iCloud email about 6 months ago but my phone still thinks that is the correct email and I can't change it, can't reset my phone, can't do anything. What do I do?

    The fact that the email address doesn't exist anymore doesn't matter. As far as the Apple ID is concerned, the email address is just a user name. As long as you know the password you used, it should be fine.
    If you don't remember the password, start here:
    https://iforgot.apple.com

  • IX4-300d I/O error, check file system, now stuck at software restart

    Good morning!
    I have a brand new IX4-300d. Was uploading files with sftp yesterday, which kept giving me errors, so I enable support access and checked the logs while uploading. Got a lot of:
    end_request: I/O error, dev sde, sector 16384
    sd 16:0:0:0: [sde] Unhandled error code
    sd 16:0:0:0: [sde]  Result: hostbyte=0x07 driverbyte=0x00
    sd 16:0:0:0: [sde] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 01 00
    end_request: I/O error, dev sde, sector 0
    sd 16:0:0:0: [sde] Unhandled error code
    sd 16:0:0:0: [sde]  Result: hostbyte=0x07 driverbyte=0x00
    sd 16:0:0:0: [sde] CDB: cdb[0]=0x28: 28 00 3a 38 17 c0 00 00 01 00
    end_request: I/O error, dev sde, sector 7814036992
    sd 16:0:0:0: [sde] Unhandled error code
    sd 16:0:0:0: [sde]  Result: hostbyte=0x07 driverbyte=0x00
    sd 16:0:0:0: [sde] CDB: cdb[0]=0x28: 28 00 3a 38 17 d3 00 00 01 00
    end_request: I/O error, dev sde, sector 7814037144
    sd 16:0:0:0: [sde] Unhandled error code
    sd 16:0:0:0: [sde]  Result: hostbyte=0x07 driverbyte=0x00
    sd 16:0:0:0: [sde] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 01 00
    end_request: I/O error, dev sde, sector 0
    sd 16:0:0:0: [sde] Unhandled error code
    sd 16:0:0:0: [sde]  Result: hostbyte=0x07 driverbyte=0x00
    sd 16:0:0:0: [sde] CDB: cdb[0]=0x28: 28 00 00 00 00 01 00 00 01 00
    end_request: I/O error, dev sde, sector 8
    sd 16:0:0:0: [sde] Unhandled error code
    sd 16:0:0:0: [sde]  Result: hostbyte=0x07 driverbyte=0x00
    sd 16:0:0:0: [sde] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 01 00
    end_request: I/O error, dev sde, sector 0
    sd 16:0:0:0: [sde] Unhandled error code
    sd 16:0:0:0: [sde]  Result: hostbyte=0x07 driverbyte=0x00
    sd 16:0:0:0: [sde] CDB: cdb[0]=0x28: 28 00 3a 38 17 c0 00 00 01 00
    end_request: I/O error, dev sde, sector 7814036992
    sd 16:0:0:0: [sde] Unhandled error code
    sd 16:0:0:0: [sde]  Result: hostbyte=0x07 driverbyte=0x00
    sd 16:0:0:0: [sde] CDB: cdb[0]=0x28: 28 00 3a 38 17 d3 00 00 01 00
    end_request: I/O error, dev sde, sector 7814037144
    So I requested a offline file system check from diagnose page. That was as off now 23 hours ago, from what I can see, the fs check did not take long, but has been stuck at DEvice software restarting for at least 22 hourse. I use less then 200Gig on it, setup as raid 10.
    This device is not 1 month old. I had it freeze on my once already, not while restarting, just froze up. So that is the second time.
    Status in the web console said all is fine, I had to go in through ssh and look at the os logs to find out what is happening.
    What should I do?
    Solved!
    Go to Solution.

    Hello CollegeMathieu
    Please contact support using the below support links so we can have the issue properly diagnosed.  There is a good chance that the unit may have shipped with a defective drive (if it is a diskless model one of your hard disks may be defective).  This could be causing the strange firmware behavior. 
    A couple of things to try :
    -power down the unit and re-seat all disks then try booting again to see if there is any change.
    -If the above does not work, try swapping disk 1 with any of the other hard disks while powered off and then try booting again.
    LenovoEMC Contact Information is region specific. Please select the correct link then access the Contact Us at the top right:
    US and Canada: https://lenovo-na-en.custhelp.com/
    Latin America and Mexico: https://lenovo-la-es.custhelp.com/
    EU: https://lenovo-eu-en.custhelp.com/
    India/Asia Pacific: https://lenovo-ap-en.custhelp.com/
    http://support.lenovoemc.com/

  • How do I get into an account that has an email address that doesn't exist anymore?

    Some background info:
    Over the course of a decade I have downloaded a lot of songs with a bunch of different accounts. This all started way before home sharing and iCloud and all that jazz. Anyways, I was in middle school, so my songs came off my mom's account (which was a bellsouth email address). Later when we switched to Comcast she started using her Comcast email address and we downloaded songs off of that. Then when we stopped with comcast she started using a new address, and at this point I was able to just buy my own music so I created my own account. I think my sister has one too, which adds to the chaos.
    Anyways, now I'm trying to transfer my songs from my iPod to my laptop, and I've figured out most of the account passwords except for one: the bellsouth password. I tried to reset the Apple ID password but when I entered my mother's birthday is told me I was wrong. I tried my siblings', mine, and my father's to see if for some insane reason she didn't use hers, but none of them would be accepted. I then went to the AT&T website and tried to log in to that account so that I could access the account with one of those password change emails, but it wouldn't let me for similar reasons. Basically I'm not sure that that email account even exists anymore.
    This is an extremely frustrating issue. The songs have been purchased and paid for; why is it impossible to get them to play? Surely there's an easier way than this nonsense.
    INB4: You should have just used one account, you should have used home sharing, etc.
    Yeah, okay, great advice, lemme hop in my TARDIS and fix that.
    I'll be honest, I have no idea how home sharing even works and haven't bothered to learn because, honestly, what's the point if I can't even log into the accounts? I'm not even sure that the bellsouth one is the only other one.

    Customer service can merge both of your accounts into a single one.
    Unfortunately, only Adobe customer service can assist you with your issue. These are user forums; you are not addressing Adobe here.
    Click on the link below, and after that click on "Still need Help? Contact us."
    Then on the next page, click Chat
    There is also a phone option. 1 (800) 833-6687
    http://helpx.adobe.com/contact.html?step=PHXS_downloading-installing-setting-up_licensing- activation

  • I daughter's iPod touch is password locked and authorized to computer that doesn't exist anymore. i want to set it up on my iTunes but it won't recognize it because of the failed password attempts. what can i do?

    My daughter's ipod touch is password locked and attached to a computer that doesnt exist anymore. i want to authorize it to my computer itunes account but itunes wont even read it due to the password failure. what can i do?

    That's by design. The password is designed to protect the user's information and cannot be circumvented. You can restore it to "new" condition though, and sync it to your computer. The iPod Touch's content will be securely erased by doing this.
    Refer to iOS: Unable to update or restore. Follow the instructions exactly as written.

  • Sync error because of app that doesn't exist

    Everytime I try to sync my iPhone 3Gs, I get an error that says...
    There was a problem downloading the artwork for "Insert app name here".
    Please try again by choosing "Check for Available Downloads" from the Store menu.
    This app is not installed on my phone, it doesn't show up in iTunes on my app list, and it no longer exists in the App Store. I have OS 4.0 and my iTunes is updated. Because of this, I am completely unable to sync my phone and it is really getting annoying. Is there a folder or something I can get into to delete all traces of this app?

    Contact itunes support & have them clear your download queue:
    http://www.apple.com/support/itunes/

  • How do I get rid of a computer that doesn't exist anymore from my iTunes account? The old computer has been recycled with my iTunes acoount on my current desktop. I neglected to remove iTunes prior to being recycled.

    I'm continuing to have major issues getting iTunes to recognized my son's iPod Touch. It was last sync'd to the old computer more than a year ago. I've backed up and updated all iTunes material; Uninstalled iTunes and reinstalled; confirmed other iPods will connect. The only issue I'm having is with my son's Touch.

    If you're referring to authorization, you cannot deauthorize a computer to which you no longer have access. Unless you've reached the limit of five authorizations, that shouldn't be a problem. If you have  reached five authorizations for that account, there will be a button in your iTunes Store account information that will allow you to deauthorize all systems associated with that account. Log into your Store account and you should see it. You can then reauthorize the computers you're using now.
    I'm not sure what this would have to do with an issue with an iPod touch, though. Can you please explain that issue in more detail?
    Regards.

  • How do I change an email address that doesn't exist anymore??

         Long story short; years ago I had an iTunes accoun that I had to sign in with email. Never bought anything. Bought a new computer and decided to actually use my iTunes. Since I couldn't log into the old account I just made a new one on a Yahoo account that I would never need to use anyway aside from using it to create a new iTunes account. Call it what you want. Recently I just made the switch from the old account on iTunes to the new one, but my iPhone is still slaved to the old account. When I tried to log back into it on Yahoo I got a message that told me that, due to inactivity, the account had been deactivated and was currently being 'recycled', whatever that means. So basically before I made the switch, I could just easy peesy go to my phone and update an app with the old email account and iTunes password. But now that I've changed it, I can't download any updates. I'm dying. It's killing me, figuratively.

    You can't without restoring the phone as new.

  • Deleting Review for an app that doesn't exist anymore.

    So I went in to remove a review on an app, using "Manage my reviews". It went smooth. But lo-and-behold, in Ping the review is still there. I try to "Report A Concern". Then I get a "Request Cannot be completed, this item is not available in the US store."
    Anything else I can try?

    Ok. It seems like it got fixed. I guess slow propagation through the system.
    Good to know.

Maybe you are looking for

  • Does the video adapter output both S-Video and Composite simultaneously?

    I have a multi-zone receiver which converts S-Video to component for the main zone and passes S-Video signals through to zone 2 but does not convert them to composite which is how that zone is set up. I solved a similar problem with my DVD player by

  • Help with a kernel panic?

    Hi, all, My new (two weeks old) Macbook pro has been randomly restarting, sometimes two or three times a day. I talked with Apple Support and they had me repair the disc permissions, which wound up being quite lendthy ... something like 147 pages in

  • Is it possible to Install Windows 8 Pro 64-bit on a secondary hard dive in Mac Mini (Late 2012) using Boot Camp 5?

    Hello, I have a Mac Mini (Late 2012) running on OS X 10.8.3 and would like to install Windows 8 Pro on a secondary hard drive using Boot Camp 5. Is that really possible? A little background about the topic under discussion. 1. Mac Mini (Late 2012) ha

  • Saving responses in pdf form in Adobe Reader

    Hi, I have an existing pdf document (for a competition entry form) which i converted into a form using Acrobat Pro. I want to post this on my website for users to download, complete and email back to me. However, when the pdf form is opened up in Ado

  • How can i backup itunes my library?

    I don't use "itunes music" folder,my musics are stored in several folders of two disks,i add the folders separatedly, i want to use itunes to manage all the music i've added,and create many playlists in itunes,add many information related to the song