You are not logged in.
Hi guys!
Sorry if this is a total noobie question, I am basically that, though, lol.
I made a bootable USB, booted up the live version to test, and I can't see anything around the edge of my screen. I can't even see the back or close buttons on the browser, or anything in the trays. If it's close to the edge, it's not visible.
I found the resolution settings, and not one of them works. I believe I need a higher resolution than what's available. Is there a fix for this in the terminal? Or will this be solved during the actual installation?
Thanks
Last edited by LinuxGirl (2018-11-18 06:34:32)
Offline
Or will this be solved during the actual installation?
That's impossible to tell, as we don't know what hardware you have.
Some hardware is there no linux driver for, only windows drivers.
Some hardware, will the manufacturer provide proprietary linux drivers.
You can search the net or start here: https://wiki.debian.org/Hardware
Other good links are
https://askubuntu.com/questions/389176/ … e-hardware
https://www.linux-drivers.org
You can also test boot the SystemRescueCd, it is good in autodetecting hardware.
Last edited by rbh (2018-11-15 22:48:43)
// Regards rbh
Offline
Thank you for replying!
I have an MDG desktop computer using AMD A8-6500 APU with Radeon HD 8750D graphics. 64-bit x64 based. I'm pretty new to all this, so please let me know if you need anything else
I used the bl-Helium_amd64+build2.iso and it has been installed now. I've found a way to adjust the margins of screens for now in OpenBox, but it's still cutting off the edges, making full screen videos a little bit cut off. I can't see most of the Tnt2 either, no matter where I put it.
I need a resolution of 1776X1000, but I can't seem to find a manual method of changing that. Any ideas?
I really love this OS, and it's perfect other than that. any help is very much appreciated
Offline
Also, the hardware is no longer supported at all by the manufacturer
Offline
1920 x 1080 then
You're not using a television set as a monitor are you?
Offline
Yes I am...
And I've tried the 1920 res... It basically partitions the screen so I have a small desktop and blank areas surrounding it
Offline
ah! well ok . . . You need to adjust the overscan settings on your television set. Set everything you've adjusted on your linux install back to defaults. Just to reiterate. . . the settings you need to adjust are on your TV.
Offline
I just went through every display setting on this thing...everything else makes it worse. It doesn't have an abundance of options, lol
Offline
You may be able to adjust the screen resolution or "underscan" using xrandr. Here is one thread that may point you in the right direction: Overscanning picture problem....
Menu -> Help&Resources -> xrandr
Be Excellent to Each Other...
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt «» BunsenLabs on DeviantArt
Online
Thanks damo,
I followed that link, and tried some suggestions.
Turning off underscanning didn't work.
But using
"xrandr --output HDMI-1 --fb 1776x1000 --transform 1,0,-20,0,1,-19,0,0,1" seemed to work somewhat ok. I played with the commands in that thread... It seemed to bring the screen down so I could see Tint2 but now the bottom is cut. After I made a change and the screen went all wonky I stopped messing with the numbers, lol. But basically that command just moved my screen around after a bit of an adjustment to the rez.
It's getting better and better though! I'll try higher resolutions tonight and see what happens
Offline
It works perfectly now! Yay!
I used this in the terminal
xrandr --output HDMI-0 --set underscan on
xrandr --output HDMI-0 --set "underscan hborder" 35 --set "underscan vborder" 20
But now I have a new problem...it won't save on reboot. How do I run that script on startup?
Offline
Put the commands in a script in your ~/bin, make it executable, and add it to your autostart.
#!/bin/bash
# my-clever-screen-setup.sh
xrandr --output HDMI-0 --set underscan on
xrandr --output HDMI-0 --set "underscan hborder" 35 --set "underscan vborder" 20
exit
In ~/.config/openbox/autostart, add the command - the SETTINGS section is probably a good place.
...
...
my-clever-screen-setup.sh
### SETTINGS END
If you edit the title of your first post and add "[SOLVED]" it may help others looking for answers.
FURTHER reading: How To Ask Questions The Smart Way
Be Excellent to Each Other...
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt «» BunsenLabs on DeviantArt
Online
Thank you so much! Successfully saved on reboot.
Offline
That's great news. Well done
Apologies for steering you wrong. My suggestion has worked for me in the past.
Offline
@beaker no you were great, I actually never heard the term "overscan" until you mentioned it, so it got me looking more into it... Which definitely helped. Hard to look up fixing a problem when you don't know what the problem is called lol. Thanks!
Offline