Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: 12.04 Cloned Hardrive is painfully slow

Hybrid View

  1. #1
    Join Date
    Apr 2005
    Location
    Putaruru, NZ
    Beans
    43

    12.04 Cloned Hardrive is painfully slow

    Ubuntu 12.04 with (edubuntu packages installed)

    Not my computer, but was told it was having issues with the harddrive (a 40gb ide drive with some bad sectors)

    Cloned the harddrive to a 320gb Sata drive, with clonezilla

    System works but there are errors and it is painfully slow, as in it takes 5 minutes to load from the click of an icon

    I have run memtest with no errors

    The error we get on boot is something about /tmp not being loaded or ready

    I will try and get the correct message when it is next rebooted

  2. #2
    Join Date
    Apr 2008
    Beans
    11,707

    Re: 12.04 Cloned Hardrive is painfully slow

    Please post the full output of each of the following commands while booted into that OS (please wrap in code tags):

    Code:
    sudo blkid -c /dev/null
    Code:
    cat /etc/fstab
    Code:
    sudo parted -l
    Code:
    df -H
    Code:
    free -m

  3. #3
    Join Date
    Nov 2011
    Location
    /dev/root
    Beans
    Hidden!

    Re: 12.04 Cloned Hardrive is painfully slow

    It could be that the computer is too old or 'weak' for standard Ubuntu. In that case it might work better with a flavour of Ubuntu that has a lighter desktop environment, Lubuntu or Xubuntu. Please give us also the following specs of the computer to make it easier to give relevant advice.

    - Brand name and model
    - CPU
    - RAM (size) - should match the output of free -m
    - graphics chip/card
    - wifi chip/card

    So try Ubuntu (Kubuntu, Lubuntu, Xubuntu, ...) before installing it

  4. #4
    Join Date
    Apr 2005
    Location
    Putaruru, NZ
    Beans
    43

    Re: 12.04 Cloned Hardrive is painfully slow

    The computer was running fine with the previous (failing harddrive) under 12.04, its a p4, but performance was acceptable, its only since it was cloned that it has become slow, I am assuming their must be some issue changing from IDE to Sata or the position of the hardrive.

    I will run those commands shortly and post the results

  5. #5
    Join Date
    Nov 2011
    Location
    /dev/root
    Beans
    Hidden!

    Re: 12.04 Cloned Hardrive is painfully slow

    I would use Xubuntu with a Pentium 4 CPU, but with enough RAM standard Ubuntu should work too.

    The original drive was failing. Do you know if the cloning process was successful in the meaning that the target drive (the clone) was written without errors in the file system(s)?

    You could test the root file system with

    Code:
    sudo e2fsck -f /dev/sdxy
    where x is the drive letter and y is the partition number.

    It could also be some issue with the alignment (that the partitioning from the old drive does not fit well for the new drive). It is above my knowledge to fix such problems.

    If the problems persist, it might be the easiest solution to backup the personal files, re-partition the drive and make a fresh install and copy back the personal files.

  6. #6
    Join Date
    Apr 2005
    Location
    Putaruru, NZ
    Beans
    43

    Re: 12.04 Cloned Hardrive is painfully slow

    When i cloned, I am sure there was a repair errors before cloning option? in clonezilla which i used.

    I have tried following a few suggestions on other threads here

    I have had debsums? running and it seems to be finding a few missing files although it is so slow its been going 5 hrs (I had actually thought it had crashed)

  7. #7
    Join Date
    Apr 2005
    Location
    Putaruru, NZ
    Beans
    43

    Re: 12.04 Cloned Hardrive is painfully slow

    Ok Here goes
    Code:
    user@user-desktop:~$ df -H
    Filesystem      Size  Used Avail Use% Mounted on
    /dev/sdb1       306G   29G  261G  11% /
    udev            1.1G  4.1k  1.1G   1% /dev
    tmpfs           209M  988k  208M   1% /run
    none            5.3M     0  5.3M   0% /run/lock
    none            1.1G  230k  1.1G   1% /run/shm
    cgroup          1.1G     0  1.1G   0% /sys/fs/cgroup
    Code:
    user@user-desktop:~$ sudo blkid -c /dev/null
    [sudo] password for user: 
    /dev/sda1: LABEL="Shiny" UUID="0d6b17f1-2c96-4491-b356-b43f44f6f488" TYPE="ext4" 
    /dev/sdb1: UUID="68f757ec-8c89-42ac-8cec-68051af7d2c1" TYPE="ext4" 
    /dev/sdb5: UUID="e1e75881-d508-44ac-8189-17e056428bba" TYPE="swap" 
    user@user-desktop:~$
    Code:
    user@user-desktop:~$ sudo parted -l
    Model: ATA ST3320820SCE (scsi)
    Disk /dev/sda: 320GB
    Sector size (logical/physical): 512B/512B
    Partition Table: msdos
    
    Number  Start   End    Size   Type     File system  Flags
     1      32.3kB  320GB  320GB  primary  ext4
    
    
    Model: ATA ST3320820SCE (scsi)
    Disk /dev/sdb: 320GB
    Sector size (logical/physical): 512B/512B
    Partition Table: msdos
    
    Number  Start   End    Size    Type      File system     Flags
     1      1049kB  310GB  310GB   primary   ext4            boot
     2      310GB   320GB  9824MB  extended
     5      310GB   311GB  1038MB  logical   linux-swap(v1)
    
    
    user@user-desktop:~$
    Code:
    user@user-desktop:~$ cat /etc/fstab
    # /etc/fstab: static file system information.
    #
    # Use 'blkid' to print the universally unique identifier for a
    # device; this may be used with UUID= as a more robust way to name devices
    # that works even if disks are added and removed. See fstab(5).
    #
    # <file system> <mount point>   <type>  <options>       <dump>  <pass>
    proc            /proc           proc    nodev,noexec,nosuid 0       0
    # / was on /dev/sda1 during installation
    UUID=68f757ec-8c89-42ac-8cec-68051af7d2c1 /               ext4    errors=remount-ro 0       1
    # swap was on /dev/sda5 during installation
    UUID=e1e75881-d508-44ac-8189-17e056428bba none            swap    sw              0       0
    user@user-desktop:~$

  8. #8
    Join Date
    Apr 2005
    Location
    Putaruru, NZ
    Beans
    43

    Re: 12.04 Cloned Hardrive is painfully slow

    Code:
    user@user-desktop:~$ free -m
                 total       used       free     shared    buffers     cached
    Mem:          1984       1671        313          0         86       1076
    -/+ buffers/cache:        507       1476
    Swap:          989          4        985
    user@user-desktop:~$
    Theres also this, its taken around 10 hours to get this far but when I ran the debsums thingie i got this

    Code:
    user@user-desktop:~$ sudo debsums_init
    [sudo] password for user: 
    checking binutils
    ******* binutils.md5sums missing *******
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    0 upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 0 not upgraded.
    Need to get 2,387 kB of archives.
    After this operation, 0 B of additional disk space will be used.
    Get:1 http://nz.archive.ubuntu.com/ubuntu/ precise-updates/main binutils i386 2.22-6ubuntu1.1 [2,387 kB]
    Fetched 2,387 kB in 2s (1,096 kB/s)   
    Download complete and in download only mode
    Generating missing md5sums for /var/cache/apt/archives/binutils_2.22-6ubuntu1.1_i386.deb...done.
    checking g++
    ******* g++.md5sums missing *******
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    0 upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 0 not upgraded.
    Need to get 1,444 B of archives.
    After this operation, 0 B of additional disk space will be used.
    Get:1 http://nz.archive.ubuntu.com/ubuntu/ precise/main g++ i386 4:4.6.3-1ubuntu5 [1,444 B]
    Fetched 1,444 B in 0s (19.8 kB/s)
    Download complete and in download only mode
    Generating missing md5sums for /var/cache/apt/archives/g++_4%3a4.6.3-1ubuntu5_i386.deb...done.
    checking google-chrome-stable
    ******* google-chrome-stable.md5sums missing *******
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    0 upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 0 not upgraded.
    Need to get 46.8 MB of archives.
    After this operation, 0 B of additional disk space will be used.
    Get:1 http://dl.google.com/linux/chrome/deb/ stable/main google-chrome-stable i386 35.0.1916.153-1 [46.8 MB]
    Fetched 46.8 MB in 53s (868 kB/s)                                              
    Download complete and in download only mode
    Generating missing md5sums for /var/cache/apt/archives/google-chrome-stable_35.0.1916.153-1_i386.deb...done.
    checking libaudio2
    ******* libaudio2.md5sums missing *******
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    0 upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 0 not upgraded.
    Need to get 57.5 kB of archives.
    After this operation, 0 B of additional disk space will be used.
    Get:1 http://nz.archive.ubuntu.com/ubuntu/ precise-updates/main libaudio2 i386 1.9.3-4ubuntu0.1 [57.5 kB]
    Fetched 57.5 kB in 0s (104 kB/s)   
    Download complete and in download only mode
    Generating missing md5sums for /var/cache/apt/archives/libaudio2_1.9.3-4ubuntu0.1_i386.deb...done.
    Finished generating md5sums!
    Checking still missing md5files...
    user@user-desktop:~$ sudo debsums -cs
    debsums: missing file /lib/systemd/system/accounts-daemon.service (from accountsservice package)
    debsums: missing file /lib/systemd/system/avahi-daemon.service (from avahi-daemon package)
    debsums: missing file /lib/systemd/system/avahi-daemon.socket (from avahi-daemon package)
    debsums: missing file /lib/systemd/system/bluetooth.service (from bluez package)
    debsums: missing file /lib/systemd/system/colord.service (from colord package)
    debsums: missing file /lib/systemd/system/console-kit-daemon.service (from consolekit package)
    debsums: missing file /lib/systemd/system/console-kit-log-system-restart.service (from consolekit package)
    debsums: missing file /lib/systemd/system/console-kit-log-system-start.service (from consolekit package)
    debsums: missing file /lib/systemd/system/console-kit-log-system-stop.service (from consolekit package)
    debsums: missing file /usr/share/cups/doc-root/cups-printable.css (from cups package)
    debsums: missing file /usr/share/cups/doc-root/cups.css (from cups package)
    debsums: missing file /usr/share/cups/doc-root/de/index.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/es/index.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/eu/index.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/fr/index.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/accounting.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/api-array.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/api-cgi.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/api-cups.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/api-driver.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/api-filedir.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/api-filter.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/api-httpipp.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/api-mime.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/api-overview.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/api-ppd.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/api-ppdc.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/api-raster.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/cgi.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/glossary.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/kerberos.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/license.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-backend.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-cancel.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-cups-config.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-cups-lpd.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-cups-polld.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-cupsaccept.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-cupsaddsmb.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-cupsd.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-cupsenable.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-cupstestdsc.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-cupstestppd.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-filter.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-ipptool.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-ipptoolfile.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-lp.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-lpadmin.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-lpc.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-lpinfo.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-lpmove.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-lpoptions.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-lppasswd.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-lpq.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-lpr.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-lprm.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-lpstat.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-mime.convs.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-mime.types.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-notifier.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-ppdc.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-ppdhtml.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-ppdi.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-ppdmerge.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/man-ppdpo.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/network.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/options.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/overview.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/policies.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/postscript-driver.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/ppd-compiler.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/raster-driver.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/ref-access_log.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/ref-classes-conf.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/ref-client-conf.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/ref-cupsd-conf.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/ref-error_log.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/ref-mailto-conf.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/ref-page_log.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/ref-ppdcfile.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/ref-printers-conf.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/ref-snmp-conf.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/ref-subscriptions-conf.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/security.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/sharing.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/spec-banner.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/spec-browsing.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/spec-cmp.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/spec-command.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/spec-design.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/spec-ipp.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/spec-pdf.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/spec-postscript.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/spec-ppd.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/spec-raster.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/spec-stp.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/standard.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/translation.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/help/whatsnew.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/hu/index.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/id/index.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/images/color-wheel.png (from cups package)
    debsums: missing file /usr/share/cups/doc-root/images/cups-block-diagram.png (from cups package)
    debsums: missing file /usr/share/cups/doc-root/images/cups-command-chain.png (from cups package)
    debsums: missing file /usr/share/cups/doc-root/images/cups-icon.png (from cups package)
    debsums: missing file /usr/share/cups/doc-root/images/cups-postscript-chain.png (from cups package)
    debsums: missing file /usr/share/cups/doc-root/images/cups-raster-chain.png (from cups package)
    debsums: missing file /usr/share/cups/doc-root/images/cups.png (from cups package)
    debsums: missing file /usr/share/cups/doc-root/images/generic.png (from cups package)
    debsums: missing file /usr/share/cups/doc-root/images/left.gif (from cups package)
    debsums: missing file /usr/share/cups/doc-root/images/raster-organization.png (from cups package)
    debsums: missing file /usr/share/cups/doc-root/images/raster.png (from cups package)
    debsums: missing file /usr/share/cups/doc-root/images/right.gif (from cups package)
    debsums: missing file /usr/share/cups/doc-root/images/sample-image.png (from cups package)
    debsums: missing file /usr/share/cups/doc-root/images/sel.gif (from cups package)
    debsums: missing file /usr/share/cups/doc-root/images/smiley.jpg (from cups package)
    debsums: missing file /usr/share/cups/doc-root/images/unsel.gif (from cups package)
    debsums: missing file /usr/share/cups/doc-root/images/wait.gif (from cups package)
    debsums: missing file /usr/share/cups/doc-root/index.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/it/index.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/ja/index.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/pl/index.html (from cups package)
    debsums: missing file /usr/share/cups/doc-root/robots.txt (from cups package)
    debsums: missing file /usr/share/cups/doc-root/ru/index.html (from cups package)
    debsums: missing file /usr/share/cups/mime/mime.convs (from cups package)
    debsums: missing file /usr/share/cups/mime/mime.types (from cups package)
    debsums: missing file /usr/share/cups/ipptool/create-printer-subscription.test (from cups-client package)
    debsums: missing file /usr/share/cups/ipptool/get-completed-jobs.test (from cups-client package)
    debsums: missing file /usr/share/cups/ipptool/get-jobs.test (from cups-client package)
    debsums: missing file /usr/share/cups/ipptool/get-printer-attributes.test (from cups-client package)
    debsums: missing file /usr/share/cups/ipptool/ipp-1.1.test (from cups-client package)
    debsums: missing file /usr/share/cups/ipptool/ipp-2.0.test (from cups-client package)
    debsums: missing file /usr/share/cups/ipptool/ipp-2.1.test (from cups-client package)
    debsums: missing file /usr/share/cups/ipptool/ipp-2.2.test (from cups-client package)
    debsums: missing file /usr/share/cups/drv/sample.drv (from cups-common package)
    debsums: missing file /usr/share/cups/locale/da/cups_da.po (from cups-common package)
    debsums: missing file /usr/share/cups/locale/de/cups_de.po (from cups-common package)
    debsums: missing file /usr/share/cups/locale/es/cups_es.po (from cups-common package)
    debsums: missing file /usr/share/cups/locale/eu/cups_eu.po (from cups-common package)
    debsums: missing file /usr/share/cups/locale/fi/cups_fi.po (from cups-common package)
    debsums: missing file /usr/share/cups/locale/fr/cups_fr.po (from cups-common package)
    debsums: missing file /usr/share/cups/locale/hu/cups_hu.po (from cups-common package)
    debsums: missing file /usr/share/cups/locale/id/cups_id.po (from cups-common package)
    debsums: missing file /usr/share/cups/locale/it/cups_it.po (from cups-common package)
    debsums: missing file /usr/share/cups/locale/ja/cups_ja.po (from cups-common package)
    debsums: missing file /usr/share/cups/locale/ko/cups_ko.po (from cups-common package)
    debsums: missing file /usr/share/cups/locale/nl/cups_nl.po (from cups-common package)
    debsums: missing file /usr/share/cups/locale/no/cups_no.po (from cups-common package)
    debsums: missing file /usr/share/cups/locale/pl/cups_pl.po (from cups-common package)
    debsums: missing file /usr/share/cups/locale/pt/cups_pt.po (from cups-common package)
    debsums: missing file /usr/share/cups/locale/pt_BR/cups_pt_BR.po (from cups-common package)
    debsums: missing file /usr/share/cups/locale/ru/cups_ru.po (from cups-common package)
    debsums: missing file /usr/share/cups/locale/sv/cups_sv.po (from cups-common package)
    debsums: missing file /usr/share/cups/locale/zh/cups_zh.po (from cups-common package)
    debsums: missing file /usr/share/cups/locale/zh_TW/cups_zh_TW.po (from cups-common package)
    debsums: missing file /usr/share/cups/ppdc/font.defs (from cups-common package)
    debsums: missing file /usr/share/cups/ppdc/media.defs (from cups-common package)
    debsums: missing file /usr/share/cups/ppdc/raster.defs (from cups-common package)
    debsums: missing file /usr/share/cups/banners/classified (from cups-filters package)
    debsums: missing file /usr/share/cups/banners/confidential (from cups-filters package)
    debsums: missing file /usr/share/cups/banners/secret (from cups-filters package)
    debsums: missing file /usr/share/cups/banners/standard (from cups-filters package)
    debsums: missing file /usr/share/cups/banners/topsecret (from cups-filters package)
    debsums: missing file /usr/share/cups/banners/unclassified (from cups-filters package)
    debsums: missing file /usr/share/cups/charsets/pdf.utf-8.heavy (from cups-filters package)
    debsums: missing file /usr/share/cups/charsets/pdf.utf-8.simple (from cups-filters package)
    debsums: missing file /usr/share/cups/data/default-testpage.pdf (from cups-filters package)
    debsums: missing file /usr/share/cups/data/default.pdf (from cups-filters package)
    debsums: missing file /usr/share/cups/data/testprint (from cups-filters package)
    debsums: missing file /usr/share/cups/drv/cupsfilters.drv (from cups-filters package)
    debsums: missing file /usr/share/cups/mime/cupsfilters.convs (from cups-filters package)
    debsums: missing file /usr/share/cups/mime/cupsfilters.types (from cups-filters package)
    debsums: missing file /usr/share/cups/ppd-updaters/cups-filters.ppd-updater (from cups-filters package)
    debsums: missing file /usr/share/cups/examples/color.drv (from cups-ppdc package)
    debsums: missing file /usr/share/cups/examples/constraint.drv (from cups-ppdc package)
    debsums: missing file /usr/share/cups/examples/custom.drv (from cups-ppdc package)
    debsums: missing file /usr/share/cups/examples/grouping.drv (from cups-ppdc package)
    debsums: missing file /usr/share/cups/examples/laserjet-basic.drv (from cups-ppdc package)
    debsums: missing file /usr/share/cups/examples/laserjet-pjl.drv (from cups-ppdc package)
    debsums: missing file /usr/share/cups/examples/minimum.drv (from cups-ppdc package)
    debsums: missing file /usr/share/cups/examples/postscript.drv (from cups-ppdc package)
    debsums: missing file /usr/share/cups/examples/r300-basic.drv (from cups-ppdc package)
    debsums: missing file /usr/share/cups/examples/r300-colorman.drv (from cups-ppdc package)
    debsums: missing file /usr/share/cups/examples/r300-remote.drv (from cups-ppdc package)
    debsums: missing file /usr/share/cups/ppdc/epson.h (from cups-ppdc package)
    debsums: missing file /usr/share/cups/ppdc/escp.h (from cups-ppdc package)
    debsums: missing file /usr/share/cups/ppdc/hp.h (from cups-ppdc package)
    debsums: missing file /usr/share/cups/ppdc/label.h (from cups-ppdc package)
    debsums: missing file /usr/share/cups/ppdc/pcl.h (from cups-ppdc package)
    debsums: missing file /lib/systemd/system/dbus.service (from dbus package)
    debsums: missing file /lib/systemd/system/dbus.socket (from dbus package)
    /usr/share/icons/GartoonRedux/16x16/places/distributor-logo.png
    /usr/share/icons/GartoonRedux/22x22/places/distributor-logo.png
    /usr/share/icons/GartoonRedux/24x24/places/distributor-logo.png
    /usr/share/icons/GartoonRedux/32x32/places/distributor-logo.png
    debsums: missing file /usr/share/icons/GartoonRedux/48x48/places/distributor-logo.png (from edubuntu-artwork package)
    debsums: missing file /usr/share/cups/ppd-updaters/foomatic-db-compressed-ppds (from foomatic-db-compressed-ppds package)
    debsums: missing file /usr/share/cups/ppd-updaters/foomatic-db-engine (from foomatic-db-engine package)
    debsums: missing file /lib/recovery-mode/options/dpkg (from friendly-recovery package)
    debsums: missing file /lib/recovery-mode/options/failsafeX (from friendly-recovery package)
    debsums: missing file /lib/recovery-mode/options/fsck (from friendly-recovery package)
    debsums: missing file /lib/recovery-mode/options/grub (from friendly-recovery package)
    debsums: missing file /lib/recovery-mode/options/network (from friendly-recovery package)
    debsums: missing file /lib/recovery-mode/options/root (from friendly-recovery package)
    debsums: missing file /lib/recovery-mode/options/system-summary (from friendly-recovery package)
    debsums: missing file /usr/share/cups/mime/gstoraster.convs (from ghostscript-cups package)
    debsums: missing file /usr/share/cups/ppd-updaters/ghostscript-cups (from ghostscript-cups package)
    And about there is where i have to stop and turn the machine off

  9. #9
    Join Date
    Apr 2008
    Beans
    11,707

    Re: 12.04 Cloned Hardrive is painfully slow

    Thanks I wanted to be sure there was no problem with the UUID's and that all looks fine. I have a dumb question though

    I see there are two Seagate 320GB drives connected, one with the OS and SWAP, the other formatted as ext4 and labeled Shiny. What is the device Shiny? If that's where the Clonezilla image is stored that might cause a problem so you may want to try running with Shiny disconnected.

    I have another concern also though. That Seagate drive is SATA II (3.0 GB/s) and I think a lot (maybe all) of the P4's were only SATA I (1.5 GB/s) capable. There may be a jumper setting on those Seagate drives to make it run at 1.5 GB/s but I'm not familiar with that specific drive. You'll have to research the hardware involved a bit to find out if that CPU and motherboard are SATA I or SATA II, and then whether any settings need to be changed on the drive.

    Regarding those errors try running the following commands:

    Code:
    sudo apt-get update
    Code:
    sudo apt-get -f install
    Code:
    sudo dpkg --configure -a

  10. #10
    Join Date
    Apr 2005
    Location
    Putaruru, NZ
    Beans
    43

    Re: 12.04 Cloned Hardrive is painfully slow

    Shiny is a second harddrive that is used for storing Music etc, it doesn't have any clonezilla or os files on it.

    I have disconnected all drives, except the OS ones

    Booting is as slow as ever

    The error I am getting on boot is
    xx.xxxxxx = numbers that change on every single line


    xx.xxxxxx] ata3.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
    xx.xxxxxx] ata3.00: BMDMA stat 0x25
    xx.xxxxxx] ata3.00: failed command: Read DMA
    xx.xxxxxx] ata3.00: cmd c8/00:08:ea:1d/00:00:00:00:00/e1 tag 0 dma 4096 in
    res 51/40:00:e3:ea:1d/00:00:00:00:00/e1 Emask 0x0 media er????? <- Photo cuts out
    xx.xxxxxx] ata3.00: status: { DRDY ERR }
    xx.xxxxxx] ata3.00: error: { UNC }
    xx.xxxxxx] ata3.00: end_request: I/O error, dev sda, sector 18737891

    Repeats with various numbers for about 30 mins

    apparently a similar error was happening with the old ide drive

    Will try and check smart? thingie on drive

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •