如何更改 Linux/Ubuntu 12.10 中文本控制台的输出监视器?

如何更改 Linux/Ubuntu 12.10 中文本控制台的输出监视器?

我使用 nVidia 显卡和多台显示器,默认用于文本模式的显示器处于纵向模式,当我切换到控制台时,我不得不将头转向一侧才能使用它。如何将默认文本模式显示器切换到其他连接的显示器之一?切换显卡上的电缆不是一个选择。

答案1

con2fb您可以使用(将特定 VT 移动到另一个头源代码,同样位于第一个链接中,也位于下面,以防这些链接消失)。然后,您可以使用con2fb /dev/fb1 /dev/tty2它将 TTY2 移动到第二个帧缓冲区。

这样做的可能缺点是旧显示器(在本例中是您的纵向显示器)不再接受输入。话虽如此,我不确定如何在不使用Alt+F1Ctrl++Alt之类的东西的情况下在终端之间转移焦点F1,所以这是一个很小的缺点。

也可以看看:Linux问题左心室收缩末期,尽管年代久远,但也试图回答这个问题(如果第一个链接消失,也可以在这里找到)。LWN 帖子威胁说,如果你在执行此操作后尝试运行 X,将会出现可怕的警告,但它还讨论了多个帧缓冲区补丁尚未进入内核,因此它有些过时了。

con2fb.c

/* This is a userspace utility which allows you to redirect the console to
another framebuffer device.  You can specify devices & consoles by both numbers
and devices.  Framebuffers numbers are zero-based (/dev/fb0, ...), while
consoles are one-based (/dev/tty1, ...).

Original source: https://www.dafyddcrosby.com/dual-framebuffers/   
Slightly updated from the original by Ben Stern to fix some minor warnings.
License: GPL v2.  Compile with: gcc -O2 -Wall -Werror -o con2fb con2fb.c */

#include <errno.h>
#include <linux/fb.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

int main(int argc, char* argv[]) {
    struct fb_con2fbmap c2m;
    char* fbPath;
    u_int32_t con, fb;
    char* e;
    char* progname;
    struct stat sbf;
    int rv = 0;
    int f = -1;

    progname = strrchr(argv[0], '/');

    if (progname != NULL) {
        progname++;
    } else {
        progname = argv[0];
    }
    if (argc < 3) {
        fprintf(stderr, "usage: %s fbdev console\n", progname);
        return ENOENT;
    }

    do {
        fb = strtoul(argv[1], &e, 10);
        if (*e) {
            if (stat(argv[1], &sbf) < 0) {      
                rv = errno;
                fprintf(stderr, "%s: Can't stat %s: %s\n",
                    progname, argv[1], strerror(errno));
                break;
            }

            if (!S_ISCHR(sbf.st_mode)) {
                fprintf(stderr, "%s: %s isn't a character device!\n",
                    progname, argv[1]);
                rv = EINVAL;
                break;
            }

            fb = sbf.st_rdev & 0xFF;
            if (fb >= 32) {
                fb >>= 5;
            }
            fbPath = argv[1];
        } else  {
            fbPath = "/dev/fb0";
        }

        con = strtoul(argv[2], &e, 10);
        if (*e) {
            if (stat(argv[2], &sbf) < 0) {
                rv = errno;
                fprintf(stderr, "%s: Can't stat %s: %s\n",
                    progname, argv[2], strerror(errno));
                break;
            }
            if (!S_ISCHR(sbf.st_mode)) {
                fprintf(stderr, "%s: %s isn't a character device!\n",
                    progname, argv[2]);
                rv = EINVAL;
                break;
            }
            con = sbf.st_rdev & 0xFF;
        }

        c2m.console = con;
        c2m.framebuffer = fb;
        f = open(fbPath, O_RDWR);
        if (f < 0) {
            rv = errno;
            fprintf(stderr, "%s: Can't open %s: %s\n",
                progname, fbPath, strerror(errno));
            break;
        }

        if (ioctl(f, FBIOPUT_CON2FBMAP, &c2m)) {
            rv = errno;
            fprintf(stderr, "%s: Can't set console mapping: %s\n",
                progname, strerror(errno));
            break;
        }
    } while (0);

    if (f >= 0) {
        close(f);
    }
    return rv;
}

相关内容