Pacman & the missing mkinitcpio hook

Hi all,
A pretty general question, but do people find files missing that should have been installed?
I had just upgraded the current testing versions of mkinitcpio (0.4.2-1) and cryptsetup (1.0.3-2). One of the main differences in the upgrade is the movement of the mkinitcpio encrypt hook from the mkinitcpio package to the cryptsetup package. But the outcome of the upgrade left me without a encrypt hook, and I was left wondering where the encrypt hook had disappeared to...in some way a concern of dtw in this thread [split] fbsplash & mkinitcpio became concrete. I had read that thread a month ago, it wasn't upmost in my mind when trying to figure out where the encrypt hook had gone- remember that the most recent testing cryptsetup claimed it was installed, I was going to start on a thread on the missing hook.
So, anyway, if I upgraded mkinitcpio and cryptsetup during the same pacman session could things be loused up? I don't recall doing a force, but was it all down to operator error?
cheers

brain0: I did reinstall cryptsetup once I realised that's where the encrypt hook is now, so that's fine. It was a comment by you in the new initramfs, testers welcome thread that helped- I didn't see any note when installing mkinitcpio 0.4.2-1.
I'm not saying it was because of the move of the hook from one package to another, just that I spent some time wondering what had gone wrong in the packaging of the 0.4.2 version of mkinitcpio (when nothing actually had)- more a cognitive issue than technical!
Nope, no XFS here! Thanks for the bug report link, I was in the dark about that past pacman bug, and I'll look out for anything more.
Thanks all.

