Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
|
09-14-2007, 02:22 AM
|
#16
|
Member
Registered: Sep 2007
Location: Bedfordshire, UK
Distribution: Opensuse 10.2
Posts: 50
Original Poster
Rep:
|
Making good progress, but still got a couple of problems. My screen resolution is now set at 1280 x 1024, but my display is still oversize. What is the considered optimum (if any) for these settings?
Thanks.
0rinoco
|
|
|
09-14-2007, 02:27 AM
|
#17
|
Member
Registered: Oct 2006
Distribution: Kubuntu 9.04, Debian Etch
Posts: 178
Rep:
|
Depends on the specs of your monitor. You should find somewhere (even in the monitor box) the optimum screen resolution for it
|
|
|
09-14-2007, 03:05 AM
|
#18
|
Member
Registered: Sep 2007
Location: Bedfordshire, UK
Distribution: Opensuse 10.2
Posts: 50
Original Poster
Rep:
|
Quote:
Originally Posted by Matz
Depends on the specs of your monitor. You should find somewhere (even in the monitor box) the optimum screen resolution for it
|
Thanks, Matz. I have an Acer AL1512 TFT. I have just looked at the on-screen menu settings and it comes up with 800 x 600. Is that what I should set my resolution to?
Thanks
0rinoco
|
|
|
09-14-2007, 09:24 AM
|
#19
|
Member
Registered: Oct 2006
Distribution: Kubuntu 9.04, Debian Etch
Posts: 178
Rep:
|
I found that 1024x768 should work right with this monitor.
|
|
|
09-14-2007, 03:07 PM
|
#20
|
Member
Registered: Sep 2007
Location: Bedfordshire, UK
Distribution: Opensuse 10.2
Posts: 50
Original Poster
Rep:
|
Thanks for your suggestion, Matz. Tried those settings, but still no joy. I can live with it, but it would be nice to have a normal size screen. I'll hang on and hope someone can come up with a solution.
One thing I have noticed is that in Sax x2 Card and Monitor properties, the name of the designated monitor is Vesa. Is this significant?
0rinoco
|
|
|
09-14-2007, 07:16 PM
|
#21
|
LQ Guru
Registered: Nov 2006
Location: Belgium
Distribution: Ubuntu 11.04, Debian testing
Posts: 5,019
Rep:
|
Well, it could be. VESA implies that Sax isn't familiar with your type of monitor so it is using a generic denominator. I have an ACER 1951 and I get the same (although I haven't got any issues with screen resolution - as long as I install the proper videocard driver). This whole issue is quite typical of the previous generation of Linux distros.
By the way, can you post your xorg.conf? There's a chance that Sax has misconstrued the refresh rates, which can have an impact on screen resolution. To make a copy of xorg.conf to your home directory, just run this command from the terminal:
su -
[root password]
cat /etc/X11/xorg.conf > /home/[your username]/xorgconf
Last edited by jay73; 09-14-2007 at 07:19 PM.
|
|
|
09-15-2007, 10:21 AM
|
#22
|
Member
Registered: Sep 2007
Location: Bedfordshire, UK
Distribution: Opensuse 10.2
Posts: 50
Original Poster
Rep:
|
Quote:
Originally Posted by jay73
By the way, can you post your xorg.conf? There's a chance that Sax has misconstrued the refresh rates, which can have an impact on screen resolution. To make a copy of xorg.conf to your home directory, just run this command from the terminal:
su -
[root password]
cat /etc/X11/xorg.conf > /home/[your username]/xorgconf
|
Thanks, Jay, but I'm an absolute tyro at Linux. This may sound a bit stupid, but could you be a little more detailed? For instance, 'Command from the terminal'. Where do I find the terminal?
Regards.
0rinoco.
|
|
|
09-15-2007, 01:21 PM
|
#23
|
LQ Guru
Registered: Nov 2006
Location: Belgium
Distribution: Ubuntu 11.04, Debian testing
Posts: 5,019
Rep:
|
It is accessible from the menu. Just look for "Terminal". I'm sorry, I can't be more precise because I'm not very familiar with KDE. Alternatively, you can use a virtual terminal (the one accessible from the menu is called a "terminal emulator"): press Ctrl + Alt + F1, enter
login: root
password: root password
Then execute the commands from my previous my post , log out (type exit + enter ) and return to KDE by pressing Alt + F7; the xorg.conf file should be in your home directory.
|
|
|
09-16-2007, 02:47 PM
|
#24
|
Member
Registered: Sep 2007
Location: Bedfordshire, UK
Distribution: Opensuse 10.2
Posts: 50
Original Poster
Rep:
|
Hi, Jay. This is what I am putting in, but get the 'no such command' message,
linux-r0sa:~ # su-[password]cat/etc/X11/xorg.conf>/home[username]/xorgconf
Am I missing something?
Thanks.
0rinoco
|
|
|
09-16-2007, 08:05 PM
|
#25
|
LQ Guru
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,397
|
Theres a space char after 'cat' . cat is the cmd, the rest is the filename to cat (dump to screen). Incidentally, you need to fill in your username where he wrote [username] without brackets ie sans [] eg:
Actually, he means
1. login as root:
su -
2. give root passwd
insertrootpasswdhere
3. copy file
cp /etc/X11/xorg.conf > /home/orinoco/xorgconf
change orinoco to your username on your system
|
|
|
09-17-2007, 07:50 AM
|
#26
|
Member
Registered: Sep 2007
Location: Bedfordshire, UK
Distribution: Opensuse 10.2
Posts: 50
Original Poster
Rep:
|
Thanks, Chris. I didn't realise that there was a space and no brackets required. I'll try again. Also, just wondering if my screen size could be affected by the font used on my web-page, Times New Roman? Where can I find a list of the fonts which are available in Opensuse?
Last edited by 0rinoco; 09-17-2007 at 08:12 AM.
|
|
|
09-17-2007, 01:14 PM
|
#27
|
LQ Guru
Registered: Nov 2006
Location: Belgium
Distribution: Ubuntu 11.04, Debian testing
Posts: 5,019
Rep:
|
Screen resolution shouldn't have anything to do with fonts. I suspect it is simply a matter of incorrect monitor refresh rates (which is why I asked about your xorg.conf - that's where those rates are specified).
Font sets for Suse (and Linux in general?). There must be a few hundred but most aren't installed by default. Times New Roman is included in the msttcorefonts package; you'll need to set up third-party repositories first, though:
http://en.opensuse.org/YaST_package_repository
|
|
|
09-18-2007, 08:50 AM
|
#28
|
Member
Registered: Sep 2007
Location: Bedfordshire, UK
Distribution: Opensuse 10.2
Posts: 50
Original Poster
Rep:
|
Thought I had posted this, but obviously not. I didn't realise that I could reduce the text size on my screen. Doing so has completely solved the problem. I feel a bit of an idiot after all the time you guys have spent trying to help me. Thanks anyway.
0rinoco
|
|
|
05-19-2012, 01:36 AM
|
#29
|
LQ Newbie
Registered: May 2012
Posts: 2
Rep:
|
It's very helpful for me..........
I use of the Linux operating system.
James4too
|
|
|
05-19-2012, 01:44 AM
|
#30
|
LQ Addict
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464
Rep:
|
Quote:
Originally Posted by James4too
It's very helpful for me..........
I use of the Linux operating system.
James4too
|
Please avoid responding to old threads if you're not adding anything to them.
|
|
|
All times are GMT -5. The time now is 04:14 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|