Swap partition won't mount

Asked by 56[hil

This looks a lot like #66637. Except when I type

fdisk -l /dev/hda

I get

Cannot open /dev/hda

I'm new to Ubuntu/Linux. Please don't assume I can interpret general instructions like "put such and such in your fstab file." I'll need precise step-by-step instructions to get back the swap partition.

I'm running Edgy Eft on a Gateway laptop, model M680.

Thank you for your help.

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
Frode M. Døving
Solved:
Last query:
Last reply:
Revision history for this message
Frode M. Døving (frode) said :
#1

Hi.

Swap partitions should not be mounted.

Open a terminal..
Ubuntu: Applications -> Accessories -> Terminal
Kubuntu: Kmenu -> System -> Konsole

Can you please post the output of the command:
'free -m'

This is mine:
frode@light:~ $ free -m
             total used free shared buffers cached
Mem: 755 741 14 0 40 217
-/+ buffers/cache: 483 272
Swap: 953 0 953
frode@light:~ $

As you can see I have a total of 953MB swap space.

If it the last line says:
Swap: 0 0 0

Your swap partition is not active.

You can try to run 'sudo swapon -a' in the shell.
The command should only ask for your password, then not return anything.

frode@light:~ $ sudo swapon -a
frode@light:~ $

This command will activate all found swap partitions.

Then try 'free -m' again.

Is it activated?

If it is, you can run 'dmesg | tail -n2' to find the ID if the swap partition. (this is edgy, with uuids)

frode@light:~ $ dmesg |tail -n2
[318363.558691] eth0: Pause is disabled
[388494.263360] Adding 976544k swap on /dev/disk/by-uuid/b6f9b3e0-83f3-49ca-9b96-ea4685dcfbe5. Priority:-2 extents:1 across:976544k
frode@light:~ $

I can now check /etc/fstab, if the swap partition is listed or not.

frode@light:~ $ grep sw /etc/fstab
UUID=b6f9b3e0-83f3-49ca-9b96-ea4685dcfbe5 none swap sw 0 0
frode@light:~ $

Compare the two uuids.

In my case they match, and the fstab is configured correctly.

If it is not listed you will need to know what partition is your swap partition,

This is a evil hack that magically -can- make the line you need to put in your fstab for swap:

frode@light:~ $ echo UUID=`sudo mount -fv / | cut -d' ' -f1 | tr -d [:digit:] | xargs sudo fdisk -l | grep swap | cut -d' ' -f1 | xargs sudo vol_id -u` none swap sw 0 0
UUID=b6f9b3e0-83f3-49ca-9b96-ea4685dcfbe5 none swap sw 0 0
frode@light:~ $

The line I should have in fstab is this:
UUID=b6f9b3e0-83f3-49ca-9b96-ea4685dcfbe5 none swap sw 0 0

To put it in:

First make a backup of the existing one (/etc/fstab.bak):
sudo cp /etc/fstab{,.bak}

Append the new swap line to the end of /etc/fstab:
echo 'UUID=b6f9b3e0-83f3-49ca-9b96-ea4685dcfbe5 none swap sw 0 0'|tee -a /etc/fstab

Now try 'sudo swapon -a' as described in the beginning of this comment.

If you experience problems, please post more comments.

- Frode

Revision history for this message
56[hil (philip-r-huffman) said :
#2

Hi, here are the results of free & swapon:

prh@phil-laptop:~$ free -m
             total used free shared
buffers cached
Mem: 1010 375 635 0
     12 210
-/+ buffers/cache: 153 857
Swap: 0 0 0
prh@phil-laptop:~$ sudo swapon -a
swapon:
/dev/disk/by-uuid/04e346b0-3cf2-4e9c-a302-0aad75856487:
Invalid argument
prh@phil-laptop:~$ free -m
             total used free shared
buffers cached
Mem: 1010 389 621 0
     12 218
-/+ buffers/cache: 158 852
Swap: 0 0 0
prh@phil-laptop:~$

swapon did not like the UUID which is the same as in
fstab.

I had problems when I tried the evil hack ...
prh@phil-laptop:~$ $ echo UUID=`sudo mount -fv / | cut
-d' ' -f1 | tr -d
[:digit:] | xargs sudo fdisk -l | grep swap | cut -d'
' -f1 | xargs sudo
vol_id -u` none swap sw 0 0
tr: missing operand
Try `tr --help' for more information.
bash: [:digit:]: command not found
sudo: /dev/hda5: command not found
usage: vol_id [--export|-t|-l|-u] <device>
       --export
       -t filesystem type
       -l filesystem label
       -u filesystem uuid

bash: $: command not found
prh@phil-laptop:~$

Could I try doing the commands individually?

Here are the contents of /etc/fstab:

# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options>
 <dump> <pass>
proc /proc proc defaults
 0 0
# /dev/hda1 -- converted during upgrade to edgy
UUID=d558c3d1-04b3-4c21-9ef3-c0fd3a03ff5f / ext3
defaults,errors=remount-ro 0 1
# /dev/hda5 -- converted during upgrade to edgy
UUID=04e346b0-3cf2-4e9c-a302-0aad75856487 none swap sw
0 0
/dev/hdb /media/cdrom0 udf,iso9660
user,noauto 0 0

I hope this helps. please let me know what to do next.
Thanks.

____________________________________________________________________________________
Sponsored Link

Mortgage rates near 39yr lows.
$310k for $999/mo. Calculate new payment!
www.LowerMyBills.com/lre

Revision history for this message
56[hil (philip-r-huffman) said :
#3

I tried the evil hack again and it worked. It returned the same line that is already in /etc/fstab. That's one wild entry.

I removed the "quiet" parameters from /boot/grub/menu.lst and now the system displays unable to find swap-space signature early in the boot process.

Thanks for your help.

Revision history for this message
Frode M. Døving (frode) said :
#4

So /dev/hda5 is your swap partition.

Try 'sudo mkswap /dev/hda5'
Then try 'sudo swapon -a'

- Frode

Revision history for this message
56[hil (philip-r-huffman) said :
#5

Well, Frode, we're getting close. Thanks. Your instructions worked perfectly the first time. I restarted the system to see if the changes stuck. They didn't. So, I entered 'mkswap /dev/hda5' , 'swapon -a' and 'free -m' again. I still get 'swap: 0 0 0' Then, I commented out the swap line in etc/fstab and tried 'mkswap /dev/hda5' , 'swapon -a' and 'free -m'. Still no active swap partition, but I did eliminate the UUID error message in 'swapon -a'.

A different UUID is produced every time 'mkswap /dev/hda5' is run. Is this a problem?

 Once again, Thanks for your help.

- Phil

Revision history for this message
Frode M. Døving (frode) said :
#6

>A different UUID is produced every time 'mkswap /dev/hda5' is run. Is this a problem?
It is, you'll have to update /etc/fstab to the fresh UUID after each mkswap run.

'sudo swapon -a' will only try to enable the swap partitions listed in /etc/fstab.
If you remove the swap lines in fstab, swapon will not give error messages, nor will it enable anything.

If you just want this to work, i suggest trying to remove UUID=, and replace it with /dev/hda5 in fstab.

If you want this to work, you'll have to run the magical hack again.

To make the line you need to put in your fstab for swap:
echo UUID=`sudo mount -fv / | cut -d' ' -f1 | tr -d [:digit:] | xargs sudo fdisk -l | grep swap | cut -d' ' -f1 | xargs sudo vol_id -u` none swap sw 0 0

Replace the existing swap-line in /etc/fstab with the output of that command, and try 'sudo swapon -a' and then 'free -m'.

- Frode

Revision history for this message
56[hil (philip-r-huffman) said :
#7

Hi Frode,

I've tried /etc/fstab with the correct UUID and /dev/hda5. In both cases, 'sudo swapon -a -v' completed without any error messages and 'free -m' said there is no swap space. In both cases the system booted normally (no fail on starting swap).

Thank you for your patience and knowledge. I am confident this issue will be resolved.

- Phil

Revision history for this message
Frode M. Døving (frode) said :
#8

Try to run 'top', does it say:
Swap: 0k total, 0k used, 0k free, ?

Revision history for this message
56[hil (philip-r-huffman) said :
#9

Yes, here's a copy of thqt line:

Swap: 0k total, 0k used, 0k free,
  199300k cached

-Phil

____________________________________________________________________________________
Sponsored Link

$420k for $1,399/mo.
Think You Pay Too Much For Your Mortgage?
Find Out! www.LowerMyBills.com/lre

Revision history for this message
Frode M. Døving (frode) said :
#10

Hmm.. this is very strange.
Can you post:
- the full contents of /etc/fstab
- full output of 'dmesg'
- full output of 'sudo fdisk -l'
- full output of 'sudo mount'
- output of 'sudo vol_id /dev/hda5'

- Frode

Revision history for this message
56[hil (philip-r-huffman) said :
#11

OK, Frode,
Here it is:

===============================================================

- the full contents of /etc/fstab:

# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# /dev/hda1 -- converted during upgrade to edgy
UUID=d558c3d1-04b3-4c21-9ef3-c0fd3a03ff5f / ext3 defaults,errors=remount-ro 0 1
# /dev/hda5 -- converted during upgrade to edgy
# commented out swap file line Fri 17 Nov 2006 11:10:59
#UUID=f1ecb634-26ae-4cc5-a3f3-5730f70f6aa3 swap sw 0 0
/dev/hda5 swap sw 0 0
/dev/hdb /media/cdrom0 udf,iso9660 user,noauto 0 0

==============================================================

- full output of 'dmesg'
prh@phil-laptop:~$ dmesg
[17179569.184000] Linux version 2.6.17-10-386 (root@vernadsky) (gcc version 4.1.2 20060928 (prerelease) (Ubuntu 4.1.1-13ubuntu5)) #2 Fri Oct 13 18:41:40 UTC 2006 (Ubuntu 2.6.17-10.33-386)
[17179569.184000] BIOS-provided physical RAM map:
[17179569.184000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
[17179569.184000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
[17179569.184000] BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved)
[17179569.184000] BIOS-e820: 0000000000100000 - 000000003fef0000 (usable)
[17179569.184000] BIOS-e820: 000000003fef0000 - 000000003fefa000 (ACPI data)
[17179569.184000] BIOS-e820: 000000003fefa000 - 000000003ff00000 (ACPI NVS)
[17179569.184000] BIOS-e820: 000000003ff00000 - 0000000040000000 (reserved)
[17179569.184000] BIOS-e820: 00000000e0000000 - 0000000100000000 (reserved)
[17179569.184000] 126MB HIGHMEM available.
[17179569.184000] 896MB LOWMEM available.
[17179569.184000] On node 0 totalpages: 261872
[17179569.184000] DMA zone: 4096 pages, LIFO batch:0
[17179569.184000] Normal zone: 225280 pages, LIFO batch:31
[17179569.184000] HighMem zone: 32496 pages, LIFO batch:7
[17179569.184000] DMI present.
[17179569.184000] ACPI: RSDP (v000 GATEWA ) @ 0x000f7280
[17179569.184000] ACPI: RSDT (v001 GATEWA M680 0x20050903 LTP 0x00000000) @ 0x3fef42af
[17179569.184000] ACPI: MADT (v001 GATEWA M680 0x20050903 LOHR 0x0000005f) @ 0x3fef9e88
[17179569.184000] ACPI: FADT (v001 GATEWA M680 0x20050903 LOHR 0x0000005f) @ 0x3fef9ef0
[17179569.184000] ACPI: BOOT (v001 GATEWA M680 0x20050903 LTP 0x00000001) @ 0x3fef9fd8
[17179569.184000] ACPI: MCFG (v001 GATEWA M680 0x20050903 LOHR 0x0000005f) @ 0x3fef9f9c
[17179569.184000] ACPI: SSDT (v001 GATEWA M680 0x20050903 INTL 0x20030224) @ 0x3fef45f9
[17179569.184000] ACPI: SSDT (v001 GATEWA M680 0x20050903 INTL 0x20030224) @ 0x3fef44dd
[17179569.184000] ACPI: SSDT (v001 GATEWA M680 0x20050903 INTL 0x20030224) @ 0x3fef42ef
[17179569.184000] ACPI: DSDT (v001 GATEWA M680 0x20050903 MSFT 0x0100000e) @ 0x00000000
[17179569.184000] ACPI: PM-Timer IO Port: 0x1008
[17179569.184000] ACPI: Local APIC address 0xfee00000
[17179569.184000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[17179569.184000] Processor #0 6:13 APIC version 20
[17179569.184000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] disabled)
[17179569.184000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[17179569.184000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[17179569.184000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
[17179569.184000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
[17179569.184000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[17179569.184000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[17179569.184000] ACPI: IRQ0 used by override.
[17179569.184000] ACPI: IRQ2 used by override.
[17179569.184000] ACPI: IRQ9 used by override.
[17179569.184000] Enabling APIC mode: Flat. Using 1 I/O APICs
[17179569.184000] Using ACPI (MADT) for SMP configuration information
[17179569.184000] Allocating PCI resources starting at 50000000 (gap: 40000000:a0000000)
[17179569.184000] Built 1 zonelists
[17179569.184000] Kernel command line: root=UUID=d558c3d1-04b3-4c21-9ef3-c0fd3a03ff5f ro vga=788
[17179569.184000] mapped APIC to ffffd000 (fee00000)
[17179569.184000] mapped IOAPIC to ffffc000 (fec00000)
[17179569.184000] Enabling fast FPU save and restore... done.
[17179569.184000] Enabling unmasked SIMD FPU exception support... done.
[17179569.184000] Initializing CPU#0
[17179569.184000] PID hash table entries: 4096 (order: 12, 16384 bytes)
[17179569.184000] Detected 1862.272 MHz processor.
[17179569.184000] Using pmtmr for high-res timesource
[17179569.184000] Console: colour dummy device 80x25
[17179572.448000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[17179572.448000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[17179572.472000] Memory: 1027520k/1047488k available (1829k kernel code, 19192k reserved, 1038k data, 288k init, 129984k highmem)
[17179572.472000] Checking if this processor honours the WP bit even in supervisor mode... Ok.
[17179572.552000] Calibrating delay using timer specific routine.. 3729.57 BogoMIPS (lpj=7459142)
[17179572.552000] Security Framework v1.0.0 initialized
[17179572.552000] SELinux: Disabled at boot.
[17179572.552000] Mount-cache hash table entries: 512
[17179572.552000] CPU: After generic identify, caps: afe9fbff 00100000 00000000 00000000 00000180 00000000 00000000
[17179572.552000] CPU: After vendor identify, caps: afe9fbff 00100000 00000000 00000000 00000180 00000000 00000000
[17179572.552000] CPU: L1 I cache: 32K, L1 D cache: 32K
[17179572.552000] CPU: L2 cache: 2048K
[17179572.552000] CPU: After all inits, caps: afe9fbff 00100000 00000000 00000040 00000180 00000000 00000000
[17179572.552000] CPU: Intel(R) Pentium(R) M processor 1.86GHz stepping 08
[17179572.552000] Checking 'hlt' instruction... OK.
[17179572.568000] SMP alternatives: switching to UP code
[17179572.568000] Freeing SMP alternatives: 0k freed
[17179572.568000] checking if image is initramfs... it is
[17179573.144000] Freeing initrd memory: 6628k freed
[17179573.144000] ACPI: Core revision 20060707
[17179573.144000] ACPI: Looking for DSDT ... not found!
[17179573.152000] ENABLING IO-APIC IRQs
[17179573.152000] ..TIMER: vector=0x31 apic1=0 pin1=2 apic2=-1 pin2=-1
[17179573.296000] NET: Registered protocol family 16
[17179573.296000] EISA bus registered
[17179573.296000] ACPI: bus type pci registered
[17179573.296000] PCI: Using MMCONFIG
[17179573.296000] Setting up standard PCI resources
[17179573.300000] ACPI: Interpreter enabled
[17179573.300000] ACPI: Using IOAPIC for interrupt routing
[17179573.300000] ACPI: PCI Root Bridge [PCI0] (0000:00)
[17179573.300000] PCI: Probing PCI hardware (bus 00)
[17179573.300000] PCI quirk: region 1000-107f claimed by ICH6 ACPI/GPIO/TCO
[17179573.300000] PCI quirk: region 1180-11bf claimed by ICH6 GPIO
[17179573.300000] PCI: Ignoring BAR0-3 of IDE controller 0000:00:1f.1
[17179573.300000] Boot video device is 0000:01:00.0
[17179573.304000] PCI: Transparent bridge - 0000:00:1e.0
[17179573.304000] PCI: Bus #07 (-#0a) is hidden behind transparent bridge #06 (-#07) (try 'pci=assign-busses')
[17179573.304000] Please report the result to linux-kernel to fix this permanently
[17179573.304000] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[17179573.308000] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEGP._PRT]
[17179573.308000] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT]
[17179573.308000] ACPI: PCI Interrupt Link [LNKA] (IRQs 11) *10
[17179573.308000] ACPI: PCI Interrupt Link [LNKB] (IRQs *10)
[17179573.308000] ACPI: PCI Interrupt Link [LNKC] (IRQs *10)
[17179573.308000] ACPI: PCI Interrupt Link [LNKD] (IRQs *11)
[17179573.308000] ACPI: PCI Interrupt Link [LNKE] (IRQs 11) *10
[17179573.308000] ACPI: PCI Interrupt Link [LNKF] (IRQs 10) *11
[17179573.308000] ACPI: PCI Interrupt Link [LNKG] (IRQs 11) *10
[17179573.308000] ACPI: PCI Interrupt Link [LNKH] (IRQs *10)
[17179573.308000] ACPI: Embedded Controller [EC0] (gpe 28) interrupt mode.
[17179573.456000] Linux Plug and Play Support v0.97 (c) Adam Belay
[17179573.456000] pnp: PnP ACPI init
[17179573.460000] pnp: PnP ACPI: found 10 devices
[17179573.460000] PnPBIOS: Disabled by ACPI PNP
[17179573.460000] PCI: Using ACPI for IRQ routing
[17179573.460000] PCI: If a device doesn't work, try "pci=routeirq". If it helps, post a report
[17179573.460000] PCI: Bridge: 0000:00:01.0
[17179573.460000] IO window: 3000-3fff
[17179573.460000] MEM window: c8100000-c81fffff
[17179573.460000] PREFETCH window: d0000000-d7ffffff
[17179573.460000] PCI: Bus 7, cardbus bridge: 0000:06:09.0
[17179573.460000] IO window: 00004000-000040ff
[17179573.460000] IO window: 00004400-000044ff
[17179573.460000] PREFETCH window: 50000000-51ffffff
[17179573.460000] MEM window: 52000000-53ffffff
[17179573.460000] PCI: Bridge: 0000:00:1e.0
[17179573.460000] IO window: 4000-4fff
[17179573.460000] MEM window: c8200000-c82fffff
[17179573.460000] PREFETCH window: 50000000-51ffffff
[17179573.460000] ACPI: PCI Interrupt 0000:00:01.0[A] -> GSI 16 (level, low) -> IRQ 169
[17179573.460000] PCI: Setting latency timer of device 0000:00:01.0 to 64
[17179573.460000] PCI: Setting latency timer of device 0000:00:1e.0 to 64
[17179573.460000] ACPI: PCI Interrupt 0000:06:09.0[A] -> GSI 16 (level, low) -> IRQ 169
[17179573.460000] NET: Registered protocol family 2
[17179573.500000] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[17179573.500000] TCP established hash table entries: 131072 (order: 7, 524288 bytes)
[17179573.500000] TCP bind hash table entries: 65536 (order: 6, 262144 bytes)
[17179573.500000] TCP: Hash tables configured (established 131072 bind 65536)
[17179573.500000] TCP reno registered
[17179573.500000] Simple Boot Flag at 0x36 set to 0x1
[17179573.500000] audit: initializing netlink socket (disabled)
[17179573.500000] audit(1163793111.500:1): initialized
[17179573.500000] highmem bounce pool size: 64 pages
[17179573.500000] VFS: Disk quotas dquot_6.5.1
[17179573.500000] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[17179573.500000] Initializing Cryptographic API
[17179573.500000] io scheduler noop registered
[17179573.500000] io scheduler anticipatory registered
[17179573.500000] io scheduler deadline registered
[17179573.500000] io scheduler cfq registered (default)
[17179573.500000] ACPI: PCI Interrupt 0000:00:01.0[A] -> GSI 16 (level, low) -> IRQ 169
[17179573.500000] PCI: Setting latency timer of device 0000:00:01.0 to 64
[17179573.500000] assign_interrupt_mode Found MSI capability
[17179573.500000] Allocate Port Service[0000:00:01.0:pcie00]
[17179573.500000] Allocate Port Service[0000:00:01.0:pcie03]
[17179573.500000] isapnp: Scanning for PnP cards...
[17179573.856000] isapnp: No Plug & Play device found
[17179573.876000] Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled
[17179573.876000] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[17179573.876000] 00:07: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[17179573.876000] ACPI: PCI Interrupt 0000:00:1e.3[B] -> GSI 20 (level, low) -> IRQ 193
[17179573.876000] ACPI: PCI interrupt for device 0000:00:1e.3 disabled
[17179573.876000] mice: PS/2 mouse device common for all mice
[17179573.876000] RAMDISK driver initialized: 16 RAM disks of 65536K size 1024 blocksize
[17179573.876000] Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
[17179573.876000] ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
[17179573.876000] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[17179573.916000] serio: i8042 AUX port at 0x60,0x64 irq 12
[17179573.920000] serio: i8042 KBD port at 0x60,0x64 irq 1
[17179573.928000] EISA: Probing bus 0 at eisa.0
[17179573.928000] Cannot allocate resource for EISA slot 1
[17179573.928000] Cannot allocate resource for EISA slot 2
[17179573.928000] Cannot allocate resource for EISA slot 3
[17179573.928000] Cannot allocate resource for EISA slot 4
[17179573.928000] EISA: Detected 0 cards.
[17179573.928000] TCP bic registered
[17179573.928000] NET: Registered protocol family 1
[17179573.928000] NET: Registered protocol family 8
[17179573.928000] NET: Registered protocol family 20
[17179573.928000] Using IPI Shortcut mode
[17179573.928000] ACPI: (supports S0 S3 S4 S5)
[17179573.928000] Freeing unused kernel memory: 288k freed
[17179573.988000] input: AT Translated Set 2 keyboard as /class/input/input0
[17179574.012000] vesafb: framebuffer at 0xd0000000, mapped to 0xf8880000, using 1875k, total 16384k
[17179574.012000] vesafb: mode is 800x600x16, linelength=1600, pages=16
[17179574.012000] vesafb: protected mode interface info at c000:aea2
[17179574.012000] vesafb: scrolling: redraw
[17179574.012000] vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0
[17179574.040000] Console: switching to colour frame buffer device 100x37
[17179574.040000] fb0: VESA VGA frame buffer device
[17179574.048000] Capability LSM initialized
[17179574.068000] ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
[17179574.072000] ACPI: Getting cpuindex for acpiid 0x1
[17179574.076000] ACPI: Thermal Zone [THRM] (47 C)
[17179574.324000] ICH6: IDE controller at PCI slot 0000:00:1f.1
[17179574.328000] ACPI: PCI Interrupt 0000:00:1f.1[A] -> GSI 18 (level, low) -> IRQ 201
[17179574.336000] ICH6: chipset revision 3
[17179574.340000] ICH6: not 100% native mode: will probe irqs later
[17179574.344000] ide0: BM-DMA at 0x18c0-0x18c7, BIOS settings: hda:DMA, hdb:DMA
[17179574.352000] Probing IDE interface ide0...
[17179574.640000] hda: HTS726060M9AT00, ATA DISK drive
[17179575.428000] hdb: QSI DVD+/-RW SDW-082, ATAPI CD/DVD-ROM drive
[17179575.488000] ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
[17179575.512000] hda: max request size: 512KiB
[17179575.524000] hda: 117210240 sectors (60011 MB) w/7877KiB Cache, CHS=16383/255/63, UDMA(100)
[17179575.532000] hda: cache flushes supported
[17179575.536000] hda: hda1 hda2 < hda5 >
[17179575.584000] hdb: ATAPI 24X DVD-ROM DVD-R CD-R/RW drive, 2048kB Cache, UDMA(33)
[17179575.592000] Uniform CD-ROM driver Revision: 3.20
[17179575.872000] Probing IDE interface ide1...
[17179575.896000] usbcore: registered new driver usbfs
[17179575.904000] usbcore: registered new driver hub
[17179575.912000] USB Universal Host Controller Interface driver v3.0
[17179575.916000] ACPI: PCI Interrupt 0000:00:1d.0[A] -> GSI 19 (level, low) -> IRQ 209
[17179575.960000] PCI: Setting latency timer of device 0000:00:1d.0 to 64
[17179575.960000] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[17179575.964000] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 1
[17179575.972000] uhci_hcd 0000:00:1d.0: irq 209, io base 0x00001800
[17179575.980000] usb usb1: configuration #1 chosen from 1 choice
[17179575.984000] hub 1-0:1.0: USB hub found
[17179575.992000] hub 1-0:1.0: 2 ports detected
[17179576.016000] ieee1394: Initialized config rom entry `ip1394'
[17179576.104000] ACPI: PCI Interrupt 0000:00:1d.1[B] -> GSI 23 (level, low) -> IRQ 217
[17179576.108000] PCI: Setting latency timer of device 0000:00:1d.1 to 64
[17179576.108000] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[17179576.116000] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 2
[17179576.124000] uhci_hcd 0000:00:1d.1: irq 217, io base 0x00001820
[17179576.128000] usb usb2: configuration #1 chosen from 1 choice
[17179576.136000] hub 2-0:1.0: USB hub found
[17179576.140000] hub 2-0:1.0: 2 ports detected
[17179576.252000] ACPI: PCI Interrupt 0000:00:1d.2[C] -> GSI 22 (level, low) -> IRQ 225
[17179576.256000] PCI: Setting latency timer of device 0000:00:1d.2 to 64
[17179576.256000] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[17179576.264000] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 3
[17179576.272000] uhci_hcd 0000:00:1d.2: irq 225, io base 0x00001840
[17179576.276000] usb usb3: configuration #1 chosen from 1 choice
[17179576.284000] hub 3-0:1.0: USB hub found
[17179576.292000] hub 3-0:1.0: 2 ports detected
[17179576.348000] usb 1-1: new low speed USB device using uhci_hcd and address 2
[17179576.400000] ACPI: PCI Interrupt 0000:00:1d.3[D] -> GSI 22 (level, low) -> IRQ 225
[17179576.404000] PCI: Setting latency timer of device 0000:00:1d.3 to 64
[17179576.404000] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[17179576.412000] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 4
[17179576.420000] uhci_hcd 0000:00:1d.3: irq 225, io base 0x00001860
[17179576.424000] usb usb4: configuration #1 chosen from 1 choice
[17179576.432000] hub 4-0:1.0: USB hub found
[17179576.436000] hub 4-0:1.0: 2 ports detected
[17179576.540000] usb 1-1: configuration #1 chosen from 1 choice
[17179576.548000] ACPI: PCI Interrupt 0000:00:1d.7[A] -> GSI 19 (level, low) -> IRQ 209
[17179576.556000] PCI: Setting latency timer of device 0000:00:1d.7 to 64
[17179576.556000] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[17179576.560000] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 5
[17179576.568000] ehci_hcd 0000:00:1d.7: debug port 1
[17179576.572000] PCI: cache line size of 32 is not supported by device 0000:00:1d.7
[17179576.572000] ehci_hcd 0000:00:1d.7: irq 209, io mem 0xc8000000
[17179576.584000] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
[17179576.592000] usb usb5: configuration #1 chosen from 1 choice
[17179576.596000] hub 5-0:1.0: USB hub found
[17179576.604000] hub 5-0:1.0: 8 ports detected
[17179576.720000] usb 1-1: USB disconnect, address 2
[17179576.852000] ACPI: PCI Interrupt 0000:06:09.2[C] -> GSI 18 (level, low) -> IRQ 201
[17179576.908000] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[201] MMIO=[c8217000-c82177ff] Max Packet=[2048] IR/IT contexts=[4/8]
[17179577.612000] usb 5-5: new high speed USB device using ehci_hcd and address 4
[17179577.748000] usb 5-5: configuration #1 chosen from 1 choice
[17179577.752000] hub 5-5:1.0: USB hub found
[17179577.760000] hub 5-5:1.0: 4 ports detected
[17179578.028000] usbcore: registered new driver hiddev
[17179578.192000] ieee1394: Host added: ID:BUS[0-00:1023] GUID[00e0b8060400921e]
[17179578.268000] usb 1-1: new low speed USB device using uhci_hcd and address 3
[17179578.456000] usb 1-1: configuration #1 chosen from 1 choice
[17179578.704000] usb 1-2: new full speed USB device using uhci_hcd and address 4
[17179578.880000] usb 1-2: configuration #1 chosen from 1 choice
[17179579.092000] usb 5-5.1: new full speed USB device using ehci_hcd and address 5
[17179579.204000] usb 5-5.1: configuration #1 chosen from 1 choice
[17179579.412000] usb 5-5.2: new full speed USB device using ehci_hcd and address 6
[17179579.524000] usb 5-5.2: configuration #1 chosen from 1 choice
[17179579.732000] usb 5-5.4: new high speed USB device using ehci_hcd and address 7
[17179579.844000] usb 5-5.4: configuration #1 chosen from 1 choice
[17179579.892000] input: Microsoft Microsoft USB Wireless Mouse as /class/input/input1
[17179579.900000] input: USB HID v1.11 Mouse [Microsoft Microsoft USB Wireless Mouse] on usb-0000:00:1d.0-1
[17179579.916000] usbcore: registered new driver usbhid
[17179579.920000] drivers/usb/input/hid-core.c: v2.6:USB HID core driver
[17179579.928000] usbcore: registered new driver libusual
[17179579.960000] SCSI subsystem initialized
[17179579.968000] Initializing USB Mass Storage driver...
[17179579.972000] scsi0 : SCSI emulation for USB Mass Storage devices
[17179579.980000] usb-storage: device found at 7
[17179579.980000] usb-storage: waiting for device to settle before scanning
[17179579.980000] usbcore: registered new driver usb-storage
[17179579.988000] USB Mass Storage support registered.
[17179580.124000] kjournald starting. Commit interval 5 seconds
[17179580.132000] EXT3-fs: mounted filesystem with ordered data mode.
[17179584.980000] usb-storage: device scan complete
[17179584.980000] Vendor: Memorex Model: TD 2C Rev: 1.00
[17179584.992000] Type: Direct-Access ANSI SCSI revision: 00
[17179590.748000] parport: PnPBIOS parport detected.
[17179590.760000] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
[17179591.044000] hw_random: RNG not detected
[17179591.052000] Linux agpgart interface v0.101 (c) Dave Jones
[17179591.108000] agpgart: Detected an Intel 915GM Chipset.
[17179591.132000] agpgart: AGP aperture is 256M @ 0x0
[17179591.200000] Real Time Clock Driver v1.12ac
[17179591.352000] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[17179591.368000] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[17179591.484000] ACPI: PCI Interrupt 0000:00:1e.2[A] -> GSI 21 (level, low) -> IRQ 233
[17179591.492000] PCI: Setting latency timer of device 0000:00:1e.2 to 64
[17179591.804000] intel8x0_measure_ac97_clock: measured 54105 usecs
[17179591.808000] intel8x0: clocking to 48000
[17179591.908000] tg3.c:v3.59.1 (August 25, 2006)
[17179591.916000] ACPI: PCI Interrupt 0000:06:00.0[A] -> GSI 19 (level, low) -> IRQ 209
[17179591.932000] eth0: Tigon3 [partno(BCM95705A50) rev 3003 PHY(5705)] (PCI:33MHz:32-bit) 10/100/1000BaseT Ethernet 00:e0:b8:82:03:3e
[17179591.944000] eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] Split[0] WireSpeed[0] TSOcap[1]
[17179591.952000] eth0: dma_rwctrl[763f0000] dma_mask[64-bit]
[17179591.960000] drivers/usb/class/usblp.c: usblp0: USB Bidirectional printer dev 5 if 0 alt 0 proto 2 vid 0x03F0 pid 0x0F12
[17179591.972000] drivers/usb/class/usblp.c: usblp1: USB Bidirectional printer dev 6 if 0 alt 0 proto 2 vid 0x04F9 pid 0x2015
[17179591.988000] usbcore: registered new driver usblp
[17179591.996000] drivers/usb/class/usblp.c: v0.13: USB Printer Device Class driver
[17179592.012000] ACPI: PCI Interrupt 0000:06:09.0[A] -> GSI 16 (level, low) -> IRQ 169
[17179592.020000] Yenta: CardBus bridge found at 0000:06:09.0 [107b:0604]
[17179592.028000] Yenta: Using CSCINT to route CSC interrupts to PCI
[17179592.032000] Yenta: Routing CardBus interrupts to PCI
[17179592.040000] Yenta TI: socket 0000:06:09.0, mfunc 0x01ac1b22, devctl 0x64
[17179592.064000] sdhci: Secure Digital Host Controller Interface driver, 0.12
[17179592.072000] sdhci: Copyright(c) Pierre Ossman
[17179592.104000] ieee80211_crypt: registered algorithm 'NULL'
[17179592.104000] ieee80211: 802.11 data/management/control stack, git-1.1.13
[17179592.112000] ieee80211: Copyright (C) 2004-2005 Intel Corporation <email address hidden>
[17179592.140000] ipw2200: Intel(R) PRO/Wireless 2200/2915 Network Driver, 1.1.2kmprq
[17179592.148000] ipw2200: Copyright(c) 2003-2006 Intel Corporation
[17179592.156000] Driver 'ipw2200' needs updating - please use bus_type methods
[17179592.216000] usbcore: registered new driver usbserial
[17179592.224000] drivers/usb/serial/usb-serial.c: USB Serial support registered for generic
[17179592.236000] usbcore: registered new driver usbserial_generic
[17179592.244000] drivers/usb/serial/usb-serial.c: USB Serial Driver core
[17179592.252000] drivers/usb/serial/usb-serial.c: USB Serial support registered for Handspring Visor / Palm OS
[17179592.268000] drivers/usb/serial/usb-serial.c: USB Serial support registered for Sony Clie 3.5
[17179592.280000] drivers/usb/serial/usb-serial.c: USB Serial support registered for Sony Clie 5.0
[17179592.288000] visor 1-2:1.0: Handspring Visor / Palm OS converter detected
[17179592.300000] Yenta: ISA IRQ mask 0x0c78, PCI irq 169
[17179592.308000] Socket status: 30000006
[17179592.316000] Yenta: Raising subordinate bus# of parent bus (#06) from #07 to #0a
[17179592.324000] pcmcia: parent PCI bridge I/O window: 0x4000 - 0x4fff
[17179592.332000] cs: IO port probe 0x4000-0x4fff: clean.
[17179592.344000] pcmcia: parent PCI bridge Memory window: 0xc8200000 - 0xc82fffff
[17179592.352000] pcmcia: parent PCI bridge Memory window: 0x50000000 - 0x51ffffff
[17179592.360000] usb 1-2: Handspring Visor / Palm OS converter now attached to ttyUSB0
[17179592.368000] usb 1-2: Handspring Visor / Palm OS converter now attached to ttyUSB1
[17179592.376000] usbcore: registered new driver visor
[17179592.384000] drivers/usb/serial/visor.c: USB HandSpring Visor / Palm OS driver
[17179592.400000] sdhci: SDHCI controller found at 0000:06:09.4 [104c:8034] (rev 0)
[17179592.408000] ACPI: PCI Interrupt 0000:06:09.4[A] -> GSI 16 (level, low) -> IRQ 169
[17179592.416000] mmc0: SDHCI at 0xc8218000 irq 169 DMA
[17179592.424000] mmc1: SDHCI at 0xc8217c00 irq 169 DMA
[17179592.428000] mmc2: SDHCI at 0xc8217800 irq 169 DMA
[17179592.448000] ACPI: PCI Interrupt 0000:06:09.3[A] -> GSI 16 (level, low) -> IRQ 169
[17179592.456000] ACPI: PCI Interrupt 0000:06:04.0[A] -> GSI 17 (level, low) -> IRQ 50
[17179592.708000] Synaptics Touchpad, model: 1, fw: 5.9, id: 0x23aeb3, caps: 0xa04713/0x10008
[17179592.740000] ipw2200: Detected Intel PRO/Wireless 2200BG Network Connection
[17179592.760000] input: SynPS/2 Synaptics TouchPad as /class/input/input2
[17179592.860000] ts: Compaq touchscreen protocol output
[17179593.012000] SCSI device sda: 492544 512-byte hdwr sectors (252 MB)
[17179593.032000] sda: Write Protect is off
[17179593.040000] sda: Mode Sense: 23 00 00 00
[17179593.040000] sda: assuming drive cache: write through
[17179593.156000] SCSI device sda: 492544 512-byte hdwr sectors (252 MB)
[17179593.164000] sda: Write Protect is off
[17179593.172000] sda: Mode Sense: 23 00 00 00
[17179593.172000] sda: assuming drive cache: write through
[17179593.180000] sda: sda1
[17179593.192000] sd 0:0:0:0: Attached scsi removable disk sda
[17179593.372000] ipw2200: Radio Frequency Kill Switch is On:
[17179593.372000] Kill switch must be turned off for wireless networking to work.
[17179593.388000] ipw2200: Detected geography ZZM (11 802.11bg channels, 0 802.11a channels)
[17179593.396000] sd 0:0:0:0: Attached scsi generic sg0 type 0
[17179593.544000] PM: Writing back config space on device 0000:06:00.0 at offset c (was fbff0000, writing 0)
[17179593.544000] PM: Writing back config space on device 0000:06:00.0 at offset b (was 165314e4, writing 604107b)
[17179593.544000] PM: Writing back config space on device 0000:06:00.0 at offset 3 (was 0, writing 2008)
[17179593.544000] PM: Writing back config space on device 0000:06:00.0 at offset 2 (was 2000000, writing 2000003)
[17179593.544000] PM: Writing back config space on device 0000:06:00.0 at offset 1 (was 2b00000, writing 2b00006)
[17179593.544000] PM: Writing back config space on device 0000:06:00.0 at offset 0 (was 165314e4, writing 165414e4)
[17179593.676000] cs: IO port probe 0x100-0x3af: clean.
[17179593.684000] cs: IO port probe 0x3e0-0x4ff: excluding 0x4d0-0x4d7
[17179593.692000] cs: IO port probe 0x820-0x8ff: clean.
[17179593.696000] cs: IO port probe 0xc00-0xcf7: clean.
[17179593.704000] cs: IO port probe 0xa00-0xaff: clean.
[17179593.848000] lp0: using parport0 (interrupt-driven).
[17179593.892000] ieee1394: sbp2: Driver forced to serialize I/O (serialize_io=1)
[17179593.896000] ieee1394: sbp2: Try serialize_io=0 for better performance
[17179594.008000] EXT3 FS on hda1, internal journal
[17179594.168000] md: md driver 0.90.3 MAX_MD_DEVS=256, MD_SB_DISKS=27
[17179594.168000] md: bitmap version 4.39
[17179594.324000] device-mapper: 4.6.0-ioctl (2006-02-17) initialised: <email address hidden>
[17179594.704000] NET: Registered protocol family 17
[17179595.236000] tg3: eth0: Link is up at 100 Mbps, full duplex.
[17179595.236000] tg3: eth0: Flow control is on for TX and on for RX.
[17179595.928000] NET: Registered protocol family 10
[17179595.928000] lo: Disabled Privacy Extensions
[17179595.928000] ADDRCONF(NETDEV_UP): eth1: link is not ready
[17179595.928000] IPv6 over IPv4 tunneling driver
[17179599.496000] ACPI: AC Adapter [ACAD] (on-line)
[17179599.680000] ACPI: Battery Slot [BAT1] (battery present)
[17179599.692000] ACPI: Power Button (FF) [PWRF]
[17179599.692000] ACPI: Power Button (CM) [PWRB]
[17179599.692000] ACPI: Sleep Button (CM) [SLPB]
[17179599.692000] ACPI: Lid Switch [LID]
[17179599.720000] ACPI: Error installing notify handler
[17179599.796000] ibm_acpi: ec object not found
[17179599.820000] pcc_acpi: loading...
[17179599.916000] ACPI: Video Device [VGA] (multi-head: yes rom: no post: no)
[17179601.704000] fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
[17179601.708000] [fglrx] Maximum main memory to use for locked dma buffers: 928 MBytes.
[17179601.708000] [fglrx] module loaded - fglrx 8.28.8 [Aug 17 2006] on minor 0
[17179601.736000] ACPI: PCI Interrupt 0000:01:00.0[A] -> GSI 16 (level, low) -> IRQ 169
[17179604.132000] mtrr: no more MTRRs available
[17179604.132000] mtrr: no more MTRRs available
[17179604.132000] mtrr: no more MTRRs available
[17179604.408000] apm: BIOS not found.
[17179606.180000] eth0: no IPv6 routers present
[17179607.988000] Bluetooth: Core ver 2.8
[17179607.988000] NET: Registered protocol family 31
[17179607.988000] Bluetooth: HCI device and connection manager initialized
[17179607.988000] Bluetooth: HCI socket layer initialized
[17179608.024000] Bluetooth: L2CAP ver 2.8
[17179608.024000] Bluetooth: L2CAP socket layer initialized
[17179608.060000] Bluetooth: HIDP (Human Interface Emulation) ver 1.1-mh1
[17179608.088000] Bluetooth: RFCOMM socket layer initialized
[17179608.088000] Bluetooth: RFCOMM TTY layer initialized
[17179608.088000] Bluetooth: RFCOMM ver 1.7
[17179619.472000] FAT: utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
[17183566.632000] usb 1-2: USB disconnect, address 4
[17183566.632000] visor ttyUSB0: Handspring Visor / Palm OS converter now disconnected from ttyUSB0
[17183566.632000] visor ttyUSB1: Handspring Visor / Palm OS converter now disconnected from ttyUSB1
[17183566.632000] visor 1-2:1.0: device disconnected
[17183567.376000] usb 1-2: new full speed USB device using uhci_hcd and address 5
[17183567.548000] usb 1-2: configuration #1 chosen from 1 choice
[17183567.556000] visor 1-2:1.0: Handspring Visor / Palm OS converter detected
[17183567.556000] usb 1-2: Handspring Visor / Palm OS converter now attached to ttyUSB0
[17183567.556000] usb 1-2: Handspring Visor / Palm OS converter now attached to ttyUSB1
[17183582.004000] usb 1-2: USB disconnect, address 5
[17183582.004000] visor ttyUSB0: Handspring Visor / Palm OS converter now disconnected from ttyUSB0
[17183582.004000] visor ttyUSB1: Handspring Visor / Palm OS converter now disconnected from ttyUSB1
[17183582.004000] visor 1-2:1.0: device disconnected
[17183582.748000] usb 1-2: new full speed USB device using uhci_hcd and address 6
[17183582.924000] usb 1-2: configuration #1 chosen from 1 choice
[17183582.928000] visor 1-2:1.0: Handspring Visor / Palm OS converter detected
[17183582.928000] usb 1-2: Handspring Visor / Palm OS converter now attached to ttyUSB0
[17183582.928000] usb 1-2: Handspring Visor / Palm OS converter now attached to ttyUSB1

===============================================================

prh@phil-laptop:~$ sudo fdisk -l
Password:

Disk /dev/hda: 60.0 GB, 60011642880 bytes
255 heads, 63 sectors/track, 7296 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot Start End Blocks Id System
/dev/hda1 * 1 6996 56195338+ 83 Linux
/dev/hda2 6997 7296 2409750 5 Extended
/dev/hda5 6997 7296 2409718+ 82 Linux swap / Solaris

Disk /dev/sda: 252 MB, 252182528 bytes
32 heads, 16 sectors/track, 962 cylinders
Units = cylinders of 512 * 512 = 262144 bytes

   Device Boot Start End Blocks Id System
/dev/sda1 * 1 962 246264 e W95 FAT16 (LBA)

==============================================================

prh@phil-laptop:~$ sudo mount
/dev/hda1 on / type ext3 (rw,errors=remount-ro)
proc on /proc type proc (rw,noexec,nosuid,nodev)
/sys on /sys type sysfs (rw,noexec,nosuid,nodev)
varrun on /var/run type tmpfs (rw,noexec,nosuid,nodev,mode=0755)
varlock on /var/lock type tmpfs (rw,noexec,nosuid,nodev,mode=1777)
procbususb on /proc/bus/usb type usbfs (rw)
udev on /dev type tmpfs (rw,mode=0755)
devshm on /dev/shm type tmpfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
lrm on /lib/modules/2.6.17-10-386/volatile type tmpfs (rw)
binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
/dev/sda1 on /media/TRAVELDRIVE type vfat (rw,nosuid,nodev,quiet,shortname=mixed,uid=1000,gid=1000,umask=077,iocharset=utf8)
/dev/hda1 on / type ext3 (rw,errors=remount-ro)

===============================================================

prh@phil-laptop:~$ sudo vol_id /dev/hda5
ID_FS_USAGE=other
ID_FS_TYPE=swap
ID_FS_VERSION=2
ID_FS_UUID=f1ecb634-26ae-4cc5-a3f3-5730f70f6aa3
ID_FS_LABEL=
ID_FS_LABEL_SAFE=
===============================================================

-Phil

Revision history for this message
Frode M. Døving (frode) said :
#12

Found it.

You're missing a 'none' in /etc/fstab
You have:
#UUID=f1ecb634-26ae-4cc5-a3f3-5730f70f6aa3 swap sw 0 0
 /dev/hda5 swap sw 0 0

Should be:
UUID=f1ecb634-26ae-4cc5-a3f3-5730f70f6aa3 none swap sw 0 0
# /dev/hda5 none swap sw 0 0

Please change this. And re-run 'sudo swapon -av' and 'free -m'.

- Frode

Revision history for this message
56[hil (philip-r-huffman) said :
#13

Frode,

Thanks. That did the trick. I'll close the support request.

-Phil