edit: cheers for all the help folks

Swap partition is not crucial but it is necessary. I think you can't hibernate your computer without it. Install or launch the program named "Gparted" it can let you shrink/resize and create partitions. But be very careful, if you're asking this in forum chances you may make a mistake and lose data is very high.cpowell1164 wrote:hello all, so i installed mint a while back on my laptop, during said installation a friend helped me partition it manually, now i didnt create a swap partition, so i was wondering, do i need one with 4gb of ram and how can i create one when i only have one hard drive on my system , thanks in advance
A good rule is to make your swap partition slightly bigger than your installed ram.cpowell1164 wrote:so i was wondering, do i need one with 4gb of ram
Code: Select all
sudo apt-get install swapspace
Code: Select all
inxi -p
Now I feel dumb, Reorx. I should have thought of that myself...Reorx wrote:Just out of curiosity, could you please post the output of this terminal command >>>Code: Select all
inxi -p
cpowell1164@cpowell1164-Lenovo-G50-30:~ > inxi -paustin.texas wrote:Now I feel dumb, Reorx. I should have thought of that myself...Reorx wrote:Just out of curiosity, could you please post the output of this terminal command >>>Code: Select all
inxi -p
No need to feel dumb austin... the are many paths to the same destination... I should have asked for a Gparted screen shot!austin.texas wrote:Now I feel dumb, Reorx. I should have thought of that myself...Reorx wrote:Just out of curiosity, could you please post the output of this terminal command >>>Code: Select all
inxi -p
Code: Select all
sudo dd if=/dev/zero of=/swap bs=1024 count=4621440
sudo mkswap /swap
sudo swapon /swap
Code: Select all
sudo nano /etc/fstab
Code: Select all
/swap swap swap defaults 0 0