How can I change screen resolution in terminal mode (that is switched on by ctrl+alt+Fn)? Some time ago the resolution was bigger. I suppose after upgrading Nvidia driver this was lost and now there are large characters displayed which I don't like.
Announcement
Collapse
No announcement yet.
Screen resolution in terminal mode
Collapse
This topic is closed.
X
X
-
Pan-Galactic QuordlepleenSo Long, and Thanks for All the Fish
- Jul 2011
- 9524
- Seattle, WA, USA
- Send PM
I don't believe the proprietary driver supports anything other than 80x25 on a TTY. According to the Arch wiki, it's because the driver lacks a frame buffer for high-resolution consoles.
- Top
- Bottom
-
All of this assumes that you're in runlevel 1 (ctrl+alt+F1)
Code:$ sudo apt-get install v86d hwinfo $ sudo hwinfo --framebuffer
Code:$ sudo nano /etc/default/grub
then add this line below it: GRUB_GFXPAYLOAD_LINUX=the resolution you wrote down
Save the file and then:
Code:$ echo FRAMEBUFFER=y | sudo tee /etc/initramfs-tools/conf.d/splash $ sudo update-grub $ sudo update-initramfs -u $ sudo reboot
- Top
- Bottom
Comment
-
Pan-Galactic QuordlepleenSo Long, and Thanks for All the Fish
- Jul 2011
- 9524
- Seattle, WA, USA
- Send PM
I have seen these suggestions, often as part of a larger set of steps (example: http://byobu.info/article/Changing_P...ion_in_Ubuntu/). Can you confirm if your version accomplishes the stated goal -- higher resolution console on the proprietary nVidia blob after boot has completed, as opposed to only at the GRUB prompt?
- Top
- Bottom
Comment
-
My wife and I both got the nvidia blob before the login screen when we were both on 13.04. I'm on 13.10 and I don't think I've seen the blob, but the pretty glowing Kubuntu splash still shows up (vs the ugly Kubuntu with 3-5 dots). I haven't looked at my grub config since I have had other fires to put out...
- Top
- Bottom
Comment
-
My nvidia machine has a much nicer TTY look using
GRUB_GFXMODE=1280x1024
in /etc/default/grub. This gets me 64x160. I also use 100 DPI fonts and have set my screens to 100 DPI. I don't think I had to change anything else to get this result.
EDIT: I did switch grub to DejaVuSansMono.pf2 font, but I don't think that affects resolution.Last edited by oshunluvr; Oct 25, 2013, 08:16 AM.
- Top
- Bottom
Comment
-
Pan-Galactic QuordlepleenSo Long, and Thanks for All the Fish
- Jul 2011
- 9524
- Seattle, WA, USA
- Send PM
Originally posted by Buddlespit View PostMy wife and I both got the nvidia blob before the login screen when we were both on 13.04. I'm on 13.10 and I don't think I've seen the blob, but the pretty glowing Kubuntu splash still shows up (vs the ugly Kubuntu with 3-5 dots). I haven't looked at my grub config since I have had other fires to put out...
Originally posted by oshunluvr View PostMy nvidia machine has a much nicer TTY look using ... /etc/default/grub.
- Top
- Bottom
Comment
-
I've even dropped most of the older stuff from xorg.conf. Most happens auto-magically. I've been really pleased with the progress nVidia has made - until recently of course
- Top
- Bottom
Comment
-
Originally posted by SteveRiley View PostMy use of the word "blob" here means the binary drivers provided by nVidia, as opposed to the open source Nouveau drivers.
- Top
- Bottom
Comment
-
What I did very simply:
Code:sudo /etc/default/grub
then added between cotes "792" that correspond to 1024x768 becoming GRUB_CMDLINE_LINUX="792"
save the file. Then
Code:sudo update-grub sudo reboot
- Top
- Bottom
Comment
-
Pan-Galactic QuordlepleenSo Long, and Thanks for All the Fish
- Jul 2011
- 9524
- Seattle, WA, USA
- Send PM
Originally posted by alesandro View Postsearch for GRUB_CMDLINE_LINUX=""
then added between cotes "792" that correspond to 1024x768 becoming GRUB_CMDLINE_LINUX="792"
I tried various vga=modenumber entries, based on reports of valid numbers for nVidia, but none worked. Then I remembered that rEFInd, the boot manager I use, has a couple mechanisms for controlling boot appearance as documented in /boot/efi/EFI/refind/refind.conf.
First:
Code:# Use text mode only. When enabled, this option forces rEFInd into text mode. # Passing this option a "0" value causes graphics mode to be used. Pasing # it no value or any non-0 value causes text mode to be used. # Default is to use graphics mode. # textonly 1
But then:
Code:# Set the EFI text mode to be used for textual displays. This option # takes a single digit that refers to a mode number. Mode 0 is normally # 80x25, 1 is sometimes 80x50, and higher numbers are system-specific # modes. Mode 1024 is a special code that tells rEFInd to not set the # text mode; it uses whatever was in use when the program was launched. # If you specify an invalid mode, rEFInd pauses during boot to inform # you of valid modes. # #textmode 0
- Top
- Bottom
Comment
-
because pure text mode boot is The One True Way. All others are absolute sacrilege.
- Top
- Bottom
Comment
Comment