VSIDO Community

VSIDO Controls => Feedback & Suggestions => Topic started by: jedi on October 13, 2014, 09:33:19 PM

Title: [SOLVED] Swap or no swap...
Post by: jedi on October 13, 2014, 09:33:19 PM
On any new install I do, I always choose the no swap choice from the menu.  However, on the very next reboot, and subsequent reboots after that, it takes quite a while for the system to boot.  This is because in /etc/fstab there is always an entry for /dev/swap that is not commented out.  I have to physically go into fstab and edit this line by commenting it out in order for my boot times to be normal.

This is a look at my fstab after a brand new install;

# /etc/fstab: static file system information.
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>

proc /proc proc defaults 0 0
# /dev/sda1
/dev/sda1 / ext4 relatime,errors=remount-ro 0 1
# /dev/sda2 home
/dev/sda2 /home ext4 relatime 0 0
# /dev/
/dev/ none swap sw 0 0
# cdrom
/dev/cdrom /media/cdrom udf,iso9660 user,noauto,exec,utf8 0 0



After editing it, I have this;

# /etc/fstab: static file system information.
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>

proc /proc proc defaults 0 0
# /dev/sda1
/dev/sda1 / ext4 defaults,noatime 0 1
# /dev/sda2 home
/dev/sda2 /home ext4 defaults,noatime 0 0
# /dev/
# /dev/ none swap sw 0 0
# cdrom
/dev/cdrom /media/cdrom udf,iso9660 user,noauto,exec,utf8 0 0



Anyone else running into this issue on new installs?  If so, please respond ASAP here.  Be nice to know if it is just me or if it is happening to everyone.  On my installs, I choose to have a separate "/" and "/home".  (as you can see in the fstab posted above)  (The "defaults,noatime" is an edit I make due to having SSD drives.)  I can't imagine what is causing this.  Any input appreciated...

Thanks
Title: Re: Swap or no swap...
Post by: VastOne on October 13, 2014, 09:35:22 PM
I asked jedi to post this (thanks mate)..

I have done at least 1,000 test installs over the last year (since commenting out swap from the build fstabs) and have never seen this

This is a bit bizarre IMO and we are seeking comments just to see where this issue is
Title: Re: Swap or no swap...
Post by: PackRat on October 13, 2014, 11:29:35 PM
@jedi -

By new install do you mean a clean install where your drive is formatted?

Is this happening on your laptop - which is new enough to have UEFI, correct? If so, you running BIOS legacy or doing some install-fu for UEFI?

Only thing that comes to mind is that you have something in your hardware specs causing the installer to barf a bit.
Title: Re: Swap or no swap...
Post by: VastOne on October 13, 2014, 11:48:34 PM
^ You have not seen this behavior then Mr RatMan?
Title: Re: Swap or no swap...
Post by: jedi on October 13, 2014, 11:55:32 PM
Hey PackRat!  No, this is on an 8 year old Thinkpad, running in regular legacy BIOS as I'm fairly sure this is NOT a UEFI enabled machine.  It has a 256Gb SSD, and 8Gb's of RAM.  Totally wiped and cleaned the drive, formatted and reinstalled with the same results.  Bizarre to say the least.
Title: Re: Swap or no swap...
Post by: PackRat on October 14, 2014, 01:40:12 AM
8 years old shouldn't be UEFI.

No I've never had this happen. I've installed with and without swap on my HP laptop and my old desktop. Neither are UEFI.

Can't see why the installer would only fail for jed unless it's hardware related.

Anyone other posts on this topic? Be interesting if they had a Thinkpad, or at least a laptop.

You use a CD or USB to perform the install, jed?
Title: Re: Swap or no swap...
Post by: jedi on October 14, 2014, 01:47:31 AM
It is definitely not a UEFI system.  I used a liveUSB created with dd.  Oddly enough, I did a reinstall with just one partition consisting of the entire drive, and it worked as it is supposed to.  (/ and /home on the same partition of /dev/sda1)
Title: Re: Swap or no swap...
Post by: VastOne on October 14, 2014, 01:56:21 AM
^ That gives me a starting point in the script to see what is failing with a creation of a /home partition.  It is obviously choosing a different fstab file for that event
Title: Re: Swap or no swap...
Post by: PackRat on October 14, 2014, 02:13:22 AM
@jedi - do you typically just use a / and /home partition?

I also use a separate /home, but also have a partition for data and nfs share. Be interesting if it's the two partition only scheme that triggers this.
Title: Re: Swap or no swap...
Post by: VastOne on October 14, 2014, 02:21:29 AM
@packrat... Do you allow the installer to create your /home partition or do you add an existing directory to fstab?
Title: Re: Swap or no swap...
Post by: jedi on October 14, 2014, 02:50:09 AM
Yes, always a separate /home partition...   Used to have /var, /usr, /etc, /boot, but in the end figured why so complicated and narrowed it down to just the two.  (/ and /home)
Title: Re: [SOLVED] Swap or no swap...
Post by: jedi on October 14, 2014, 04:49:39 AM
As always, VastOne provides a wonderful save!  Well done, and thank-you very much sir!!!   :)
Title: Re: [SOLVED] Swap or no swap...
Post by: VastOne on October 14, 2014, 04:51:40 AM
Thanks...

I appreciate the bug reported... once I knew about it I could track it down

For those keeping score, the installer was in fact creating a separate/different fstab file and I simply corrected it

Thanks jedi!
Title: Re: Swap or no swap...
Post by: PackRat on October 14, 2014, 10:10:15 AM
Quote from: VastOne on October 14, 2014, 02:21:29 AM
@packrat... Do you allow the installer to create your /home partition or do you add an existing directory to fstab?

I pre-partition my drive then select which will be /, /home, and swap.

After install I use blkid and edit /etc/fstab to mount it all by UUID.
Title: Re: [SOLVED] Swap or no swap...
Post by: VastOne on October 14, 2014, 12:33:26 PM
^ Exactly my method of madness...  8)
Title: Re: [SOLVED] Swap or no swap...
Post by: PackRat on October 14, 2014, 01:02:07 PM
Quote from: VastOne on October 14, 2014, 04:51:40 AM
Thanks...

I appreciate the bug reported... once I knew about it I could track it down

For those keeping score, the installer was in fact creating a separate/different fstab file and I simply corrected it

Thanks jedi!

Any idea how this will impact a user that wants to create a /, /home, swap partition scheme?
Title: Re: [SOLVED] Swap or no swap...
Post by: VastOne on October 14, 2014, 01:15:35 PM
That is a completely different script PackRat. The original script (Install VSIDO with swap option) is there for people who definitely want to install with a swap partition. It doesn't make any difference at all in that scenario since a swap partition would be created in all install schemas
Title: Re: [SOLVED] Swap or no swap...
Post by: airtime on October 16, 2014, 06:12:48 AM
Quick turn around guys.. nice