ভার্চুয়ালবক্সে অতিথি হিসাবে ইনস্টল করা লুবুন্টুতে 1366x768 স্ক্রিন রেজোলিউশন পাচ্ছেন না


2

আমার ল্যাপটপ 1366x768 রেজোলিউশন সমর্থন করে তবে, আমার লুবুন্টু -11.10-বিকল্প-i386 ভার্চুয়াল মেশিনে অতিথি সংযোজনগুলি ইনস্টল করার পরেও আমার কাছে কেবল রেজোলিউশন হিসাবে উপলব্ধ (থেকে xrandr):

   1024x768       60.0 +   60.0  
   1600x1200      60.0  
   1440x1050      60.0  
   1280x960       60.0  
   800x600        60.0* 
   640x480        60.0  

উত্তর:


2

এখানে আমার পোস্ট দেখুন:

https://stackoverflow.com/questions/10725867/forcing-monitor-resolution-in-virtualbox-vm-on-linux-guest/10726041#10726041

#!/bin/bash

# Script to automatically resize virtual monitors in VirtualBox

# Start the server
sudo killall VBoxService
sleep 1
sudo VBoxService
sleep 1

# Start the client service
VBoxClient-all

# Get the modeline information we want for the following resolutions:
# 1680x1050@60.00Hz (Laptop display)
RES0="1680 1050 60"
# 1280x1024@60Hz (External monitor)
RES1="1280 1024 60"

# Setup mappings for physical to virtual monitors
MAP0="VBOX0"
MAP1="VBOX1"

# Generate settings
SETTINGS0=$( gtf $RES0 | grep Modeline | cut -d ' ' -f4-16 )
SETTINGS1=$( gtf $RES1 | grep Modeline | cut -d ' ' -f4-16 )

# Get name of modelines from settings
NAME0=$( echo $SETTINGS0 | cut -d ' ' -f1 )
NAME1=$( echo $SETTINGS1 | cut -d ' ' -f1 )

# Echo settings
echo "Modeline for Display 0 ($NAME0): $SETTINGS0"
echo "Modeline for Display 1 ($NAME1): $SETTINGS1"

# Create the new modelines via xrandr
xrandr --newmode $SETTINGS0
xrandr --newmode $SETTINGS1

# Add the newly created modelines to devices
xrandr --addmode $MAP0 $NAME0
xrandr --addmode $MAP1 $NAME1

# Finally, enable the new modes
xrandr --output $MAP0 --mode $NAME0
xrandr --output $MAP1 --mode $NAME1

# Extra: Attempt to run "auto" mode on the external monitor
# This is out last-ditch effort (which worked in this case) to get it running at
# 1600x1200 instead of 1280x1024 :)
xrandr --output $MAP1 --auto --above $MAP0

তারপরে আপনি এটি চালাতে এবং তারপরে ডেস্কটপ ম্যানেজারটিকে পুনরায় চালু করতে আপনার আরসি ফাইলের (কেডেরসি, জিটিকিআরসিআর -২.০, এফভিডুএম 2 সিআর) রেখে দিতে পারেন। সবকিছু দুর্দান্ত দেখতে হবে!

দয়া করে মনে রাখবেন যে এখানে কেবলমাত্র অতিরিক্ত বিট --above $MAP0কোডটিই আর্গুমেন্ট, যার অর্থ এমএপি 0 এর জন্য মনিটরটি শারীরিকভাবে এমএপি 0 এর উপরে অবস্থিত।

আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.