jotalesss
(usa Debian)
Enviado em 26/09/2017 - 01:59h
Pronto consegui, e não é que era facil de resolver, estavamos todos errados.
Acontece quando instala o sistema ele reconhece 1024x768 como a resolução maior,ai voce vai no configurações do gnome e clica em telas e so tem 1024x768, mas depois que eu instalei o drive da nvidia eu não mechi la
Burro não?
eu usei depois estes comandos no terminal;
$xrandr --newmode "1152x864_60.00" 81.75 1152 1216 1336 1520 864 867 871 897 -hsync +vsync
$xrandr --addmode VGA-0 1152x864_60.00
$xrandr --output VGA-0 --mode 1152x864_60.00
E nada de dar certo!
Ai eu escrevi eles no .profile do home, e advinha, nada de dar certo
Pois bem, eu cheguei a mexer no /boot/grub.cfg e mudei duas linhas e nada de dar certo, mexi no/etc/init-d/ e enfiei la um script com o código do xrandr a ser executado:
#!/bin/sh
xrandr --newmode "1152x864_60.00" 81.75 1152 1216 1336 1520 864 867 871 897 -hsync +vsync;
xrandr --addmode VGA-0 1152x864_60.00;
xrandr --output VGA-0 --mode 1152x864_60.00;
exit
E deigitei o terminal como root os seguintes comandos:
#chmod 755 xrandr_startup.sh
#update-rc.d xrandr_startup.sh defaults
E nada de dar certo, então eu salvei o script, uma cópia em outras pasta, no meu caso nos decumentos, e mandei o script iniciar pelo profile, mas vi que os codigos no profile são diferentes, então eu coiei eles inserindo o caminho do script novo no final antes o scrit estava assim:
# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.
# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
E eu aterei imitando o codigo de cima colocando o final assim
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/Documentos/xrandr_startup.sh" ]; then
. "$HOME/Documentos/xrandr_startup.sh"
fi
fi
Deu mais
[*****] ainda, ele não logava mais, tentei com um live cd no kurumin para corrigir mas ele não monta o hd, então na tela do gdm3, eu tive que aperat ctrl+alt+F4 para entrar em modo de linha de comando usando a conta de root, pois eu acho que não ia dar certo pela conta de usuario, já que o prifile estava na conta de usuario jota, ai eu abris o script pelo nano e apaguei a ultima linha deixei apenas o comando que chama o script sh no final ele ficou assim:
# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.
# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
# ok vou tentar aqui mais uma vez aqui!
sh /home/jota/Documentos/xrandr_startup.sh
porem quando eu sai do nano e dei startx, enteri em uma outra interface grafica e ela esta a 1152x864, então eu reiniciei a maquina e fui até o gdm3, marquei gnome e entrei.
Advinha só, no gnome estava a 1024x768, ou seja o problema era o gnome -shell 3 e sua configuração.
então eu conclui que mesmo editando a placa de video e o xrandr, o gnome tem sua configuração de boot própria, fui até configurações para ver se tinha algo que eu não tinha visto, e moral da história:
EU NÃO SABIA QUE AO INSTALAR O DRIVE DA PLACA DE VIDEO APARECE NO TELAS DA CONFIGURAÇÃO NOVAS RESOLUÇÕES, E ERA LÁ MESMO QUE ESTAVA MARCADO 1024X768, MUDEI ALI PARA 1152X864, REINICIEI E DEU CERTO1
LINUS TORVALDIS, PORQUE TU FIZESTES ISTO COMIGO, EU TE ODEIO, MAS TE PERDOO!
Gente é sério, eu sofri uns bons dias aqui para resolver isto, mesmo galera, valeu obrigado pela força, agora eu não esquecerei mais vocês, valeu, esta resolvido!