[SOLVED] Extending an LVM partition

Recently did a fresh install of Arch, using encryption with LVM on top and Gnome as the desktop. Soon after I had a pop up warning on logging in about there only being 100Mb left on /usr. So I extended the /usr group by 1Gb with the command: " lvextend -L4G /dev/base/usr ", the original size was 3Gb.
So now lvscan shows me this:
[root@kaminari /etc]# lvscan
ACTIVE '/dev/base/tmp' [500.00 MiB] inherit
ACTIVE '/dev/base/var' [2.93 GiB] inherit
ACTIVE '/dev/base/usr' [4.00 GiB] inherit
ACTIVE '/dev/base/root' [1000.00 MiB] inherit
ACTIVE '/dev/base/home' [390.62 GiB] inherit
Great it's apparently 4Gb, but I still get this pop up warning about there being not enough room on /usr.
[root@kaminari /etc]# df -h /usr
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/base-usr 2.9G 2.7G 93M 97% /usr
The above shows something isnt quite right!  Where am I going wrong?
Last edited by Fruity (2010-10-29 16:18:28)

Doh, thanks

Similar Messages

  • [SOLVED] Can't initialize LVM partitions

    I have Ubuntu 8.10 installed on LVM. I'm tring to install Arch using the same partition setup I already have for Ubuntu.
    For some reason after I load dm-mod module the LVM partitions do not appear in /dev/mapper the /dev/{$VG_NAME} directory also does not exist.
    If I do lvscan I see all of my logical volumes. I tried to do partprobe but it didn't help.
    I can't recreate the VG because I'll lose all my data in /home and unfortunatly I don't have a place to back it up.
    I'm using the archlinux-2008.06-ftp-x86_64.iso the md5sum matches so there is no problem with the installer.
    Does any one know how to fix it?
    Thanks in advance.
    Last edited by kian.tern (2008-11-30 13:27:23)

    also, there is an option to automatically start logical volumes at boot-time in /etc/rc.conf:
    USELVM="yes"
    Did you also put your root partition on LVM? Then you'd better add the "lvm2" hook to $HOOKS in /etc/mkinitcpio.conf, make sure your boot-partition (if you have one) is mounted read-write, and run as root:
    mkinitcpio -p kernel26
    If your root is not on LVM, the mkinitcpio step is unnecessary

  • [SOLVED] KVM Virtual machine using virt-install on a LVM partition

    Hello,
    I am far from an expert, and I am trying to build a virtual machine (debian squeeze) on my Arch 64 bits host. The VM will serve as a server with usual services (http, mail, ftp, media server etc). This is only for my own purpose and I do it as a hobby.I have no obligation to success, and more important I want to understand everything i do. I have some doubts, so why my post here.
    I want to install the VM on a LVM partition.
    -I first create successfully a LVM partition on /dev/sda4
    $fdisk -l /dev/sda
    /dev/sda4 1925115904 2949116309 512000203 8e LVM Linux
    I will install the VM (named "daffodil") on a 200G Logical Volume on groupe vg0
    $ lvcreate –n lv_daffodil –L 200G vg0
    Logical volume “lv_daffodil” created
    Now I need to create the VM. I want to use virt-install IN COMMAND LINE. After days an days of reading (and headache), here is what i think is the correct command :
    virt-install --connect qemu:///system --name=daffodil --ram 8192 --cpu host
    --disk path=/dev/vg0/lv_daffodil,size=200,bus=virtio,sparse=false,format=raw --cdrom /var/lib/libvirt/images/isofiles/debian-6.0.4-amd64-netinst.iso
    --description="daffodil (debian squeeze) - vm guest on host magnolia" --graphics vnc --os-type=linux --os-variant=debiansqueeze
    --network bridge:br0 --video=vga --hvm --accelerate
    So my questions :
    Is the command correct and academic?
    I think size=200 is maybe not needed, as the LV has already be created. Right?
    format=raw seems weird to me and not needed. Right?
    My host has 16G RAM. Shall I put 16 as --ram argument or stay with 8 ?
    How about the filesystem? I want an ext4. Shall I create it on lv_daffodil BEFORE the install or will I do it under the install process when partitioning?
    Any advantage in creating smaller than 200G logical volume, even if I want my VM have enough space (The whole HD is 2T)?
    Not sure about the --accelerate argument
    Any hint for optimization?
    As a n00b ++, will I be able to manage SELinux on my server, as it seems a litle bit tricky?
    what about --noautoconsole argument?
    Thank you for your help and knowledge.
    Last edited by gabx (2012-05-02 10:39:16)

    As I didn't have any answer in one week, I suscribed to [email protected]
    For those of you interested in KVM, find below a script doing excatly the needed job.
    #!/bin/bash
    #created Thursday April 26 2012
    #following Richard W.M.Jones <[email protected]> advices and script
    #this script can be changed according your own need. This one will
    #install a debian VM called daffodil on a LVM partition, with 2 CPU, 8192 RAM
    # Script used to install VMs.
    # You have to lvcreate the disk first!
    # lvcreate -L sizeG -n $name vg_data
    set -e
    name=daffodil
    cpus="--cpu=host --vcpus=2"
    disk="--disk path=/dev/vg0/lv_daffodil"
    location="--cdrom /var/lib/libvirt/images/isofiles/debian-6.0.4-amd64-netinst.iso
    type="--os-type=linux"
    variant="--os-variant=debiansqueeze"
    graphics="--graphics spice"
    bus="virtio"
    network="--network bridge=br0"
    virt-install -n $name -r 8192 \
    $name $cpus $type $variant $disk $location $graphics $bus $network
    To answer to some of my queries in first post:
    no need to give the size as I want to use the full lvm I created first. Virt-install will pick up the size
    the filesystem will be created during install
    CPU amount should be less than the host, as well as CPU numbers.
    --accelerate argument is no more needed
    spice give usually better graphic results than vnc

  • [SOLVED] Grub2 and LVM -- "Couldn't find physical volume `pv1'"

    Hello Folks
    I'm trying to upgrade from grub-legacy to grub2, following the instructions at https://wiki.archlinux.org/index.php/GRUB2
    I've installed grub-bios, and run this without problem:
    # modprobe dm-mod
    # grub-install --recheck /dev/sda
    But this command
    # grub-mkconfig -o /boot/grub/grub.cfg
    gives this:
    Generating grub.cfg ...
    /usr/sbin/grub-probe: warning: Couldn't find physical volume `pv1'. Some modules may be missing from core image..
    /usr/sbin/grub-probe: warning: Couldn't find physical volume `pv1'. Some modules may be missing from core image..
    /usr/sbin/grub-probe: warning: Couldn't find physical volume `pv1'. Some modules may be missing from core image..
    /usr/sbin/grub-probe: warning: Couldn't find physical volume `pv1'. Some modules may be missing from core image..
    /usr/sbin/grub-probe: warning: Couldn't find physical volume `pv1'. Some modules may be missing from core image..
    Found linux image: /boot/vmlinuz-linux
    Found initrd image: /boot/initramfs-linux.img
    /usr/sbin/grub-probe: warning: Couldn't find physical volume `pv1'. Some modules may be missing from core image..
    done
    So now I'm reluctant to try to reboot the system because it seems likely to be broken.  Should I ignore the warnings, or fix something?
    I'm using LVM2 as you can see.  /boot is on a separate non-LVM partition (/dev/sdc1).  root is on LVM.  This is all on a recently-updated 64-bit Arch installation using systemd.
    Here's a load of information -- I hope it's relevant.
    # fdisk -lu
    Disk /dev/sdb: 250.1 GB, 250059350016 bytes, 488397168 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0xea22bb30
    Device Boot Start End Blocks Id System
    /dev/sdb1 63 488392064 244196001 83 Linux
    Disk /dev/sda: 250.0 GB, 250000000000 bytes, 488281250 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x00000080
    Device Boot Start End Blocks Id System
    /dev/sda1 2048 488281249 244139601 8e Linux LVM
    Disk /dev/sdc: 500.1 GB, 500107862016 bytes, 976773168 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x00000000
    Device Boot Start End Blocks Id System
    /dev/sdc1 * 63 481949 240943+ 83 Linux
    /dev/sdc2 481950 12482504 6000277+ 82 Linux swap / Solaris
    /dev/sdc3 12482505 976773167 482145331+ 8e Linux LVM
    Disk /dev/mapper/vg1-root: 64.4 GB, 64424509440 bytes, 125829120 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk /dev/mapper/vg1-home: 583.0 GB, 583008256000 bytes, 1138688000 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    # pvdisplay
    --- Physical volume ---
    PV Name /dev/sdc3
    VG Name vg1
    PV Size 459.81 GiB / not usable 1.05 MiB
    Allocatable yes (but full)
    PE Size 4.00 MiB
    Total PE 117711
    Free PE 0
    Allocated PE 117711
    PV UUID zaLJiO-1LCH-TGi6-hwBr-OyNs-Sjlm-HggrMo
    --- Physical volume ---
    PV Name /dev/sda1
    VG Name vg1
    PV Size 232.83 GiB / not usable 1.58 MiB
    Allocatable yes
    PE Size 4.00 MiB
    Total PE 59604
    Free PE 22955
    Allocated PE 36649
    PV UUID P05c2d-1d2i-bf0M-u6BX-EEq0-fvZW-VkTLhY
    # lvdisplay
    --- Logical volume ---
    LV Path /dev/vg1/root
    LV Name root
    VG Name vg1
    LV UUID Z68H3p-VvbC-ZNau-7Ds7-GptS-Hpl0-VZNjo4
    LV Write Access read/write
    LV Creation host, time ,
    LV Status available
    # open 1
    LV Size 60.00 GiB
    Current LE 15360
    Segments 1
    Allocation inherit
    Read ahead sectors auto
    - currently set to 256
    Block device 254:0
    --- Logical volume ---
    LV Path /dev/vg1/home
    LV Name home
    VG Name vg1
    LV UUID uUfmS9-C4CK-Vw3V-cmwD-hEC1-VcwD-90yAyO
    LV Write Access read/write
    LV Creation host, time ,
    LV Status available
    # open 1
    LV Size 542.97 GiB
    Current LE 139000
    Segments 2
    Allocation inherit
    Read ahead sectors auto
    - currently set to 256
    Block device 254:1
    Last edited by Chris Dennis (2013-04-03 19:04:58)

    Chris Dennis wrote:
    Oh well, I took a punt on the word 'Warning' in the message, and rebooted anyway.
    It worked!
    I've just completed a series of experiments involving LVM and GRUB2. The short story is that such warnings are innocuous and arise from extending a volume group.
    Now in some detail, here's what happens (all of which was performed in VirtualBox with the current Arch rolling release just to make it easy to add and remove disk devices):
    a). pvcreate /dev/sde1 /dev/sdf1
    * Use partitions of type 8e, spanning the whole drive, for BOTH devices comprising the physical
    volume to prove that partitioning is irrelevant to the matter.
    b). vgcreate vg_x /dev/sde1
    * Start with just one device in the volume group.
    c). lvcreate --extents 100%VG --name boot vg_x
    d). mkfs.ext4 /dev/vg_x/boot && mount /dev/vg_x/boot /mnt/other
    e). grub2-install --boot-directory=/mnt/other /dev/sde
    Installation finished. No error reported.
    All is well...but now let's extend the vg_x volume group with the pre-allocated device, /dev/sdf1:
    f). vgextend vg_x /dev/sdf1
    g). grub2-install --boot-directory=/mnt/other /dev/sde
    /usr/sbin/grub2-probe: warning: Couldn't find physical volume `pv1'. Some modules may be missing from core
    /usr/sbin/grub2-probe: warning: Couldn't find physical volume `pv1'. Some modules may be missing from core
    Installation finished. No error reported.
    ...and boom goes the dynamite. As Chris Dennis stated, GRUB2 installs fine and the system is bootable in spite of the warning. The grub-2.00 source where the warning arises is in ./grub-core/disk/diskfilter.c and has this comment:
    /* TRANSLATORS: This message kicks in during the detection of
    which modules needs to be included in core image. This happens
    in the case of degraded RAID and means that autodetection may
    fail to include some of modules. It's an installation time
    message, not runtime message. */
    I haven't tried to hack the GRUB code but, based upon my experimentation and the ease of replicating the problem, my guess is that somehow a volume group that extended in manner shown above is mishandled by GRUB. It's arguably a bug, IMHO, since a volume group, even when extended, is still a valid entity.

  • Looking for a One to Many script to extend the system partition for Windows 7 machines

    Looking for a One to Many script to extend the system partition for Windows 7 machines

    Pre-written scripts can be found in the repository:
    http://gallery.technet.microsoft.com/scriptcenter
    If you can't find what you need, you can request a script (no idea if anyone ever bothers to fulfill these requests though, I know I don't):
    http://gallery.technet.microsoft.com/scriptcenter/site/requests
    Let us know if you have any specific questions.
    Don't retire TechNet! -
    (Don't give up yet - 12,950+ strong and growing)

  • How do I share an lvm partition between two systems?

    Hi,
      I have a regular system which I usually work from, and I created a lvm partition using that system to store files in. I have another Arch system on the same harddrive (different partition) and I would like to know how I can access the lvm partition using the second system.
      I have the following in my new system
    /dev/sda8 swap swap defaults 0 0
    /dev/sda9 / ext3 defaults 0 1
    /dev/sda5 /mnt/arch ext3 defaults 0 0
    /dev/sda2 /mnt/boot ext2 defaults 0 0
    /dev/sda6 /mnt/arch-home reiserfs defaults 0 0
    /dev/ravilvg/lvmpartition /mnt/lvmpartition reiserfs defaults,users 0 0
      When I try to mount '/mnt/lvmpartition', I get
    [root@myhost ravi]# mount /mnt/lvmpartition/
    mount: special device /dev/ravilvg/lvmpartition does not exist
      I have put USELVM="yes" in my rc.conf, and on bootup I get the message that Device mapper is not in the kernel. 'lsmod' shows the dm_mod module is not loaded, but loading the module and running the mount command still does not work.
      Here are the outputs of the lvm commands
    [root@myhost ravi]# lvm pvscan
    PV /dev/sda10 VG ravilvg lvm2 [24.20 GB / 0 free]
    Total: 1 [24.20 GB] / in use: 1 [24.20 GB] / in no VG: 0 [0 ]
    [root@myhost ravi]# lvm vgscan
    Reading all physical volumes. This may take a while...
    Found volume group "ravilvg" using metadata type lvm2
    [root@myhost ravi]# lvm lvscan
    inactive '/dev/ravilvg/lvmpartition' [24.20 GB] inherit
      Thanks,
    Ravster

    Hi,
      You were right, the solution was to simply activate the volume
      What I did was
    lvm lvchange -ay /dev/ravilvg/lvmpartition
      The lvm partition is now accesible from both systems
    Thanks for your help,
    Ravster

  • [solved]Booting a LVM logical volume spanned across two LUKS paritions

    I have two partitions formatted as LUKS that both physical LVM volumes for a logical LVM partition that holds my root filesystem.  I can't seem to figure out what the kernel line should be.  I tried specifying cryptdevice twice, but it seems to only want to take one of the cryptdevice= options.  What now?
    Last edited by synthead (2011-12-09 16:17:06)

    I found this: https://bbs.archlinux.org/viewtopic.php … 95#p827495
    Modifying /lib/initcpio/hooks/encrypt with the patch as recommended did the trick.  I'll file a feature request for this

  • Not able to extend the disk partition in our server 2008

    Hi  all,
    extend the partition but t it not able to do that.We are using the windows server 2008 in our setup. one of my exchange server I want to extend the partition. I had already extend the partition but now its not able to do that and shows the below  error.
    in the diskmangement view I can  see the partition  in splitted format when ever I previously extended  it shows the same( I extended 3, 4 times).  is it ok to delete the Splitted partition?
    awaiting for the solutions eagerly.
    Jags

    When the unallocated space is not behind the assigned partition, you cannot directly extend your wanted partition in Disk Management. That may be why you’ve failed at first.
    But, without using disk management tools, you also can try to extend your partition with partition resizing software within several steps.
    Here are detailed steps for you to go on extending your partition space:
    http://www.partition-magic-server-2003.blogspot.com/2013/11/resize-server-2003-partition-free.html
    I hope you can get some clues there.
    Back up all partition data well in advance in case of data loss. 

  • Systemd Boot Problem - Times out waiting for LVM partitions

    At first I had a problem in which the initramfs didn't map LVM partitions to /dev/vg0/lv, only /dev/mapper/vg0-lv. I changed /dev/vg0/root to /dev/mapper/vg0-root in bootloader configuration as a hacky workaround.
    Getting closer to a working system, systemd failed boot because my fstab entries are uuids, and for some reason, my LVM volumes aren't showing up in /dev/disk/by-*. My flash drive boot partition shows up in there though.
    I replaced the uuids with /dev/mapper/vg0-* and tried again. Now my boot fails with this:
    Oct 21 19:19:31 archserver systemd[1]: Job dev-mapper-vg0\x2dmedia.device/start timed out.
    Oct 21 19:19:31 archserver systemd[1]: Timed out waiting for device dev-mapper-vg0\x2dmedia.device.
    Oct 21 19:19:31 archserver systemd[1]: Dependency failed for /mnt/media.
    Oct 21 19:19:31 archserver systemd[1]: Dependency failed for Local File Systems.
    Boot log: http://sprunge.us/LEhG
    mkinitcpio.conf: http://sprunge.us/QEBK
    What should I do?

    This may be LVM's incompatibility with anything hotplug (it may not be, your issue sounds more obscure). You need to create your own, local lvm service file. I'll tell you how. This is /usr/lib/systemd/system/lvm.service:
    [Unit]
    Description=LVM activation
    DefaultDependencies=no
    Requires=systemd-udev-settle.service
    After=systemd-udev-settle.service
    Before=basic.target shutdown.target
    Conflicts=shutdown.target
    [Service]
    ExecStart=/sbin/vgchange --available y
    Type=oneshot
    TimeoutSec=0
    RemainAfterExit=yes
    [Install]
    WantedBy=basic.target
    Create /etc/systemd/system/lvm_local.service:
    [Unit]
    Description=LVM activation
    DefaultDependencies=no
    Requires=dev-something-something1.device
    After=dev-something-something1.device
    Requires=dev-something-something2.device
    After=dev-something-something2.device
    Before=basic.target shutdown.target
    Conflicts=shutdown.target
    [Service]
    ExecStart=/sbin/vgchange --available y
    Type=oneshot
    TimeoutSec=0
    RemainAfterExit=yes
    [Install]
    WantedBy=basic.target
    No, what to you put in those "something-something1" places above? For each LVM physical volume, run 'systemctl status /dev/disk/by-uuid/$UUID' where $UUID is the UUID of your physical volume. You'll get a status output showing the exact name of the correct .device unit. Then 'systemctl enable lvm_local.service'.
    This speeds up boot and makes sure lvm is properly initialized. After writing all this, I am unsure if this is at all related to your problem, as your volume group is activated in initramfs and the links should be set up by udev.

  • Extending a leopard partition

    I'm in the process of trying to upgrade a macbook's hard drive. I didn't have access to another mac to try any migration utilities, so I plugged the 80 gig old sata drive and the 160 gig new sata drive into a linux system, and did a dd if=/dev/sdb of=/dev/sdc (sdb being the 80 gig and sdc being the 160).
    I plugged the 160 gig drive into the laptop, everything booted just fine. I then tried to expand the main osx partition to include the remainder of the drive.
    To verify that the os was recognizing a 160 gig drive in the system i went to disk utilities, loaded up the partition table. It showed the previous 80 gig partition, and showed approximately 80 gigs of free space. Since I couldn't extend the partition through disk utility without reformatting that partition, and since the laptop is running Leopard, I decided to try using the latest and greatest diskutil feature.
    sudo diskutil resizeVolume /dev/disk0s2 153G.
    This resulted in an error "Resizing encountered error The chosen size is not valid for the chosen filesystem (-9962)"
    I know that the journaled HFS+ file system can support partitions well beyond 160 gigs, but I tried lowering the size i was trying to expand the partition to a few gigs below what was available anyway. I kept getting the same errors. When I tried a
    diskutil resizeVolume /dev/disk0s2 limits
    I found that the partition was listed as being at it's maximum possible size of 80Gig, implying that it was unable to expand into the adjoining unoccupied space.
    Any hints or advice on how I can extend the partition?

    I don't believe that the problem is related to either the fact a linux system was used or that this is a Intel Mac. The dd command does a direct copy, meaning that all of the data (including that relating to partitioning) is an identical copy of the 80 gig drive. The result would have been the same if I used dd to duplicate the drive in any unix system (linux, bsd / osX, or solaris). The fact that the system booted in the first place and that disk utility was able to read a noncorrupted partition scheme reflects that.
    I used this same process a few months ago, to clone a tiger installation, and subsequently extended the tiger partition to use the remaining disk space using ipartition. Unfortunately that version of ipartition is incompatable with leopard.
    As diskutil has been updated in the leopard os to include the ability to resize active volumes (making bootcamp installations possible in the first place), I'm hoping to find an integrated os solution rather than buying and relying on a new version of ipartition.

  • [SOLVED] Grub failure with LVM partitions

    I'm trying to install Arch with GPT partitions with BIOS. I've got to the stage of now installing GRUB and it's failing with the below error:
    Installing for i386-pc platform.
    grub-install: info: cannot open `/boot/grub/device.map': No such file or directory.
    grub-install: info: copying `/usr/lib/grub/i386-pc/915resolution.mod' -> `/boot/grub/i386-pc/915resolution.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_whirlpool.mod' -> `/boot/grub/i386-pc/gcry_whirlpool.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_twofish.mod' -> `/boot/grub/i386-pc/gcry_twofish.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_tiger.mod' -> `/boot/grub/i386-pc/gcry_tiger.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_sha512.mod' -> `/boot/grub/i386-pc/gcry_sha512.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_sha256.mod' -> `/boot/grub/i386-pc/gcry_sha256.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_sha1.mod' -> `/boot/grub/i386-pc/gcry_sha1.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_serpent.mod' -> `/boot/grub/i386-pc/gcry_serpent.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_seed.mod' -> `/boot/grub/i386-pc/gcry_seed.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_rsa.mod' -> `/boot/grub/i386-pc/gcry_rsa.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_rmd160.mod' -> `/boot/grub/i386-pc/gcry_rmd160.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_rijndael.mod' -> `/boot/grub/i386-pc/gcry_rijndael.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_rfc2268.mod' -> `/boot/grub/i386-pc/gcry_rfc2268.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_md5.mod' -> `/boot/grub/i386-pc/gcry_md5.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_md4.mod' -> `/boot/grub/i386-pc/gcry_md4.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_idea.mod' -> `/boot/grub/i386-pc/gcry_idea.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_dsa.mod' -> `/boot/grub/i386-pc/gcry_dsa.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_des.mod' -> `/boot/grub/i386-pc/gcry_des.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_crc.mod' -> `/boot/grub/i386-pc/gcry_crc.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_cast5.mod' -> `/boot/grub/i386-pc/gcry_cast5.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_camellia.mod' -> `/boot/grub/i386-pc/gcry_camellia.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_blowfish.mod' -> `/boot/grub/i386-pc/gcry_blowfish.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_arcfour.mod' -> `/boot/grub/i386-pc/gcry_arcfour.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/file.mod' -> `/boot/grub/i386-pc/file.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/progress.mod' -> `/boot/grub/i386-pc/progress.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/tr.mod' -> `/boot/grub/i386-pc/tr.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/testspeed.mod' -> `/boot/grub/i386-pc/testspeed.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gdb.mod' -> `/boot/grub/i386-pc/gdb.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/all_video.mod' -> `/boot/grub/i386-pc/all_video.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/mpi.mod' -> `/boot/grub/i386-pc/mpi.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/crc64.mod' -> `/boot/grub/i386-pc/crc64.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/adler32.mod' -> `/boot/grub/i386-pc/adler32.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/boottime.mod' -> `/boot/grub/i386-pc/boottime.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/cacheinfo.mod' -> `/boot/grub/i386-pc/cacheinfo.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/time.mod' -> `/boot/grub/i386-pc/time.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/priority_queue.mod' -> `/boot/grub/i386-pc/priority_queue.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/keylayouts.mod' -> `/boot/grub/i386-pc/keylayouts.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/lsapm.mod' -> `/boot/grub/i386-pc/lsapm.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/backtrace.mod' -> `/boot/grub/i386-pc/backtrace.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/testload.mod' -> `/boot/grub/i386-pc/testload.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/lzopio.mod' -> `/boot/grub/i386-pc/lzopio.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/xzio.mod' -> `/boot/grub/i386-pc/xzio.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/test_blockarg.mod' -> `/boot/grub/i386-pc/test_blockarg.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/syslinuxcfg.mod' -> `/boot/grub/i386-pc/syslinuxcfg.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/legacycfg.mod' -> `/boot/grub/i386-pc/legacycfg.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/http.mod' -> `/boot/grub/i386-pc/http.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/tftp.mod' -> `/boot/grub/i386-pc/tftp.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/net.mod' -> `/boot/grub/i386-pc/net.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/datehook.mod' -> `/boot/grub/i386-pc/datehook.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/video_colors.mod' -> `/boot/grub/i386-pc/video_colors.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/video.mod' -> `/boot/grub/i386-pc/video.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/video_fb.mod' -> `/boot/grub/i386-pc/video_fb.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/vbe.mod' -> `/boot/grub/i386-pc/vbe.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/tga.mod' -> `/boot/grub/i386-pc/tga.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/png.mod' -> `/boot/grub/i386-pc/png.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/jpeg.mod' -> `/boot/grub/i386-pc/jpeg.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/bitmap_scale.mod' -> `/boot/grub/i386-pc/bitmap_scale.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/bitmap.mod' -> `/boot/grub/i386-pc/bitmap.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/cmdline_cat_test.mod' -> `/boot/grub/i386-pc/cmdline_cat_test.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gfxterm_menu.mod' -> `/boot/grub/i386-pc/gfxterm_menu.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/videotest_checksum.mod' -> `/boot/grub/i386-pc/videotest_checksum.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/div_test.mod' -> `/boot/grub/i386-pc/div_test.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/legacy_password_test.mod' -> `/boot/grub/i386-pc/legacy_password_test.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/pbkdf2_test.mod' -> `/boot/grub/i386-pc/pbkdf2_test.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/xnu_uuid_test.mod' -> `/boot/grub/i386-pc/xnu_uuid_test.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/sleep_test.mod' -> `/boot/grub/i386-pc/sleep_test.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/signature_test.mod' -> `/boot/grub/i386-pc/signature_test.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/setjmp_test.mod' -> `/boot/grub/i386-pc/setjmp_test.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/exfctest.mod' -> `/boot/grub/i386-pc/exfctest.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/functional_test.mod' -> `/boot/grub/i386-pc/functional_test.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/video_bochs.mod' -> `/boot/grub/i386-pc/video_bochs.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/video_cirrus.mod' -> `/boot/grub/i386-pc/video_cirrus.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/mda_text.mod' -> `/boot/grub/i386-pc/mda_text.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/vga_text.mod' -> `/boot/grub/i386-pc/vga_text.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/vga.mod' -> `/boot/grub/i386-pc/vga.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/usb_keyboard.mod' -> `/boot/grub/i386-pc/usb_keyboard.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/terminfo.mod' -> `/boot/grub/i386-pc/terminfo.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/sendkey.mod' -> `/boot/grub/i386-pc/sendkey.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/serial.mod' -> `/boot/grub/i386-pc/serial.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gfxterm_background.mod' -> `/boot/grub/i386-pc/gfxterm_background.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gfxterm.mod' -> `/boot/grub/i386-pc/gfxterm.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/at_keyboard.mod' -> `/boot/grub/i386-pc/at_keyboard.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/msdospart.mod' -> `/boot/grub/i386-pc/msdospart.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/part_dfly.mod' -> `/boot/grub/i386-pc/part_dfly.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/part_sunpc.mod' -> `/boot/grub/i386-pc/part_sunpc.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/part_bsd.mod' -> `/boot/grub/i386-pc/part_bsd.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/part_dvh.mod' -> `/boot/grub/i386-pc/part_dvh.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/part_plan.mod' -> `/boot/grub/i386-pc/part_plan.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/part_sun.mod' -> `/boot/grub/i386-pc/part_sun.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/part_msdos.mod' -> `/boot/grub/i386-pc/part_msdos.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/part_gpt.mod' -> `/boot/grub/i386-pc/part_gpt.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/part_apple.mod' -> `/boot/grub/i386-pc/part_apple.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/part_amiga.mod' -> `/boot/grub/i386-pc/part_amiga.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/part_acorn.mod' -> `/boot/grub/i386-pc/part_acorn.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/normal.mod' -> `/boot/grub/i386-pc/normal.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/mmap.mod' -> `/boot/grub/i386-pc/mmap.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/chain.mod' -> `/boot/grub/i386-pc/chain.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/macho.mod' -> `/boot/grub/i386-pc/macho.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/xnu.mod' -> `/boot/grub/i386-pc/xnu.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/linux.mod' -> `/boot/grub/i386-pc/linux.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/multiboot.mod' -> `/boot/grub/i386-pc/multiboot.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/multiboot2.mod' -> `/boot/grub/i386-pc/multiboot2.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/pxechain.mod' -> `/boot/grub/i386-pc/pxechain.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/freedos.mod' -> `/boot/grub/i386-pc/freedos.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/truecrypt.mod' -> `/boot/grub/i386-pc/truecrypt.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/ntldr.mod' -> `/boot/grub/i386-pc/ntldr.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/linux16.mod' -> `/boot/grub/i386-pc/linux16.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/plan9.mod' -> `/boot/grub/i386-pc/plan9.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/bsd.mod' -> `/boot/grub/i386-pc/bsd.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/aout.mod' -> `/boot/grub/i386-pc/aout.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/setjmp.mod' -> `/boot/grub/i386-pc/setjmp.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/datetime.mod' -> `/boot/grub/i386-pc/datetime.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/relocator.mod' -> `/boot/grub/i386-pc/relocator.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/pbkdf2.mod' -> `/boot/grub/i386-pc/pbkdf2.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/crypto.mod' -> `/boot/grub/i386-pc/crypto.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/elf.mod' -> `/boot/grub/i386-pc/elf.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/bufio.mod' -> `/boot/grub/i386-pc/bufio.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/offsetio.mod' -> `/boot/grub/i386-pc/offsetio.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gzio.mod' -> `/boot/grub/i386-pc/gzio.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/hello.mod' -> `/boot/grub/i386-pc/hello.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gfxmenu.mod' -> `/boot/grub/i386-pc/gfxmenu.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gettext.mod' -> `/boot/grub/i386-pc/gettext.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/pxe.mod' -> `/boot/grub/i386-pc/pxe.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/macbless.mod' -> `/boot/grub/i386-pc/macbless.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/zfsinfo.mod' -> `/boot/grub/i386-pc/zfsinfo.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/zfscrypt.mod' -> `/boot/grub/i386-pc/zfscrypt.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/zfs.mod' -> `/boot/grub/i386-pc/zfs.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/xfs.mod' -> `/boot/grub/i386-pc/xfs.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/ufs2.mod' -> `/boot/grub/i386-pc/ufs2.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/ufs1_be.mod' -> `/boot/grub/i386-pc/ufs1_be.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/ufs1.mod' -> `/boot/grub/i386-pc/ufs1.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/udf.mod' -> `/boot/grub/i386-pc/udf.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/tar.mod' -> `/boot/grub/i386-pc/tar.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/squash4.mod' -> `/boot/grub/i386-pc/squash4.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/sfs.mod' -> `/boot/grub/i386-pc/sfs.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/romfs.mod' -> `/boot/grub/i386-pc/romfs.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/reiserfs.mod' -> `/boot/grub/i386-pc/reiserfs.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/ntfscomp.mod' -> `/boot/grub/i386-pc/ntfscomp.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/ntfs.mod' -> `/boot/grub/i386-pc/ntfs.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/nilfs2.mod' -> `/boot/grub/i386-pc/nilfs2.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/minix3_be.mod' -> `/boot/grub/i386-pc/minix3_be.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/minix2_be.mod' -> `/boot/grub/i386-pc/minix2_be.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/minix_be.mod' -> `/boot/grub/i386-pc/minix_be.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/minix3.mod' -> `/boot/grub/i386-pc/minix3.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/minix2.mod' -> `/boot/grub/i386-pc/minix2.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/minix.mod' -> `/boot/grub/i386-pc/minix.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/jfs.mod' -> `/boot/grub/i386-pc/jfs.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/iso9660.mod' -> `/boot/grub/i386-pc/iso9660.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/hfspluscomp.mod' -> `/boot/grub/i386-pc/hfspluscomp.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/hfsplus.mod' -> `/boot/grub/i386-pc/hfsplus.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/hfs.mod' -> `/boot/grub/i386-pc/hfs.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/fshelp.mod' -> `/boot/grub/i386-pc/fshelp.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/exfat.mod' -> `/boot/grub/i386-pc/exfat.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/fat.mod' -> `/boot/grub/i386-pc/fat.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/ext2.mod' -> `/boot/grub/i386-pc/ext2.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/odc.mod' -> `/boot/grub/i386-pc/odc.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/newc.mod' -> `/boot/grub/i386-pc/newc.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/cpio_be.mod' -> `/boot/grub/i386-pc/cpio_be.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/cpio.mod' -> `/boot/grub/i386-pc/cpio.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/cbfs.mod' -> `/boot/grub/i386-pc/cbfs.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/archelp.mod' -> `/boot/grub/i386-pc/archelp.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/btrfs.mod' -> `/boot/grub/i386-pc/btrfs.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/bfs.mod' -> `/boot/grub/i386-pc/bfs.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/afs.mod' -> `/boot/grub/i386-pc/afs.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/affs.mod' -> `/boot/grub/i386-pc/affs.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/procfs.mod' -> `/boot/grub/i386-pc/procfs.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/font.mod' -> `/boot/grub/i386-pc/font.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/efiemu.mod' -> `/boot/grub/i386-pc/efiemu.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/usbms.mod' -> `/boot/grub/i386-pc/usbms.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/biosdisk.mod' -> `/boot/grub/i386-pc/biosdisk.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/pata.mod' -> `/boot/grub/i386-pc/pata.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/ahci.mod' -> `/boot/grub/i386-pc/ahci.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/ata.mod' -> `/boot/grub/i386-pc/ata.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/memdisk.mod' -> `/boot/grub/i386-pc/memdisk.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/scsi.mod' -> `/boot/grub/i386-pc/scsi.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/raid6rec.mod' -> `/boot/grub/i386-pc/raid6rec.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/raid5rec.mod' -> `/boot/grub/i386-pc/raid5rec.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/diskfilter.mod' -> `/boot/grub/i386-pc/diskfilter.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/mdraid1x.mod' -> `/boot/grub/i386-pc/mdraid1x.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/mdraid09_be.mod' -> `/boot/grub/i386-pc/mdraid09_be.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/mdraid09.mod' -> `/boot/grub/i386-pc/mdraid09.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/ldm.mod' -> `/boot/grub/i386-pc/ldm.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/lvm.mod' -> `/boot/grub/i386-pc/lvm.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/geli.mod' -> `/boot/grub/i386-pc/geli.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/luks.mod' -> `/boot/grub/i386-pc/luks.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/cryptodisk.mod' -> `/boot/grub/i386-pc/cryptodisk.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/loopback.mod' -> `/boot/grub/i386-pc/loopback.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/dm_nv.mod' -> `/boot/grub/i386-pc/dm_nv.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/xnu_uuid.mod' -> `/boot/grub/i386-pc/xnu_uuid.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/videotest.mod' -> `/boot/grub/i386-pc/videotest.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/videoinfo.mod' -> `/boot/grub/i386-pc/videoinfo.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/usbtest.mod' -> `/boot/grub/i386-pc/usbtest.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/true.mod' -> `/boot/grub/i386-pc/true.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/test.mod' -> `/boot/grub/i386-pc/test.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/terminal.mod' -> `/boot/grub/i386-pc/terminal.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/sleep.mod' -> `/boot/grub/i386-pc/sleep.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/pcidump.mod' -> `/boot/grub/i386-pc/pcidump.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/setpci.mod' -> `/boot/grub/i386-pc/setpci.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/search_label.mod' -> `/boot/grub/i386-pc/search_label.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/search_fs_uuid.mod' -> `/boot/grub/i386-pc/search_fs_uuid.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/search_fs_file.mod' -> `/boot/grub/i386-pc/search_fs_file.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/search.mod' -> `/boot/grub/i386-pc/search.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/read.mod' -> `/boot/grub/i386-pc/read.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/probe.mod' -> `/boot/grub/i386-pc/probe.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/morse.mod' -> `/boot/grub/i386-pc/morse.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/spkmodem.mod' -> `/boot/grub/i386-pc/spkmodem.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/play.mod' -> `/boot/grub/i386-pc/play.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/password_pbkdf2.mod' -> `/boot/grub/i386-pc/password_pbkdf2.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/password.mod' -> `/boot/grub/i386-pc/password.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/parttool.mod' -> `/boot/grub/i386-pc/parttool.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/minicmd.mod' -> `/boot/grub/i386-pc/minicmd.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/memrw.mod' -> `/boot/grub/i386-pc/memrw.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/lspci.mod' -> `/boot/grub/i386-pc/lspci.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/lsmmap.mod' -> `/boot/grub/i386-pc/lsmmap.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/ls.mod' -> `/boot/grub/i386-pc/ls.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/loadenv.mod' -> `/boot/grub/i386-pc/loadenv.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/keystatus.mod' -> `/boot/grub/i386-pc/keystatus.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/hexdump.mod' -> `/boot/grub/i386-pc/hexdump.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/help.mod' -> `/boot/grub/i386-pc/help.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/hdparm.mod' -> `/boot/grub/i386-pc/hdparm.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/verify.mod' -> `/boot/grub/i386-pc/verify.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/hashsum.mod' -> `/boot/grub/i386-pc/hashsum.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/reboot.mod' -> `/boot/grub/i386-pc/reboot.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/halt.mod' -> `/boot/grub/i386-pc/halt.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/gptsync.mod' -> `/boot/grub/i386-pc/gptsync.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/extcmd.mod' -> `/boot/grub/i386-pc/extcmd.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/eval.mod' -> `/boot/grub/i386-pc/eval.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/echo.mod' -> `/boot/grub/i386-pc/echo.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/drivemap.mod' -> `/boot/grub/i386-pc/drivemap.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/date.mod' -> `/boot/grub/i386-pc/date.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/cpuid.mod' -> `/boot/grub/i386-pc/cpuid.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/configfile.mod' -> `/boot/grub/i386-pc/configfile.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/cmp.mod' -> `/boot/grub/i386-pc/cmp.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/cat.mod' -> `/boot/grub/i386-pc/cat.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/boot.mod' -> `/boot/grub/i386-pc/boot.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/blocklist.mod' -> `/boot/grub/i386-pc/blocklist.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/lsacpi.mod' -> `/boot/grub/i386-pc/lsacpi.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/acpi.mod' -> `/boot/grub/i386-pc/acpi.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/regexp.mod' -> `/boot/grub/i386-pc/regexp.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/cbmemc.mod' -> `/boot/grub/i386-pc/cbmemc.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/cbls.mod' -> `/boot/grub/i386-pc/cbls.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/cbtime.mod' -> `/boot/grub/i386-pc/cbtime.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/cbtable.mod' -> `/boot/grub/i386-pc/cbtable.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/iorw.mod' -> `/boot/grub/i386-pc/iorw.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/cmosdump.mod' -> `/boot/grub/i386-pc/cmosdump.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/cmostest.mod' -> `/boot/grub/i386-pc/cmostest.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/nativedisk.mod' -> `/boot/grub/i386-pc/nativedisk.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/pci.mod' -> `/boot/grub/i386-pc/pci.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/ehci.mod' -> `/boot/grub/i386-pc/ehci.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/ohci.mod' -> `/boot/grub/i386-pc/ohci.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/uhci.mod' -> `/boot/grub/i386-pc/uhci.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/usbserial_usbdebug.mod' -> `/boot/grub/i386-pc/usbserial_usbdebug.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/usbserial_ftdi.mod' -> `/boot/grub/i386-pc/usbserial_ftdi.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/usbserial_pl2303.mod' -> `/boot/grub/i386-pc/usbserial_pl2303.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/usbserial_common.mod' -> `/boot/grub/i386-pc/usbserial_common.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/usb.mod' -> `/boot/grub/i386-pc/usb.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/cs5536.mod' -> `/boot/grub/i386-pc/cs5536.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/trig.mod' -> `/boot/grub/i386-pc/trig.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/disk.mod' -> `/boot/grub/i386-pc/disk.mod'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/efiemu32.o' -> `/boot/grub/i386-pc/efiemu32.o'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/efiemu64.o' -> `/boot/grub/i386-pc/efiemu64.o'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/moddep.lst' -> `/boot/grub/i386-pc/moddep.lst'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/command.lst' -> `/boot/grub/i386-pc/command.lst'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/fs.lst' -> `/boot/grub/i386-pc/fs.lst'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/partmap.lst' -> `/boot/grub/i386-pc/partmap.lst'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/parttool.lst' -> `/boot/grub/i386-pc/parttool.lst'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/video.lst' -> `/boot/grub/i386-pc/video.lst'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/crypto.lst' -> `/boot/grub/i386-pc/crypto.lst'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/terminal.lst' -> `/boot/grub/i386-pc/terminal.lst'.
    grub-install: info: copying `/usr/lib/grub/i386-pc/modinfo.sh' -> `/boot/grub/i386-pc/modinfo.sh'.
    grub-install: info: copying `/usr/share/locale/bg/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/bg.mo'.
    grub-install: info: cannot open `/usr/share/locale/bg/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/ja/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ja.mo'.
    grub-install: info: copying `/usr/share/locale/pl/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/pl.mo'.
    grub-install: info: copying `/usr/share/locale/sl/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sl.mo'.
    grub-install: info: copying `/usr/share/locale/be/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/be.mo'.
    grub-install: info: cannot open `/usr/share/locale/be/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/ca/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ca.mo'.
    grub-install: info: copying `/usr/share/locale/uk/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/uk.mo'.
    grub-install: info: copying `/usr/share/locale/cs/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/cs.mo'.
    grub-install: info: cannot open `/usr/share/locale/cs/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/rw/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/rw.mo'.
    grub-install: info: cannot open `/usr/share/locale/rw/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/it/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/it.mo'.
    grub-install: info: copying `/usr/share/locale/eo/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/eo.mo'.
    grub-install: info: copying `/usr/share/locale/nb/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/nb.mo'.
    grub-install: info: cannot open `/usr/share/locale/nb/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/id/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/id.mo'.
    grub-install: info: copying `/usr/share/locale/ko/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ko.mo'.
    grub-install: info: cannot open `/usr/share/locale/ko/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/fr/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/fr.mo'.
    grub-install: info: copying `/usr/share/locale/en_GB/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en_GB.mo'.
    grub-install: info: cannot open `/usr/share/locale/en_GB/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/vi/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/vi.mo'.
    grub-install: info: copying `/usr/share/locale/es/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/es.mo'.
    grub-install: info: copying `/usr/share/locale/de/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/de.mo'.
    grub-install: info: copying `/usr/share/locale/fi/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/fi.mo'.
    grub-install: info: copying `/usr/share/locale/zh_CN/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/zh_CN.mo'.
    grub-install: info: copying `/usr/share/locale/gl/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/gl.mo'.
    grub-install: info: copying `/usr/share/locale/ia/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ia.mo'.
    grub-install: info: cannot open `/usr/share/locale/ia/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/locale.alias/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/locale.alias.mo'.
    grub-install: info: cannot open `/usr/share/locale/locale.alias/LC_MESSAGES/grub.mo': Not a directory.
    grub-install: info: copying `/usr/share/locale/da/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/da.mo'.
    grub-install: info: copying `/usr/share/locale/hu/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/hu.mo'.
    grub-install: info: copying `/usr/share/locale/lt/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/lt.mo'.
    grub-install: info: copying `/usr/share/locale/ru/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ru.mo'.
    grub-install: info: copying `/usr/share/locale/pt_BR/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/pt_BR.mo'.
    grub-install: info: copying `/usr/share/locale/hr/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/hr.mo'.
    grub-install: info: cannot open `/usr/share/locale/hr/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/tr/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/tr.mo'.
    grub-install: info: copying `/usr/share/locale/zh_TW/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/zh_TW.mo'.
    grub-install: info: copying `/usr/share/locale/el/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/el.mo'.
    grub-install: info: cannot open `/usr/share/locale/el/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/sv/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sv.mo'.
    grub-install: info: copying `/usr/share/locale/nl/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/nl.mo'.
    grub-install: info: copying `/usr/share/locale/sk/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sk.mo'.
    grub-install: info: cannot open `/usr/share/locale/sk/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/en@quot/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/[email protected]'.
    grub-install: info: copying `/usr/share/locale/en@boldquot/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/[email protected]'.
    grub-install: info: cannot open `/usr/share/locale/en@boldquot/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/af/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/af.mo'.
    grub-install: info: cannot open `/usr/share/locale/af/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/et/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/et.mo'.
    grub-install: info: cannot open `/usr/share/locale/et/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/ga/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ga.mo'.
    grub-install: info: cannot open `/usr/share/locale/ga/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/ro/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ro.mo'.
    grub-install: info: cannot open `/usr/share/locale/ro/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/sr/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sr.mo'.
    grub-install: info: cannot open `/usr/share/locale/sr/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/te/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/te.mo'.
    grub-install: info: cannot open `/usr/share/locale/te/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/ta/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ta.mo'.
    grub-install: info: cannot open `/usr/share/locale/ta/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/sl_SI/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sl_SI.mo'.
    grub-install: info: cannot open `/usr/share/locale/sl_SI/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/pt/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/pt.mo'.
    grub-install: info: cannot open `/usr/share/locale/pt/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/pa/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/pa.mo'.
    grub-install: info: copying `/usr/share/locale/or/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/or.mo'.
    grub-install: info: cannot open `/usr/share/locale/or/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/mr/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/mr.mo'.
    grub-install: info: cannot open `/usr/share/locale/mr/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/ml/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ml.mo'.
    grub-install: info: cannot open `/usr/share/locale/ml/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/kn/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/kn.mo'.
    grub-install: info: cannot open `/usr/share/locale/kn/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/hi/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/hi.mo'.
    grub-install: info: cannot open `/usr/share/locale/hi/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/gu/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/gu.mo'.
    grub-install: info: cannot open `/usr/share/locale/gu/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/bn_IN/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/bn_IN.mo'.
    grub-install: info: cannot open `/usr/share/locale/bn_IN/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/as/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/as.mo'.
    grub-install: info: cannot open `/usr/share/locale/as/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/en_US/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en_US.mo'.
    grub-install: info: cannot open `/usr/share/locale/en_US/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/xh/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/xh.mo'.
    grub-install: info: cannot open `/usr/share/locale/xh/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/th/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/th.mo'.
    grub-install: info: cannot open `/usr/share/locale/th/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/zu/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/zu.mo'.
    grub-install: info: cannot open `/usr/share/locale/zu/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/zh_HK/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/zh_HK.mo'.
    grub-install: info: cannot open `/usr/share/locale/zh_HK/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/ur/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ur.mo'.
    grub-install: info: cannot open `/usr/share/locale/ur/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/tg/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/tg.mo'.
    grub-install: info: cannot open `/usr/share/locale/tg/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/sr@latin/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/[email protected]'.
    grub-install: info: cannot open `/usr/share/locale/sr@latin/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/sq/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sq.mo'.
    grub-install: info: cannot open `/usr/share/locale/sq/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/si/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/si.mo'.
    grub-install: info: cannot open `/usr/share/locale/si/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/nn/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/nn.mo'.
    grub-install: info: cannot open `/usr/share/locale/nn/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/nds/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/nds.mo'.
    grub-install: info: cannot open `/usr/share/locale/nds/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/ms/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ms.mo'.
    grub-install: info: cannot open `/usr/share/locale/ms/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/mai/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/mai.mo'.
    grub-install: info: cannot open `/usr/share/locale/mai/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/lv/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/lv.mo'.
    grub-install: info: cannot open `/usr/share/locale/lv/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/ks/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ks.mo'.
    grub-install: info: cannot open `/usr/share/locale/ks/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/km/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/km.mo'.
    grub-install: info: cannot open `/usr/share/locale/km/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/kk/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/kk.mo'.
    grub-install: info: cannot open `/usr/share/locale/kk/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/ka/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ka.mo'.
    grub-install: info: cannot open `/usr/share/locale/ka/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/he/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/he.mo'.
    grub-install: info: cannot open `/usr/share/locale/he/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/fa/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/fa.mo'.
    grub-install: info: cannot open `/usr/share/locale/fa/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/eu/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/eu.mo'.
    grub-install: info: cannot open `/usr/share/locale/eu/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/bs/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/bs.mo'.
    grub-install: info: cannot open `/usr/share/locale/bs/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/br/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/br.mo'.
    grub-install: info: cannot open `/usr/share/locale/br/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/bn/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/bn.mo'.
    grub-install: info: cannot open `/usr/share/locale/bn/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/bal/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/bal.mo'.
    grub-install: info: cannot open `/usr/share/locale/bal/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/ast/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ast.mo'.
    grub-install: info: copying `/usr/share/locale/ar/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ar.mo'.
    grub-install: info: cannot open `/usr/share/locale/ar/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/lg/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/lg.mo'.
    grub-install: info: cannot open `/usr/share/locale/lg/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/am/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/am.mo'.
    grub-install: info: cannot open `/usr/share/locale/am/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/an/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/an.mo'.
    grub-install: info: cannot open `/usr/share/locale/an/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/az/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/az.mo'.
    grub-install: info: cannot open `/usr/share/locale/az/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/be@latin/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/[email protected]'.
    grub-install: info: cannot open `/usr/share/locale/be@latin/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/ca@valencia/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/[email protected]'.
    grub-install: info: cannot open `/usr/share/locale/ca@valencia/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/cy/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/cy.mo'.
    grub-install: info: cannot open `/usr/share/locale/cy/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/dz/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/dz.mo'.
    grub-install: info: cannot open `/usr/share/locale/dz/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/en_CA/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en_CA.mo'.
    grub-install: info: cannot open `/usr/share/locale/en_CA/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/en@shaw/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/[email protected]'.
    grub-install: info: cannot open `/usr/share/locale/en@shaw/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/hy/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/hy.mo'.
    grub-install: info: cannot open `/usr/share/locale/hy/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/is/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/is.mo'.
    grub-install: info: cannot open `/usr/share/locale/is/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/ku/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ku.mo'.
    grub-install: info: cannot open `/usr/share/locale/ku/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/mg/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/mg.mo'.
    grub-install: info: cannot open `/usr/share/locale/mg/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/mk/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/mk.mo'.
    grub-install: info: cannot open `/usr/share/locale/mk/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/mn/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/mn.mo'.
    grub-install: info: cannot open `/usr/share/locale/mn/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/ne/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ne.mo'.
    grub-install: info: cannot open `/usr/share/locale/ne/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/oc/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/oc.mo'.
    grub-install: info: cannot open `/usr/share/locale/oc/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/ps/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ps.mo'.
    grub-install: info: cannot open `/usr/share/locale/ps/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/sr@ije/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/[email protected]'.
    grub-install: info: cannot open `/usr/share/locale/sr@ije/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/tl/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/tl.mo'.
    grub-install: info: cannot open `/usr/share/locale/tl/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/ug/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ug.mo'.
    grub-install: info: cannot open `/usr/share/locale/ug/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/tt/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/tt.mo'.
    grub-install: info: cannot open `/usr/share/locale/tt/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/wa/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/wa.mo'.
    grub-install: info: cannot open `/usr/share/locale/wa/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/yi/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/yi.mo'.
    grub-install: info: cannot open `/usr/share/locale/yi/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/ky/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ky.mo'.
    grub-install: info: cannot open `/usr/share/locale/ky/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/de_AT/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/de_AT.mo'.
    grub-install: info: cannot open `/usr/share/locale/de_AT/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/no.us-ascii/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/no.us-ascii.mo'.
    grub-install: info: cannot open `/usr/share/locale/no.us-ascii/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/es.us-ascii/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/es.us-ascii.mo'.
    grub-install: info: cannot open `/usr/share/locale/es.us-ascii/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/de.us-ascii/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/de.us-ascii.mo'.
    grub-install: info: cannot open `/usr/share/locale/de.us-ascii/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/pt.us-ascii/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/pt.us-ascii.mo'.
    grub-install: info: cannot open `/usr/share/locale/pt.us-ascii/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/pt_BR.us-ascii/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/pt_BR.us-ascii.mo'.
    grub-install: info: cannot open `/usr/share/locale/pt_BR.us-ascii/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/en@piglatin/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/[email protected]'.
    grub-install: info: copying `/usr/share/locale/en@hebrew/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/[email protected]'.
    grub-install: info: copying `/usr/share/locale/en@arabic/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/[email protected]'.
    grub-install: info: copying `/usr/share/locale/de_CH/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/de_CH.mo'.
    grub-install: info: copying `/usr/share/locale/de@hebrew/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/[email protected]'.
    grub-install: info: copying `/usr/share/locale/en_AU/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en_AU.mo'.
    grub-install: info: cannot open `/usr/share/locale/en_AU/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/locale/my/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/my.mo'.
    grub-install: info: cannot open `/usr/share/locale/my/LC_MESSAGES/grub.mo': No such file or directory.
    grub-install: info: copying `/usr/share/grub/themes/starfield/COPYING.CC-BY-SA-3.0' -> `/boot/grub/themes/starfield/COPYING.CC-BY-SA-3.0'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/README' -> `/boot/grub/themes/starfield/README'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/theme.txt' -> `/boot/grub/themes/starfield/theme.txt'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/terminal_box_w.png' -> `/boot/grub/themes/starfield/terminal_box_w.png'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/terminal_box_sw.png' -> `/boot/grub/themes/starfield/terminal_box_sw.png'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/terminal_box_s.png' -> `/boot/grub/themes/starfield/terminal_box_s.png'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/terminal_box_se.png' -> `/boot/grub/themes/starfield/terminal_box_se.png'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/terminal_box_nw.png' -> `/boot/grub/themes/starfield/terminal_box_nw.png'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/terminal_box_n.png' -> `/boot/grub/themes/starfield/terminal_box_n.png'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/terminal_box_ne.png' -> `/boot/grub/themes/starfield/terminal_box_ne.png'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/terminal_box_e.png' -> `/boot/grub/themes/starfield/terminal_box_e.png'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/terminal_box_c.png' -> `/boot/grub/themes/starfield/terminal_box_c.png'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/starfield.png' -> `/boot/grub/themes/starfield/starfield.png'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/slider_s.png' -> `/boot/grub/themes/starfield/slider_s.png'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/slider_n.png' -> `/boot/grub/themes/starfield/slider_n.png'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/slider_c.png' -> `/boot/grub/themes/starfield/slider_c.png'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/boot_menu_w.png' -> `/boot/grub/themes/starfield/boot_menu_w.png'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/boot_menu_sw.png' -> `/boot/grub/themes/starfield/boot_menu_sw.png'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/boot_menu_s.png' -> `/boot/grub/themes/starfield/boot_menu_s.png'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/boot_menu_se.png' -> `/boot/grub/themes/starfield/boot_menu_se.png'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/boot_menu_nw.png' -> `/boot/grub/themes/starfield/boot_menu_nw.png'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/boot_menu_n.png' -> `/boot/grub/themes/starfield/boot_menu_n.png'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/boot_menu_ne.png' -> `/boot/grub/themes/starfield/boot_menu_ne.png'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/boot_menu_e.png' -> `/boot/grub/themes/starfield/boot_menu_e.png'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/boot_menu_c.png' -> `/boot/grub/themes/starfield/boot_menu_c.png'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/blob_w.png' -> `/boot/grub/themes/starfield/blob_w.png'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/dejavu_16.pf2' -> `/boot/grub/themes/starfield/dejavu_16.pf2'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/dejavu_14.pf2' -> `/boot/grub/themes/starfield/dejavu_14.pf2'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/dejavu_bold_14.pf2' -> `/boot/grub/themes/starfield/dejavu_bold_14.pf2'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/dejavu_12.pf2' -> `/boot/grub/themes/starfield/dejavu_12.pf2'.
    grub-install: info: copying `/usr/share/grub/themes/starfield/dejavu_10.pf2' -> `/boot/grub/themes/starfield/dejavu_10.pf2'.
    grub-install: info: copying `/usr/share/grub/unicode.pf2' -> `/boot/grub/fonts/unicode.pf2'.
    grub-install: info: changing current directory to /dev/mapper.
    grub-install: info: /dev/mapper/linux-boot is not present.
    File descriptor 4 (/boot) leaked on vgs invocation. Parent PID 10091: grub-install
    /run/lvm/lvmetad.socket: connect failed: No such file or directory
    WARNING: Failed to connect to lvmetad. Falling back to internal scanning.
    grub-install: info: /dev/sdb2 is not present.
    grub-install: info: Looking for /dev/sdb2.
    grub-install: info: /dev/sdb is a parent of /dev/sdb2.
    grub-install: info: /dev/sdb2 starts from 4096.
    grub-install: info: opening the device hostdisk//dev/sdb.
    grub-install: info: drive = 0.
    grub-install: info: the size of hostdisk//dev/sdb is 468862128.
    grub-install: info: drive = 0.
    grub-install: info: the size of hostdisk//dev/sdb is 468862128.
    grub-install: info: Scanning for DISKFILTER devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid1x devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid09_be devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid09 devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for dmraid_nv devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for ldm devices on disk hostdisk//dev/sdb.
    grub-install: info: scanning hostdisk//dev/sdb for LDM.
    grub-install: info: no LDM signature found.
    grub-install: info: Scanning for lvm devices on disk hostdisk//dev/sdb.
    grub-install: info: no LVM signature found.
    grub-install: info: Scanning for DISKFILTER devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid1x devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid09_be devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid09 devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for dmraid_nv devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for ldm devices on disk hostdisk//dev/sdb.
    grub-install: info: scanning hostdisk//dev/sdb for LDM.
    grub-install: info: no LDM signature found.
    grub-install: info: Scanning for lvm devices on disk hostdisk//dev/sdb.
    grub-install: info: Found array linux.
    grub-install: info: Inserting hostdisk//dev/sdb (+2048,2048) into linux (lvm)
    grub-install: info: drive = 0.
    grub-install: info: the size of hostdisk//dev/sdb is 468862128.
    grub-install: info: Scanning for DISKFILTER devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid1x devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid09_be devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid09 devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for dmraid_nv devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for ldm devices on disk hostdisk//dev/sdb.
    grub-install: info: scanning hostdisk//dev/sdb for LDM.
    grub-install: info: no LDM signature found.
    grub-install: info: Scanning for lvm devices on disk hostdisk//dev/sdb.
    grub-install: info: Inserting hostdisk//dev/sdb (+4096,468857999) into linux (lvm)
    grub-install: info: Partition 0 starts from 2048.
    grub-install: info: Partition 1 starts from 4096.
    grub-install: info: changing current directory to /dev.
    grub-install: info: changing current directory to linux.
    grub-install: info: /dev/sdb2 is present.
    grub-install: info: Looking for /dev/sdb2.
    grub-install: info: /dev/sdb is a parent of /dev/sdb2.
    grub-install: info: /dev/sdb2 starts from 4096.
    grub-install: info: opening the device hostdisk//dev/sdb.
    grub-install: info: drive = 0.
    grub-install: info: the size of hostdisk//dev/sdb is 468862128.
    grub-install: info: drive = 0.
    grub-install: info: the size of hostdisk//dev/sdb is 468862128.
    grub-install: info: Scanning for DISKFILTER devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid1x devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid09_be devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid09 devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for dmraid_nv devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for ldm devices on disk hostdisk//dev/sdb.
    grub-install: info: scanning hostdisk//dev/sdb for LDM.
    grub-install: info: no LDM signature found.
    grub-install: info: Scanning for lvm devices on disk hostdisk//dev/sdb.
    grub-install: info: no LVM signature found.
    grub-install: info: Scanning for DISKFILTER devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for DISKFILTER devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid1x devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid09_be devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid09 devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for dmraid_nv devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for ldm devices on disk hostdisk//dev/sdb.
    grub-install: info: scanning hostdisk//dev/sdb for LDM.
    grub-install: info: no LDM signature found.
    grub-install: info: Scanning for lvm devices on disk hostdisk//dev/sdb.
    grub-install: info: Inserting hostdisk//dev/sdb (+4096,468857999) into linux (lvm)
    grub-install: info: Partition 0 starts from 2048.
    grub-install: info: Partition 1 starts from 4096.
    grub-install: info: /dev/mapper/linux-boot is not present.
    File descriptor 4 (/boot) leaked on vgs invocation. Parent PID 10091: grub-install
    /run/lvm/lvmetad.socket: connect failed: No such file or directory
    WARNING: Failed to connect to lvmetad. Falling back to internal scanning.
    grub-install: info: /dev/sdb2 is present.
    grub-install: info: Looking for /dev/sdb2.
    grub-install: info: /dev/sdb is a parent of /dev/sdb2.
    grub-install: info: /dev/sdb2 starts from 4096.
    grub-install: info: opening the device hostdisk//dev/sdb.
    grub-install: info: drive = 0.
    grub-install: info: the size of hostdisk//dev/sdb is 468862128.
    grub-install: info: drive = 0.
    grub-install: info: the size of hostdisk//dev/sdb is 468862128.
    grub-install: info: Scanning for DISKFILTER devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid1x devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid09_be devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid09 devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for dmraid_nv devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for ldm devices on disk hostdisk//dev/sdb.
    grub-install: info: scanning hostdisk//dev/sdb for LDM.
    grub-install: info: no LDM signature found.
    grub-install: info: Scanning for lvm devices on disk hostdisk//dev/sdb.
    grub-install: info: no LVM signature found.
    grub-install: info: Scanning for DISKFILTER devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for DISKFILTER devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid1x devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid09_be devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid09 devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for dmraid_nv devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for ldm devices on disk hostdisk//dev/sdb.
    grub-install: info: scanning hostdisk//dev/sdb for LDM.
    grub-install: info: no LDM signature found.
    grub-install: info: Scanning for lvm devices on disk hostdisk//dev/sdb.
    grub-install: info: Inserting hostdisk//dev/sdb (+4096,468857999) into linux (lvm)
    grub-install: info: Partition 0 starts from 2048.
    grub-install: info: Partition 1 starts from 4096.
    grub-install: info: changing current directory to /dev.
    grub-install: info: changing current directory to linux.
    grub-install: info: /dev/sdb2 is present.
    grub-install: info: Looking for /dev/sdb2.
    grub-install: info: /dev/sdb is a parent of /dev/sdb2.
    grub-install: info: /dev/sdb2 starts from 4096.
    grub-install: info: opening the device hostdisk//dev/sdb.
    grub-install: info: drive = 0.
    grub-install: info: the size of hostdisk//dev/sdb is 468862128.
    grub-install: info: drive = 0.
    grub-install: info: the size of hostdisk//dev/sdb is 468862128.
    grub-install: info: Scanning for DISKFILTER devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid1x devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid09_be devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid09 devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for dmraid_nv devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for ldm devices on disk hostdisk//dev/sdb.
    grub-install: info: scanning hostdisk//dev/sdb for LDM.
    grub-install: info: no LDM signature found.
    grub-install: info: Scanning for lvm devices on disk hostdisk//dev/sdb.
    grub-install: info: no LVM signature found.
    grub-install: info: Scanning for DISKFILTER devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for DISKFILTER devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid1x devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid09_be devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for mdraid09 devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for dmraid_nv devices on disk hostdisk//dev/sdb.
    grub-install: info: Scanning for ldm devices on disk hostdisk//dev/sdb.
    grub-install: info: scanning hostdisk//dev/sdb for LDM.
    grub-install: info: no LDM signature found.
    grub-install: info: Scanning for lvm devices on disk hostdisk//dev/sdb.
    grub-install: info: Inserting hostdisk//dev/sdb (+4096,468857999) into linux (lvm)
    grub-install: info: Partition 0 starts from 2048.
    grub-install: info: Partition 1 starts from 4096.
    grub-install: info: Scanning for DISKFILTER devices on disk host.
    grub-install: info: Scanning for mdraid1x devices on disk host.
    grub-install: info: Scanning for mdraid09_be devices on disk host.
    grub-install: info: Scanning for mdraid09 devices on disk host.
    grub-install: info: Scanning for dmraid_nv devices on disk host.
    grub-install: info: Scanning for ldm devices on disk host.
    grub-install: info: scanning host for LDM.
    grub-install: info: no LDM signature found.
    grub-install: info: Sca

    Please remember to mark your thread as [Solved] by editing your first post and prepending it to the title.

  • [SOLVED] Filesystem check failed on LVM partition...

    My server experienced a power outage last night, and I noticed today that it wasn't booting correctly. Apparently, the storage partition, /dev/mapper/VolGroup00-lvolstorage fails the filesystem check. The first time I booted into it, I ran a manual check and answered (y) to the questions. Now when booting, it quickly displays a bunch of numbers and that scrolls for a little while (goes too fast to understand what they are...). Then it says:
    ####Filesystem Check Failed####
    Please repair manually, blah blah blah
    I'm not really sure what to do. Running fsck does the whole numbers scrolling across the screen thing again, finally asking if I want to clone multiply-claimed blocks... =/ I don't want to answer yes anymore until I get someone's input. <_<
    EDIT: It said before that there are 81 inodes containing multiply-claimed blocks... Then it said a certain large file (inode #20) has 27818 multiply-claimed blocks shared with 24 other files, and it then lists other files.
    Last edited by XtrmGmr99 (2010-05-21 14:14:25)

    It went ahead and fixed the filesystem, however some of the files (music files mostly) are corrupted and won't play. I have backups of those so it's no big lose, as long as the file system works now.

  • Extending an LVM Logical Volume to Another Disk

    I have read the article in the wiki and also this guide since my drives are encrypted. I have already set up arch on one drive with LVM on top of an encrypted volume (following the linked guide strictly with exceptions on the cipher and the partitioning). So far everything works very well but I'm only halfway where I want to end up. Additional to the one HDD I want to use two more, all of them encrypted (no problem here) and one logical volume spread across all three drives (problem be here).
    So, to clarify, on /dev/sda I have two partitions, /boot (unencrypted, 130 MB) and /dev/sda2 (encrypted, ~2TB) on which the LVM volumes are.
    /dev/sda2 is added to vgroup and has several logical volumes of which /home is the largest.
    On the other hand I have /dev/sdb and /dev/sdc. Both should only contain one encrypted partition and extend /home. That is why I chose LVM in the first place.
    I started with /dev/sdc since all the data on it has been backed up already. The entire drive is now one big encrypted partition called /dev/sdc1. I mounted it with sudo cryptsetup luksOpen /dev/sdc1 lvm. And here I am stuck.
    1) First of all I'm not entirely clear on the last part "lvm" of that command, I initially thought it would be the name this partition would be mounted under but in the guide I took this from it is not explained and I want to be extra careful here because I have a lot of data on /dev/sda2 that is not backed up and I don't want to accidentally erase the logical volumes I already have.
    2) I guess the next part would be creating a physical volume on the mounted partition via lvm pvcreate /dev/mapper/lvm but again I want to be extra clear on this, I really do not want to temper with the volumes I already have unless I know exactly what effects it will have. If I would mount the encrypted partition with sudo cryptsetup luksOpen /dev/sdc1 aaa would I then have to create the physical volume with lvm pvcreate /dev/mapper/aaa? Because I already used lvm when I created all the volumes on the first drive (sda) and I don't know if they are still mounted under the same name (after many reboots and setting up the arch which I am currently using) in which case I might be in danger of overwriting something?
    3) From what I have read so far I could extend /home now with lvextend -l +100%FREE vgroup/home, is that correct? After that I would only have to extend the file system (ext4) on /home and it would be done?
    I hope it is clear what I am trying to do, if not please do ask. Thanks in advance for reading all of this.

    Turns out this is not quite over yet. After successfully dealing with LVM I was about to reboot when something occurred to me: The second HDD (sdc1) will not be decrypted at boot and I have no idea what would happen if LVM tries to mount a volume that is spread across two disks of which one is not available.
    So I searched for some time and everything I could find was this thread. Well, he is talking about altering the encrypt hook and generate a new initramfs to be able to enter more than one cryptdevice in grub. I have never dealt with hooks before and never got my hands on bash script like this. Now my options are pretty weak: I could do what he describes although I have no idea how it works or I could revert all the changes to LVM. Naturally I chose option number one, parsed the hook, edited the menu.lst, rebooted and "Waiting 10 seconds for device /dev/sda2".
    So yeah it's my fault for trying something I have no clue about.
    I tried to access the volumes from the live cd, but even though I decrypted the drives and loaded up lvm with vgchange -a -y I can not access the logical volumes. I naively tried to access the files such as menu.lst but I can't get there. Probably because I just lack the knowledge how to do that. But even if I would be able to access the files, could I build the hooks of my system from within the live cd?
    Last edited by venehan_snakes (2011-10-18 16:49:48)

  • [solved] luks on lvm encryption keymap issue

    hi,
    i just installed arch on a new notebook of mine.
    i used a luks encrypted lvm installation, which works (guided by the wiki)
    but i am encoutering an issue with the keymap while decrypting at boot.
    i've installed using "de-latin1-nodeadkeys" as keymap, and my actual passwort has some special characters.
    at boot, i'v entered the passwort but it doesn't work.
    so i rebootet with the live image and checked, with the german keymap again, which worked.
    i checked for mispelling btw .
    for testing purposes i set a password like "///" and it seems that the keymap at boot is an english one.
    https://bugs.archlinux.org/task/36689 i found this bug, but it says closed so i'm thinking i went wrong somewhere.
    any help is appreciated
    here is my mkinitcpio.conf
    # vim:set ft=sh
    # MODULES
    # The following modules are loaded before any boot hooks are
    # run. Advanced users may wish to specify all system modules
    # in this array. For instance:
    # MODULES="piix ide_disk reiserfs"
    MODULES=""
    # BINARIES
    # This setting includes any additional binaries a given user may
    # wish into the CPIO image. This is run last, so it may be used to
    # override the actual binaries included by a given hook
    # BINARIES are dependency parsed, so you may safely ignore libraries
    BINARIES=""
    # FILES
    # This setting is similar to BINARIES above, however, files are added
    # as-is and are not parsed in any way. This is useful for config files.
    FILES=""
    # HOOKS
    # This is the most important setting in this file. The HOOKS control the
    # modules and scripts added to the image, and what happens at boot time.
    # Order is important, and it is recommended that you do not change the
    # order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
    # help on a given hook.
    # 'base' is _required_ unless you know precisely what you are doing.
    # 'udev' is _required_ in order to automatically load modules
    # 'filesystems' is _required_ unless you specify your fs modules in MODULES
    # Examples:
    ## This setup specifies all modules in the MODULES setting above.
    ## No raid, lvm2, or encrypted root is needed.
    # HOOKS="base"
    ## This setup will autodetect all modules for your system and should
    ## work as a sane default
    # HOOKS="base udev autodetect block filesystems"
    ## This setup will generate a 'full' image which supports most systems.
    ## No autodetection is done.
    # HOOKS="base udev block filesystems"
    ## This setup assembles a pata mdadm array with an encrypted root FS.
    ## Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
    # HOOKS="base udev block mdadm encrypt filesystems"
    ## This setup loads an lvm2 volume group on a usb device.
    # HOOKS="base udev block lvm2 filesystems"
    ## NOTE: If you have /usr on a separate partition, you MUST include the
    # usr, fsck and shutdown hooks.
    HOOKS="base udev autodetect modconf encrypt lvm2 block filesystems keyboard fsck"
    # COMPRESSION
    # Use this to compress the initramfs image. By default, gzip compression
    # is used. Use 'cat' to create an uncompressed image.
    #COMPRESSION="gzip"
    #COMPRESSION="bzip2"
    #COMPRESSION="lzma"
    #COMPRESSION="xz"
    #COMPRESSION="lzop"
    # COMPRESSION_OPTIONS
    # Additional options for the compressor
    #COMPRESSION_OPTIONS=""
    and my grub.cfg
    # DO NOT EDIT THIS FILE
    # It is automatically generated by grub-mkconfig using templates
    # from /etc/grub.d and settings from /etc/default/grub
    ### BEGIN /etc/grub.d/00_header ###
    insmod part_gpt
    insmod part_msdos
    if [ -s $prefix/grubenv ]; then
    load_env
    fi
    if [ "${next_entry}" ] ; then
    set default="${next_entry}"
    set next_entry=
    save_env next_entry
    set boot_once=true
    else
    set default="0"
    fi
    if [ x"${feature_menuentry_id}" = xy ]; then
    menuentry_id_option="--id"
    else
    menuentry_id_option=""
    fi
    export menuentry_id_option
    if [ "${prev_saved_entry}" ]; then
    set saved_entry="${prev_saved_entry}"
    save_env saved_entry
    set prev_saved_entry=
    save_env prev_saved_entry
    set boot_once=true
    fi
    function savedefault {
    if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
    fi
    function load_video {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
    fi
    if loadfont unicode ; then
    set gfxmode=auto
    load_video
    insmod gfxterm
    set locale_dir=$prefix/locale
    set lang=en_US
    insmod gettext
    fi
    terminal_input console
    terminal_output gfxterm
    set timeout=5
    ### END /etc/grub.d/00_header ###
    ### BEGIN /etc/grub.d/10_linux ###
    menuentry 'Arch Linux, with Linux core repo kernel' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-true-e084640b-9864-4667-84a4-9f5fb0a43483' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 802f1bee-db08-4896-87df-97c3883f58be
    else
    search --no-floppy --fs-uuid --set=root 802f1bee-db08-4896-87df-97c3883f58be
    fi
    echo 'Loading Linux core repo kernel ...'
    linux /vmlinuz-linux root=/dev/mapper/main-root rw cryptdevice=/dev/sda2:main quiet
    echo 'Loading initial ramdisk ...'
    initrd /initramfs-linux.img
    menuentry 'Arch Linux, with Linux core repo kernel (Fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-fallback-e084640b-9864-4667-84a4-9f5fb0a43483' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 802f1bee-db08-4896-87df-97c3883f58be
    else
    search --no-floppy --fs-uuid --set=root 802f1bee-db08-4896-87df-97c3883f58be
    fi
    echo 'Loading Linux core repo kernel ...'
    linux /vmlinuz-linux root=/dev/mapper/main-root rw cryptdevice=/dev/sda2:main quiet
    echo 'Loading initial ramdisk ...'
    initrd /initramfs-linux-fallback.img
    ### END /etc/grub.d/10_linux ###
    ### BEGIN /etc/grub.d/20_linux_xen ###
    ### END /etc/grub.d/20_linux_xen ###
    ### BEGIN /etc/grub.d/30_os-prober ###
    ### END /etc/grub.d/30_os-prober ###
    ### BEGIN /etc/grub.d/40_custom ###
    # This file provides an easy way to add custom menu entries. Simply type the
    # menu entries you want to add after this comment. Be careful not to change
    # the 'exec tail' line above.
    ### END /etc/grub.d/40_custom ###
    ### BEGIN /etc/grub.d/41_custom ###
    if [ -f ${config_directory}/custom.cfg ]; then
    source ${config_directory}/custom.cfg
    elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
    source $prefix/custom.cfg;
    fi
    ### END /etc/grub.d/41_custom ###
    ### BEGIN /etc/grub.d/60_memtest86+ ###
    ### END /etc/grub.d/60_memtest86+ ###
    and my default/grub
    GRUB_DEFAULT=0
    GRUB_TIMEOUT=5
    GRUB_DISTRIBUTOR="Arch"
    GRUB_CMDLINE_LINUX_DEFAULT="cryptdevice=/dev/sda2:main quiet"
    GRUB_CMDLINE_LINUX=""
    # Preload both GPT and MBR modules so that they are not missed
    GRUB_PRELOAD_MODULES="part_gpt part_msdos"
    # Uncomment to enable Hidden Menu, and optionally hide the timeout count
    #GRUB_HIDDEN_TIMEOUT=5
    #GRUB_HIDDEN_TIMEOUT_QUIET=true
    # Uncomment to use basic console
    GRUB_TERMINAL_INPUT=console
    # Uncomment to disable graphical terminal
    #GRUB_TERMINAL_OUTPUT=console
    # The resolution used on graphical terminal
    # note that you can use only modes which your graphic card supports via VBE
    # you can see them in real GRUB with the command `vbeinfo'
    GRUB_GFXMODE=auto
    # Uncomment to allow the kernel use the same resolution used by grub
    GRUB_GFXPAYLOAD_LINUX=keep
    # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
    # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
    #GRUB_DISABLE_LINUX_UUID=true
    # Uncomment to disable generation of recovery mode menu entries
    GRUB_DISABLE_RECOVERY=true
    # Uncomment and set to the desired menu colors. Used by normal and wallpaper
    # modes only. Entries specified as foreground/background.
    #GRUB_COLOR_NORMAL="light-blue/black"
    #GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
    # Uncomment one of them for the gfx desired, a image background or a gfxtheme
    #GRUB_BACKGROUND="/path/to/wallpaper"
    #GRUB_THEME="/path/to/gfxtheme"
    # Uncomment to get a beep at GRUB start
    #GRUB_INIT_TUNE="480 440 1"
    #GRUB_SAVEDEFAULT="true"
    vconsole.conf
    KEYMAP="de-latin1-nodeadkeys"
    Last edited by ziv667 (2013-11-27 12:18:03)

    ziv667 wrote:HOOKS="base udev autodetect modconf encrypt lvm2 block filesystems keyboard fsck"
    Where's the keymap hook?
    HOOKS="base udev autodetect modconf keymap encrypt lvm2 block filesystems keyboard fsck"

  • [SOLVED] changes to swap partition

    I didn't think my current partition set up through properly on install so I'd like to make some changes. Swap seems to be the obvious candidate as it doesn't involve messing with data. Does this plan sound like it will work or be a disaster?
    1. swapoff -a
    2. Run cfdisk, delete the swap partition, create an extended partition, format a swap partition in there with the same sdaX designation as it has now, add whatever other partitions are needed to the extended partition. Write the new partition table.
    3. swapon -L /dev/sdaX
    Do I need to edit fstab afterwards to ensure a later swapon -a doesn't cause problems?
    Last edited by tasticorp (2011-11-01 15:51:43)

    Sounds like it could work although you will need to edit fstab as sda4 will become the extended partition (and don't forget to add your new partitions to fstab if you want them mounted on boot)
    You may want to use UUIDs though (see this wiki article: https://wiki.archlinux.org/index.php/Pe … ce_naming).
    mkswap -U <uuid> /dev/sdaX
    will give you a swap partition with a UUID of your choice. I found this, in combination with blkid, to be easier than editing fstab

Maybe you are looking for

  • IPod Nano 4th gen - screen flickers, won't turn on, isn't recognised by computer or iTunes.

    My 4th gen iPod Nano has been playing up. When I connect it to my computer or a dock, the screen flickers with the Apple logo. Once unplugged, it won't turn back on and the screen goes completely black. I tried to reset it numerous times (both connec

  • Error In IE 7.0

    Hello all,          I am using Netweaver 2004s with IE 7.0 . I am not able to view the options provided by EP whenever I right click on the elements of portal content , it gives me the normal browser options on right clicking . Please suggest anythin

  • Dispute case creation from FBL5N

    Hi, I am getting following error while trying to create dispute case from FBL5N. Please guide me how can I correct this error. Please also help me with config steps (tcodes) in creating dispute case. I will award full points for the relevant answers.

  • Jtable printin problem

    i have jtable that contain too many column when i give printing through table.print() then table is print but it is too small to see it. i want some column of table on one page and some column on another page Plz give me source code so plz help me

  • Trying to imitate the vocoder effect like Cher's "Do You Believe"

    Is there a plug in in Logic 8 or 9 that can make my vocals sound like that?