Similar Messages

  • BTRFS mkinitcpio hook

    UPDATE (6/10/10): http://bbs.archlinux.org/viewtopic.php? … 51#p772651
    THIS POST DEPRECATED UNTIL I UPDATE IT, USE THE UPDATED POST ABOVE
    available:
    http://aur.archlinux.org/packages.php?ID=33376
    this package will install a mkinitcpio hook intended for those who wish to have a single or multi-drive BTRFS file system as their / (root).  the hook will ensure that the chosen root device from the kernel command line is intact and safe to boot.  if root is not a BTRFS device, the hook is quietly skipped.
    it requires btrfs-progs from here:
    http://aur.archlinux.org/packages.php?ID=15635
    hook supports both UUID or device based root names.  UUID is safer; the entire BTRFS array only has one UUID, so referring to it means no problems. use /dev/device/by-uuid on kernel boot.
    hook supports hot spares by using a dummy, spare BTRFS file system to steal devices from as needed.  the spare pool can be referenced by label or UUID.**
    hook supports automatic repairing of the array if possible, automatic dropping of missing/failed devices if possible, and booting the array to a degraded state (one or more devices missing) if possible.**
    **NOTE: there are some bugs that may be in the hook/btrfs module/btrfs-progs that prevent raid1 (maybe others) arrays from being repaired (see http://pastebin.com/m5706f47f) however, this hook will work fine as is for single/multi-device arrays that are intact.  enable experimental options manually by editing options in the hook itself (/lib/initcpio/hooks/btrfs).  USE WITH CAUTION ON MULTI-DEVICE SETUPS.
    the initramfs script can be seen here:
    http://aur.archlinux.org/packages/mkini … btrfs_hook
    its fairly commented, although there are a few things i'll point out for others who want to edit:
    1) i plan to rework _btrfs_scandev() to be more flexible in the variables it produces.  that function simply parses "btrfs-show" and gleans valuable information from it.  it will be used to verify array states with certainty.
    2) seems that btrfsctl does not have meaningful exit codes right now, do not rely, see _btrfs_register().
    3) seems that after legitimately removing a device from an array (NOT using "missing" special keyword), the mount needs a "mount -o remout [mnt]" for the ***missing flag to be removed from btrfs-show.  not sure the ramification of this or if its necessary.
    4) some or all of this functionality may someday be provided by module/kernel
    needs work + comments
    add "btrfs" to HOOKS in mkinitcpio.conf
    Last edited by extofme (2010-06-10 06:09:10)

    bleh, sorry about the late response, i usually subscribe to topics i create/join, i must have missed this one.
    resi wrote:After minor problems with the mkinitcpio (lvm hook seems to conflict with the btrfs one) image and fstab (why do I have to specify the root fs there? its already mounted when fstab is examined)
    i could be mistaken here, but initially your / is mounted read-only.  during the init process, one of the primary scripts issues a "mount -o remount,rw /" to remount the root device as read-write.  i _think_ using the mount command in this way (against a mount point and not a device) requires the mount point to exist in the fstab.
    resi wrote:But what happens if I really screw it up? I'm on 2.6.33 (.2-1) and read about missing ioctl()s regarding btrfs, meaning I can't replace the "default" subvolume (whats the difference between a subvolume and a snapshot anyway?). Its also not possible to list available subvolumes/snpshots, meaning your script (or organizing snapshots in similar ways) is the only chance to keep track of them, right?
    the inability to set the default subvolume is kind of a non-issue after i thought about it more, and some of the discussion on arch-general.  i plan to update the hook soon to allow the "promotion" of the rollback to become the new active subvolume.  ill do this by snapshotting your current / to a new subvolume called /__active, and then permanently booting into that [__active] instead of / or "." (a period is the default subvolume, like current directory).
    there is no difference internally, whatsoever (AFIAK), between a subvolume and a snapshot.  its just a matter of context: a subvolume starts out empty (explicitly created via a command/etc.), and a snapshot starts out with content (COW operation against an existing subvolume, i.e. "copy")
    yeah without the ability to list available subvolumes, we have to make up some structure, and assume everything goes well.  my script simply assumes anything within /snapshots is indeed a snapshot that can be copied (to /__rollback) and booted.  even if we can list subvolumes, we'll still need some kind of predefined structure (so the script knows which snapshots are bootable, and which are not, i.e. snapshots of /home are not bootable).
    resi wrote:I guess a plain "mount -t btrfs /dev/xyz" will mount the "default" subvolume then.
    correct.
    resi wrote:
    Once I really screw up I will have to boot into a snapshot, mount the default subvolume somewhere and restore it using a full copy from the snapshot (a la rsync --delete), then reboot and I'm back at the start again.
    Is this correct?
    unfortunately, without modifying the script, a manual copy is necessary :-( totally defeating the advantages of btrfs.  so, yes.  the problem is that the default subvolume itself cannot be replace by another... note this is different from SETTING the default subvolume.  i'm not sure if the real default subvolume ("." the period) will ever be replaceable/removable, i'd have to ask the btrfs list.  this is why i advocate installing your system into a subvolume FROM THE BEGINNING.  this gives us more flexibility.
    resi wrote:Is there some way to permanently change the subvolume mounted by your hook (i.e. not running in a volatile snapshot, but actually drop the default one and always boot into a given snapshot until further notice - a new snapshot)?
    this is actually how i intend to implement non-volatile rollback abilities in the hook.  instead of booting the default "." subvolume, my hook will ALWAYS boot the subvolume called "__active", located at /__active.  this way you can put whatever you want there, and it will be booted at the next reboot.  therefore, you can boot into rollback mode (essentially booting into /__rollback), update/add/remove whatever you want, and when your satisfied, you simply snapshot /__rollback to /__active and your done.  reboot, and your new __active will be in the same state as the point it was created in rollback mode.
    does all this make sense?  i'm told i tend to over explain/complicate things :-).
    resi wrote:Before every -Syu I have to check for kernel/xorg updates, read about them, check the mailing list, wait ... wait ... wait ... loose patience, give it a shot, recompile/reinstall the necessary stuff (at least I've got PKGBUILDs prepared) and hope for the best. With btrfs, this is just a non-issue. Or at least will be once the integration is better.
    i hear ya.  i like the idea of riding the edge without the fear of being cut by it.  unfortunately, until btrfs is supported by grub2, kernel rollbacks aren't possible (you'd have to manually backup your old kernel+initrd).  something to keep in mind.
    hunterthomson wrote:However, if I can just tell my clients to reboot into a snapshot "problem solved." Then I can spend the time to solve the problem, without the client siting around with a broken system.
    bingo.  that is pretty much my primary motivation here... less time freaking out about down time/whatever; everybody wins.
    hunterthomson wrote:Did you know Fedora 13 supports Btrfs Snapshotting and Roll-Back. Super cool.
    i know they have some support but i haven't tried it; from what i've read, the support is pretty weak... you can get yum to create the snapshot by installing a package, but there is no utility to actually use them later on.  i could be mistaken as i don't use fedora, this is only what i've read.
    what sucks is pacman doesnt have any ability to use hooks... i dont think we will see automatic snapshots by the package manager without a wrapper like clyde/powerpill/packer/etc.
    C Anthony

  • The Strange Case of the Missing Shared Devices...

    Dear Forum,
    I am currently having intermittent trouble with the connection of shared devices.
    The network consists of a MBP, Qnap TS109 and a Canon printer hooked up via LAN to a WAG200G. The Qnap serves music to a PS3 (WLAN) and the Mac and also serves as a TimeMachine back up device.
    The problem is that every so often I lose my Shared Devices in the Finder side-bar. They just disappear.
    I have managed to reconnect by playing with the Network connections preferences, but as I suspected (due to exhausting the permutations), this solution has come to an end and now I cannot urge them to reappear (unless I restart (which is a solution, but not an entirely satisfactory one)…
    All devices have been set to use static IP address (none conflict).
    The Mac’s settings are as follows:
    TCP/IP-
    Configure IPv4 Manually: then my IP address.
    Subnet and router are both correct as I can connect to the Qnap & WAG admin pages and internet (I’m not sure if that is a correct test of these settings, but the numbers are correct).
    Configure IPv6: Off.
    Under DNS : I have entered both DNS servers as per the instructions of the ISP (I have been with them for years and these are correct).
    WINS- (I don’t know what this is but…)
    NETBIOS Name: the name of my Mac (All uppercase (don’t know why, but looks definitely windows (ish))
    Workgroup: (blank)
    WINS Servers (blank),
    802.1X & Proxies: everything is per the default setting as I have never touched anything in these options.
    Ethernet-
    ID: My Mac MAC
    Configure: Auto
    Speed, Duplex and MTU have never been touched, but I am assuming that Auto covers these.
    Under Network (System Preferences), then Location: Auto, then next to Status: Connected (currently active and correct IP)
    The WAG is the only thing on this mini network that sets DHCP, I could change this to disable as everything has it’s own Static IP, but is there any need?
    (I hope I am getting the terminology correct and not inadvertently creating confusion.)
    The PS3 sees the Twonky server in the Qnap, so I am not sure if that is an issue, it doesn’t appear to be.
    So why the missing devices?
    None of this would actually be a problem if it was not for the fact that once the Qnap disappears from the Finder side-bar, TimeMachine does not back up (yet I can connect via a browser to the Qnap, even if it is not present in the side-bar).
    The problem is I feel as though my thinking is a bit blinkered as I am only concentrating on the Network connection aspect, yet I am afraid I am not entirely sure what else I should be considering. That is to say what is causing the Mac hooked up to a perfectly adequate connection/ functioning network to suddenly cause it to drop the devices, yet retain connection by other means?
    Unfortunately a forum member had exactly the same problem but sadly removed the query from open questions.
    It goes without saying (but there is no harm in me saying it anyway), but any help would be appreciated.

    Bump
    This recently happened to me as well, actually it's happened for awhile, and only recently have begun to try to find the answers. Did you ever find out what happened?
    Also seems like this post: http://discussions.apple.com/message.jspa?messageID=11367180
    But that has no answers posted either. Perhaps a reformat and stick with 10.6.2, which is what I think the last version the "Shared Devices" automatically showed without deliberately mounting a network drive.
    My situation is pretty much the same, "Shared Devices" do not automatically show up on the left sidebar. If I know the IP address or netbios name, I can mount network hard drives: Command + K and smb://ipaddress
    My Computers, I have an iBook G4, which used to automatically pop up; a Windows7 computer that used to automatically show; and an Ubuntu 10.04 computer that would show up as well for screen sharing and smb.
    Possible culprits include: netbios/smb problems, mDNSresponder/Bonjour problems, other networking config. No settings permutations have fixed the problem.

  • Pacman upgrade missing current

    Hi!
    I just performed a full system upgrade 'pacman -Syu'. There was a new version of pacman so I upgraded pacman first, but when it was done my current mirror list in /etc/pacman.d/ was missing... Can someone help me so that I can make a new current mirror list?
    Last edited by tjololo (2007-09-18 08:56:22)

    jacques wrote:
    Im having problems updating pacman itself.  I know everyone has said wait for the servers to sync, but, hasn't there been enough time for that to have happened already?
    Once Im finished the base installation, I try and update pacman, but, Im never able to download the new version.  It runs through the server lists, but doesn't connect.  However, I know I am connected as Ive downloaded other files...
    Any idea what's up?
    i had the same problem 2/3 times i tried this morning. it's very weird.
    i did a pacman -Syu but it did not find latest pacman. the third time i tried the installation all went fine. and -Syu found the latest version of pacman.

  • A pop-up message is frozen on my settings page. I was trying to set up an apple id for iTunes when I got a message "required fields have been left blank. The missing information is highlighted in red." the ok button doesn't work. 1st gen iPad.

    A pop-up message is frozen on my settings page. I was trying to set up an apple id for iTunes when I got a message "required fields have been left blank. The missing information is highlighted in red." the ok button doesn't work. The message is now fixed & I cannot get rid of it. Ironically, when I found this forum I was able to set up an apple Id. Please advise how to get rid of the pop-up box. Thanks!

    I'm having this same problem as well and cannot advance--very irritating. All of the information is filled out correctly and I've editted my AppleID information online separately as well to get around this issue, but no luck...

  • I just noticed that some of the movies I had in iTunes did not get transferred to the iPhone. The missing movies are shown as generic movie icons in the iTunes panel. How do I get the original movies to show up again and transfer to the iPhone?

    I just noticed that some of the movies I had in iTunes did not get transferred to the iPhone 5. The missing movies are shown as generic movie icons in the iTunes panel and are checked to select them. But they do not show up in iPhone Videos. How do I get the original movies to show up again and transfer to the iPhone? I recently upgraded Mac OS to 10.6.8

    1. iTunes won't offer cloud downloads for songs that it "thinks" are in your library, even if it "knows" the files are missing. If you've exhaustively searched for the missing files and there is no prospect of repair by restoring to them to their original locations, or connecting to new ones, then delete that tracks that display both the missing exclamation mark and are of media kind Purchased/Protected AAC audio file. Don't hide from iTunes in the cloud when asked, close iTunes, then reopen. You can download from the cloud links or iTunes Store > Quicklinks > Purchased > Music > Not on this computer > All songs > Download all.
    2. Why? Not sure, perhaps 3rd party tools or accidental key presses combined with previously hidden warning messages when trying to organize the library. There is a hint that using the feature to downsample media as it is synced to a device may also be involved, though I've not replicated it. Whatever the reason a backup would protect your media.
    tt2

  • Tutorial Dreamweaver Cs5.5 The Missing Manual (Pg 998 - 1018) about adding dynamic data to your page

    Hallo,
    I did Tutorial: Displaying Database Info in the Missing Manual for Dreamweaver CS5.5.
    My problem is with "Editing a Recordset and Linking to a Detail Page" (which starts at pg 1002:
    I did this exercise ,over 5 times nowe, but every time with "Building the Detailed Product Page" at pg 1007, I get a bad result.
    I only get one page (the default one with productID = 1) for every link on the indexpage.
    In the adressbar (Live View) I see the right adress: for example: http://localhost/cos...hp?productID=16, but for all productID's only the detailspage for productID are shown.
    There is also a message: Notice: Use of undefined constant ‘productID’ - assumed '‘productID’' in E:\xampp\htdocs\cosmo_shop\product.php on line 34
    But I don't understand what could be wrong in this line.
    Here is the code lines 33 -48: is is about the second line:
    $varProduct_rsDetails = "32";
    if (isset($_GET[‘productID’])) {
      $varProduct_rsDetails = $_GET[‘productID’];
    mysql_select_db($database_connCosmo, $connCosmo);
    $query_rsDetails = sprintf("SELECT products.productID, products.productName, products.price, products.`description`, products.inventory, products.image, vendors.vendorName FROM products, vendors WHERE products.vendorID = vendors.vendorID AND products.productID = %s ", GetSQLValueString($varProduct_rsDetails, "int"));
    $rsDetails = mysql_query($query_rsDetails, $connCosmo) or die(mysql_error());
    $row_rsDetails = mysql_fetch_assoc($rsDetails);
    $totalRows_rsDetails = mysql_num_rows($rsDetails);
    mysql_select_db($database_connCosmo, $connCosmo);
    $query_rsCategories = "SELECT * FROM categories ORDER BY categoryName ASC";
    $rsCategories = mysql_query($query_rsCategories, $connCosmo) or die(mysql_error());
    $row_rsCategories = mysql_fetch_assoc($rsCategories);
    $totalRows_rsCategories = mysql_num_rows($rsCategories);
    ?>
    Can someone tell me what is going on here?
    Kind regards, Ans Hekerman

    I can manually type in double brackets, like this:
    $varProduct_rsDetails = "1";
    if (isset($_GET["productID"])) {
      $varProduct_rsDetails = $_GET["productID"];
    this is accepted; no syntax-error report.
    I can manually type in single brackets, like this:
    $varProduct_rsDetails = "1";
    if (isset($_GET['productID'])) {
      $varProduct_rsDetails = $_GET['productID'];
    this is also accepted; no syntax-error report.
    Dreamweaver itself made this code:
    $varProduct_rsDetails = "32";
    if (isset($_GET[‘productID’])) {
    $varProduct_rsDetails = $_GET[‘productID’];
    this was not OK; there was a syntax-error report.
    But strange enough, when I do paste this now from here, it is accepted.
    So the problem has been, that DW created code that gave a syntax error.
    I could repair it by replacing the single qoutes of DW, by typing single quotes in DW manually, or by typing in in DW manually double qoutes!!!
    So maybe everybode was right!!!
    But is was a very bad problem; maybe a "bug" of the program?
    I repeated this about 10 times before I got the solution frome this Forum.

  • In firefox 4 RC, some addons installed suddenly disappear, but checking the profile, some of the missing addons related files are still here, how to make the addons back?

    I use firefox 4 form beta 9 to RC (zh) now and there are also firefox 3.6 installed in computer. One day when I open Fx 4 RC, some (actually a lot but not all) of the adoons just disappear. When I check on about:addons page, some addons installed do not appear in the list.
    The addons '''REMAINED''' including:
    * addons I already used in Fx 3.6 (like webmail notifie , xmarks)
    * ''addons only can use in Fx 4'' (like Open Web Apps for Firefox).
    The addons '''DISAPPEARED''' including:
    * addons I already used in Fx 3.6 (like yoono)
    * '' addons installed when using Fx 4'' (like updatescanner, Thumbnail Zoom).
    But when I check the profile(by Help > Troubleshooting Information>Open Containing Folder) , some (not sure is it all) of the missing addons related files are still here [lucky], so any one know how to make the missing addons back?
    Some more details:
    * This happened when i use RC for already a few days and keep on even i restart Fx and windows.
    * The bookmarks, history, search engine and even themes and icon setting are still here. [ I only sync bookmarks but not history for both xmarks and firefox sync.]
    * This addons are really '''disappeared''' but not disable only!
    * This number of addons missed, as i remember, at least 30, should be more than that number bacause some of them are installed but in disable mode.
    * I try to install back one of the addons - Stylish, the installed code are still here.
    * It is nearly an impossible mission to install every missing addons again, as it really kill my time.

    Delete the files extensions.* (extensions.rdf, extensions.cache, extensions.ini, extensions.sqlite) and compatibility.ini in the Firefox [[Profiles|profile folder]] to reset the extensions registry. New files will be created when required.
    See "Corrupt extension files": http://kb.mozillazine.org/Unable_to_install_themes_or_extensions
    If you see disabled, not compatible, extensions in "Tools > Add-ons > Extensions" then click the Tools button at the left side of the Search Bar to do a compatibility check.

  • I got problem when trying to contact my iphone 4 using facetime,it did ringing,but my iphone 4 did not receive that call as if nothing happen.But,when the call ended,that call appeared in the missed call list.fyi both are connected to internet.

    i got problem when trying to call my iphone 4 using facetime with my Macbook Pro 13',it did ringing,but my iphone 4 did not receive that call as if nothing happen.But,when the call ended,that call appeared in the missed call list.fyi both are connected to internet.Help!! thank you in advance

    i got problem when trying to call my iphone 4 using facetime with my Macbook Pro 13',it did ringing,but my iphone 4 did not receive that call as if nothing happen.But,when the call ended,that call appeared in the missed call list.fyi both are connected to internet.Help!! thank you in advance

  • I am trying to connect a Windows 7 / 64 bit to an Epson printer on my Mac.  The printer is hooked into the Mac via USB; the Mac is networked to a Linksys wireless router with an ethernet cable, as is the Windows box. Any tips on how to do this?

    I am trying to connect a Windows 7 / 64 bit to an Epson printer on my Mac.  The printer is hooked into the Mac via USB; the Mac is networked to a Linksys wireless router with an ethernet cable, as is the Windows box. I installed the current Bonjour printer services software on the Windows machine, and separately installed the driver software for the Epson printer on the WIndows machine.  Running the bonjour wizard, I get an alert saying 'I don't have sufficient access to my computer to connect to the selected printer'.
    The printer has 'sharing' turned on from the Mac end; this works with a Powerbook via the wireless connection.  Sharing is also turned on in the Windows printer control panel for this printer (under properties).  The Mac is a G5 running 10.5.8.  When I try to print a page from the Windows machine it gets hung in the print queue.
    Any advice how to proceed would be appreciated!
    thx,

    I am trying to connect a Windows 7 / 64 bit to an Epson printer on my Mac.  The printer is hooked into the Mac via USB; the Mac is networked to a Linksys wireless router with an ethernet cable, as is the Windows box. I installed the current Bonjour printer services software on the Windows machine, and separately installed the driver software for the Epson printer on the WIndows machine.  Running the bonjour wizard, I get an alert saying 'I don't have sufficient access to my computer to connect to the selected printer'.
    The printer has 'sharing' turned on from the Mac end; this works with a Powerbook via the wireless connection.  Sharing is also turned on in the Windows printer control panel for this printer (under properties).  The Mac is a G5 running 10.5.8.  When I try to print a page from the Windows machine it gets hung in the print queue.
    Any advice how to proceed would be appreciated!
    thx,

  • MC-q report is not updating the missing Sales Orders, Deliveries andInvoice

    Hi Friends,
    Before setting the configuration of MC-q report I have created some Sales orders, deliveries and Invoices
    But I want to update the missing above documents  in MC-q report sales report.
    Could you please suggest me how can I update all the missing details in MC-q report report (Sales Orders, Deliveries and Invoices)
    Thank you for your support
    Best Regards
    Amjathpasha

    Hello Amjathpasha,
    You will need to perform a rebuild of statistics with transactions OLI7, OLI8, OLI9.
    I hope this helps.
    Best regards,
    Ian Kehoe

  • Missed calls - a missed call is shown on the screen when the phone is locked. I slide the icon an the phone calls the back to the missed number. The phone still show a missed no. It should clear the icon since I obviously noted the missed call. Any fixes?

    Ok, a wish for the next iOS release, just a small anoying thing.
    Scenario:
    I have a missed call, the screen is locked. The name of the caller shows up on the screen, I slide the phone icon and phone back.
    When I've ended the call there is still a notification of a missed call, i.e. the same missed call that I just called back. To clear the missed call red circle icon on the phone icon (in the unlocked state and the notification on the locked screen) I must open the missed call list. Then it clears.
    My wish is that the phone understands that it should clear that missed call after I returned the call since I have obviously noted it.
    -> Is this something apple will update or is there a setting that I could change?
    /Erik

    You have to return the call via the recent list or tap the red missed call entry in recent list otherwise even a hundred calls won't turn the balloon off.

  • 4 of the songs on a recently purchased album do not appear on my computer. I bought the album on my phone, and all of the songs are accounted for there, but on my computer it shows as an incomplete album and ITunes wants me to buy the missing songs?

    I recently purchased Slipknot's ".5: The Gray Chapter" on my phone via an ITunes gift card worth $15 dollars. The album did have some trouble downloading because of a bad signal, and a good number of songs "could not be downloaded at this time". To download the missing songs, I had to go into ITunes store>more>purchased>music>all songs and click download on the few that didn't. This fixed that problem, and now the entire album is on my phone, but when the album transferred over to my computer, 4 of the songs still did not appear.  Not only that, it says that they have not been purchased. The ITunes card I used only has a dollor left on it, so I know it registered the purchase. The 10th, 14th, 15th, and 16th tracks still have $1.29 next to them, and ITunes is showing the album as an incomplete.

    We are having this same issue.  We have over 200 songs that are now missing and only our most recent ones show up in our ITunes library.  Fortunately we have one phone that still has all of our music still in tact. This phone is no longer one I will be using as I upgraded to the Iphone 6, and only the most recent purchased songs remain.  The rest are no where to be found and the iTunes store shows that I would need to re-purchase.  Not sure what to do as when I tried to sync my last phone, all the songs were gone.

  • I have used the same Apple ID on my children's iPads. Both iPads are now showing as the same. How do I get the missing account back?

    I have used the same Apple ID on my children's iPads. Both iPads are now showing as the same. How do I get the missing account back?

    You can clear the iPad and start again with the other account> Settings->General->Reset->Erase all Content & Settings
    Or you can go to Settings->Itunes and App Stores->Apple ID->Sign Out,
    And Then  Sign in with the other account. You can then download the Apps with that account. Though you may block the other account for 90 days.
    Your best bet is to set it up again using the orighinal account it had, so you can get their Apps back. without affecting your account.

  • HT201269 Is there a way to download/port the missing data/SMS to one iPhone without overwriting the new SMS on the newer iPhone?

    SMS Transferring/downloading/backup : Is there a way to download/port the missing data/SMS to one iPhone without overwriting the new SMS on the newer iPhone? Here is my dilemma. My iPhone quit working and I couldn’t get it fixed as quickly as I needed to. I bought a used iPhone and started using it normally and downloaded the backup from itunes/icloud. There was a large gap in data where the first iPhone didn’t backup when I thought it had. I have SMS data on both phonesnow and  I need them for a court hearing. I have since had the other iPhone repaired and working perfectly. Will downloading a backup wipe out the newer SMS data? I am nervous because I can’t lose the information or my case mey be compromised. Any “Real Help” including programs that work to accomplish this would be very helpful. Thank You in advance…

    No, direct access to manipulating the phone's filesystem is not permitted for 3rd party apps in the iOS.  It can't be done without hacking the phone, which you certainly don't want to do.  The messages can be combined and viewed on your computer, but not on a single phone.

Maybe you are looking for

  • How can I record a voice over and save as MP3?

    Good morning! I do voice overs. In my studio I STILL have a PC and use adobe audition. For my day to day business I know have a MAC BOOK PRO. I am going on vacation and need to record on my MacBook Pro with Garage Band. I have successfully set up my

  • Download helper , problems with youtube downloads and the spinning balls don't spin all time like they used to.

    download helper's spinning balls used to spin all the time and downloading videos from youtube worked. But about a week ago the spinning ball stopped spinning all the time. When trying to download video's the spinning balls start spinning but downloa

  • Is it possible to use the af:query component with programmatic VOs?

    My understanding is that the view criteria in a normal SQL-based VO are used to add WHERE clauses to the VO. Since programmatic VOs do no have this capability, is there something I need to override in the view object implementation class to support t

  • Update BSEG-KIDNO

    Hi, There is a requirement to update the field BSEG-KIDNO not only for customer and vendor item but also in GL line item in an accounting document. Any advice on how to make this possible? It seems that I can't find userexit for this. I'm looking on

  • SMTP postfix crashing -  network_biopair_interop read timeout

    Periodically, my mail server goes into a crash cycle. Error messages like those below appear, and very quickly, the machine becomes unresponsive (I believe because it can't fork any more process - so OD won't authenticate, and any command which requi