Is line 32 the last line?
That's typical of these errors. It's the line where the missing quote was discovered, not where it was caused.
I'm seeing in your code block:
Code:
GRUB_CMDLINE_LINUX_DEFAULT=" resume=/dev/disk/by-uuid/40c9d08d-be72-4b80-abb0-b4d42c874871 splash=silent quiet showopts"
i915.modeset="1 tpm_tis.interrupts=0""
That still looks to me as if it is two lines, but should be one. Try (as a single line)
Code:
GRUB_CMDLINE_LINUX_DEFAULT=" resume=/dev/disk/by-uuid/40c9d08d-be72-4b80-abb0-b4d42c874871 splash=silent quiet showopts i915.modeset=1 tpm_tis.interrupts=0"
What editor are you using.
My guess is that you are using an editor intended for word processing documents, and it is "fixing" your bad grammar, thus breaking the script.
Try "vi" (steep learning curve), or "nano" (fairly easy), or "joe" (I never tried it, but it is supposed to be okay for these kinds of tasks).
Bookmarks