akcent
Goto Top

Keine Bildschirminformationen verfügbar

Hallo,

hat zufällig jemand eine Idee wie man unter Kali 2018.3 die Auflösung einstellen kann?
In den Einstellungen wird nur angezeigt "could not get screen information"

Danke und Gruß, Herry

Content-Key: 390749

Url: https://administrator.de/contentid/390749

Printed on: April 25, 2024 at 06:04 o'clock

Member: ashnod
ashnod Oct 26, 2018 at 06:35:46 (UTC)
Goto Top
Moin ...

Fest installiert oder Live-System?

Erster Weg wäre ...

apt-get update
apt-get upgrade

evtl. reicht das schon ....

VG
Member: Akcent
Akcent Oct 26, 2018 at 06:58:35 (UTC)
Goto Top
Fest installiert oder Live-System?
fest installiert

Erster Weg wäre ...
apt-get update
apt-get upgrade

ja das war auch mein erster Weg. Aber beim 2018.3 gibt es scheinbar noch keine Updates
System mit dem aktuelle ISO installiert und wenn ich die Befehle eingebe, kommt 0 verfügbar
Member: ashnod
ashnod Oct 26, 2018 updated at 07:13:57 (UTC)
Goto Top
Oki versuche mal den als bootparameter

vga= 792

mitzugeben .. alternativ 795, 799, 789 so etwa in der Reihenfolge .. abhängig vom Monitor.

http://pierre.baudu.in/other/grub.vga.modes.html

VG
Member: houschder
houschder Oct 26, 2018 at 07:14:30 (UTC)
Goto Top
Member: Kraemer
Kraemer Oct 26, 2018 updated at 08:21:52 (UTC)
Goto Top
Moin,

welche GraKa? Nvidia? Wenn ja, Nvidia-Treiber installieren.

Gruß
Member: Akcent
Akcent Oct 26, 2018 at 13:02:04 (UTC)
Goto Top
welche GraKa? Nvidia? Wenn ja, Nvidia-Treiber installieren.
Hab ich auch schon gelesen.

Ist eine INTEL Grafikkarte
Member: Pjordorf
Pjordorf Oct 26, 2018 at 13:40:08 (UTC)
Goto Top
Hallo,

Zitat von @Akcent:
Ist eine INTEL Grafikkarte
Dann solltest du doch mal dein System hier nennen und notfalls welche erweitrungskarten du noch eingestöpselt hast, also Mainboard, Grafikchips, RAID Kontroller, LAN Karten bzw. Chips, Netzteil usw.

Hat Intel jemals schon Grafikkarten gebaut oder nur die Chips dafür? Die erste Grafikkarte soll doch erst in 2020 kommen, oder nicht?

Gruß,
Peter
Member: Akcent
Akcent Oct 26, 2018 at 14:03:10 (UTC)
Goto Top
Zitat von @Akcent:
Ist eine INTEL Grafikkarte
Dann solltest du doch mal dein System hier nennen und notfalls welche erweitrungskarten du noch eingestöpselt hast, also Mainboard, Grafikchips, RAID Kontroller, LAN Karten bzw. Chips, Netzteil usw.
das ist ein einfaches TERRA PAD 1062 face-sad
Member: Makubist
Makubist Nov 18, 2018 at 16:15:55 (UTC)
Goto Top
Zitat von @Akcent:

Fest installiert oder Live-System?
fest installiert

Hast Du dabei Kali als Haupt-OS auf dem Tablet oder meinst Du fest installiert als VM auf dem Windows OS?

Bei VM machst Du das über die jeweiligen Erweiterungen
- bei VirtualBox installierst Du Guest Additions
- bei VMWare installierst Du VMWare Tools

Bei Kali als Haupt-OS benutzt Du den xrandr.sh script:
#!/bin/bash
# xrandr.sh 
#If no argument is specified, ask for it and exit
if [[ -z "$@" ]];  
then
echo "An argument is needed to run this script";  
exit
else
arg="$@"  
#Basic check to make sure argument number is valid. If not, display error and exit
if [[ $(($(echo $arg | grep -o "\s" | wc --chars) / 2 )) -ne 2 ]];  
then
echo "Invalid Parameters. You need to specify parameters in the format "width height refreshRate""  
echo "For example setResolution "2560 1440 60""  
exit
fi

#Save stuff in variables and then use xrandr with those variables
modename=$(echo $arg | sed 's/\s/_/g')  
display=$(xrandr | grep -Po '.+(?=\sconnected)')  
if [[ "$(xrandr|grep $modename)" = "" ]];  
then
xrandr --newmode $modename $(gtf $(echo $arg) | grep -oP '(?<="\s\s).+') &&  
xrandr --addmode $display $modename 
fi
xrandr --output $display --mode $modename

#If no error occurred, display success message
if [[ $? -eq 0 ]];
then
echo "Display changed successfully to $arg"  
fi
fi

<<COMMENT
#Manual steps with explanation ahead by @debloper
# First we need to get the modeline string for xrandr
# Luckily, the tool "gtf" will help you calculate it. 
# All you have to do is to pass the resolution & the-
# refresh-rate as the command parameters:
gtf 1920 1080 60

# In this case, the horizontal resolution is 1920px the
# vertical resolution is 1080px & refresh-rate is 60Hz.
# IMPORTANT: BE SURE THE MONITOR SUPPORTS THE RESOLUTION

# Typically, it outputs a line starting with "Modeline" 
# e.g. "1920x1080_60.00" 172.80 1920 2040 2248 2576 1080 1081 1084 1118 -HSync +Vsync 
# Copy this entire string (except for the starting "Modeline") 

# Now, use "xrandr" to make the system recognize a new 
# display mode. Pass the copied string as the parameter
# to the --newmode option:
xrandr --newmode "1920x1080_60.00" 172.80 1920 2040 2248 2576 1080 1081 1084 1118 -HSync +Vsync  

# Well, the string within the quotes is the nick/alias
# of the display mode - you can as well pass something
# as "MyAwesomeHDResolution". But, careful! :-| 

# Then all you have to do is to add the new mode to the
# display you want to apply, like this:
xrandr --addmode VGA1 "1920x1080_60.00"  

# VGA1 is the display name, it might differ for you.
# Run "xrandr" without any parameters to be sure. 
# The last parameter is the mode-alias/name which
# you've set in the previous command (--newmode) 

# It should add the new mode to the display & apply it.
# Usually unlikely, but if it doesn't apply automatically 
# then force it with this command:
xrandr --output VGA1 --mode "1920x1080_60.00"  

# That's it... Enjoy the new awesome high-res display! 
COMMENT

Github xrandr.sh script