Swap ungenutzt?

Du kommst mit der Installation nicht voran oder willst noch was nachfragen? Schau auch in den "Tipps und Tricks"-Bereich.
Antworten
stollentroll
Beiträge: 134
Registriert: 15.03.2005 08:45:11
Wohnort: Kölle

Swap ungenutzt?

Beitrag von stollentroll » 01.09.2005 18:43:39

Hallo Zusammen,

ich hab so das blöde Gefühl, das meine Swap-Partition nicht genutzt bzw. nicht erkannt wird. Ich weis nicht ob das sein kann?
Jedenfalls gibt mir free -m

Code: Alles auswählen

              total       used       free     shared    buffers     cached
Mem:           504        343        160          0         18        190
-/+ buffers/cache:        134        369
Swap:            0          0          0
das an, obwohl ich 600MB Swap habe.
Vieleicht hab ich ja auch das ganze System nicht verstanden ;-) Jedenfalls würde ich gerne wissen ob das normal ist, oder wirklich was nicht stimmt.

Gruß,
Christian

Benutzeravatar
feltel
Webmaster
Beiträge: 10476
Registriert: 20.12.2001 13:08:23
Lizenz eigener Beiträge: MIT Lizenz
Wohnort: Leipzig, Germany
Kontaktdaten:

Beitrag von feltel » 01.09.2005 18:56:50

Der Swap ist tatsächlich nicht aktiv. Zeig mal Deine /etc/fstab.

stollentroll
Beiträge: 134
Registriert: 15.03.2005 08:45:11
Wohnort: Kölle

Beitrag von stollentroll » 01.09.2005 19:35:42

die sieht bei mir so aus:

Code: Alles auswählen

# /etc/fstab: static file system information.
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
proc            /proc           proc    defaults        0       0
/dev/hda6       /               ext3    defaults,errors=remount-ro 0       1
/dev/hda4       none            swap    sw              0       0
/dev/hdc        /media/cdrom0   iso9660 ro,user,noauto  0       0
/dev/hdd        /media/cdrom1   iso9660 ro,user,noauto  0       0
/dev/fd0        /media/floppy0  auto    rw,user,noauto  0       0
/dev/hda5       /mnt/Daten      auto    rw,user,noauto  0       0
/dev/sda1       /mnt/usbstick   vfat    sync,rw,user,noauto 0 0
/dev/hda1       /mnt/windows    ntfs    rw,user,noauto,umask=002

Benutzeravatar
puntarenas
Beiträge: 712
Registriert: 28.05.2005 15:07:05

Beitrag von puntarenas » 01.09.2005 20:19:17

Wenn du sicher bist, daß /dev/hda4 dein Swapdevice ist, probier es mal manuell:

Kommt bei

Code: Alles auswählen

swapon /dev/hda4
eine Fehlermeldung?

Falls das Device einfach noch nicht als Swap formatiert ist, reicht normalerweise ein

Code: Alles auswählen

mkswap /dev/hda4

stollentroll
Beiträge: 134
Registriert: 15.03.2005 08:45:11
Wohnort: Kölle

Beitrag von stollentroll » 01.09.2005 21:00:43

Danke puntarenas,

das war's. Meine Swap ist hda3 :roll:
Auf die Idee bin ich gar nicht gekommen, weil der Installer ja den Eintrag in fstab gemacht hat. Ich hab mich da mal einfach drauf verlassen...

Gruß,
Christian

Elscha
Beiträge: 90
Registriert: 14.10.2004 20:04:11

Beitrag von Elscha » 02.09.2005 00:14:00

Tchia es gibt auch Leute die vor lauter Partitionieren, ganz vergessen eine SWAP Partition anzulegen :roll:

padarasa
Beiträge: 281
Registriert: 11.12.2004 13:17:10
Wohnort: Friedberg (Hessen)

Beitrag von padarasa » 02.09.2005 00:29:12

Elscha hat geschrieben:Tchia es gibt auch Leute die vor lauter Partitionieren, ganz vergessen eine SWAP Partition anzulegen :roll:
Ich hab eher das Gefühl, dass ich mir die SWAP-Partition hätte sparen können ;-).

Benutzeravatar
puntarenas
Beiträge: 712
Registriert: 28.05.2005 15:07:05

Beitrag von puntarenas » 02.09.2005 00:31:16

Alternativ kannst du auch in eine Datei swappen, etwa wie hier beschrieben:
To add a swap file:

1.
Determine the size of the new swap file and multiple by 1024 to determine the block size. For example, the block size of a 64 MB swap file is 65536.

2.
At a shell prompt as root, type the following command with count being equal to the desired block size:

dd if=/dev/zero of=/swapfile bs=1024 count=65536

3.
Setup the swap file with the command:

mkswap /swapfile

4.
To enable the swap file immediately but not automatically at boot time:

swapon /swapfile

5.

To enable it at boot time, edit /etc/fstab to include:

/swapfile swap swap defaults 0 0

The next time the system boots, it will enable the new swap file.

6.

After adding the new swap file and enabling it, make sure it is enabled by viewing the output of the command cat /proc/swaps or free.

Antworten