请教intel显卡驱动下载节液晶电视问题

查看: 3067|回复: 16
请教intel显卡节液晶电视问题
华擎H61MITX 接sony电视机 不装驱动可以正常设置到1080p 装上驱动后图标就跑到屏幕外面去了 显卡控制里设置成全屏后但是重启后不能保存 图标还是超越屏幕求解
没有双显示器 电视机是46EX520&&intel控制面板电视机选项内设置量范围:默认或者全范围就能点对点 重启后就是不能点对点 又还原成量化范围:有限的 换过华擎官网驱动 驱动之家驱动 intel官网驱动 都不行 郁闷死了
后来设置成全像素就好了
errantry 发表于
显卡设置里改的?
电视机里视频设置请教关于 Intel915GM显卡都驱动问题(已经搞定)
我激战了一天终于把我的本本的宽屏搞定了,915的。
ML能正确的驱动915的显卡,只是默认的分辨率是, 如果要支持宽屏的话需要一个915的补丁。在Intel下的那个dri我没有搞定,用的是别外一个,附在后面。
1. 将这个补丁编译后,运行(用root运行)
& &&&# 915resolution -l
Intel 915GM VBIOS Hack : version 0.1
Chipset: 915GM
Mode 30 : 640x480, 8 bits/pixel
Mode 32 : 800x600, 8 bits/pixel
bits/pixel
Mode 38 : , 8 bits/pixel
Mode 3a : , 8 bits/pixel
bits/pixel
Mode 41 : 640x480, 16 bits/pixel
Mode 43 : 800x600, 16 bits/pixel
bits/pixel
Mode 49 : , 16 bits/pixel
Mode 4b : , 16 bits/pixel
bits/pixel
Mode 50 : 640x480, 32 bits/pixel
Mode 52 : 800x600, 32 bits/pixel
bits/pixel
Mode 58 : , 32 bits/pixel
Mode 5a : , 32 bits/pixel
Mode 5c :&&, 32 bits/pixel
会显示上面的目前能用的分辩率,找一个我们用不上的,比如5c 来改一下:
& &&&# 915resolution 5c
这时在用-l看,就成了:
& & Mode 5c :
bits/pixel
把刚才运行的命令加了/etc/rc.d/rc.local中,就不用每次都手工运行了。
2.只做上面的不行,还要配xorg.conf
& && & 将Section &Screen& 节中的各个 Modes中加上& & &&:
& && & SubSection &Display&
& & & & & & & & Viewport& &0 0
& & & & & & & & Depth& &&&24
& & & & & & & & Modes& & &&
& & & & EndSubSection
3.如果这时启动的话还是在xorg的log中会提示找不到mode name:
& & 要xorg.conf中加下Modes小节,默认的好像没有,
& & 先运行# gtf & &&&//分辩率和刷新率,LCD都用60就行了
& &会得到如下的行:
@ 60.00 Hz (GTF) hsync: 49.68 kHz; pclk: 83.46 MHz
&&Modeline &.00&&&83.46&&80 1 804 828&&-HSync +Vsync
把它加到xorg.conf的Modes中 就行了,如下:
Section &Modes&
& & & & Identifier& &&Modes[0]&
@ 60.00 Hz (GTF) hsync: 49.68 kHz; pclk: 83.46 MHz
& & & & Modeline &.00&&&83.46&&80 1 804 828&&-HSync +Vsync
EndSection
注意: 在Modeline 后的是&.00& 而在SubSection &Display& 的Modes 是没有后面的_60.00的,这开始就在这搞了半天
====================
不知道怎么传文件,以下是源码,用gcc 915resolution.c -o 915resolution 编译就行了
/* 915 resolution by steve tomljenovic
* This was tested only on Sony VGN-FS550.&&Use at your own risk
* This code is based on the techniques used in :
*& &- 855patch.&&Many thanks to Christian Zietz (czietz gmx net)
*& &&&for demonstrating how to shadow the VBIOS into system RAM
*& &&&and then modify it.
*& &- 1280patch by Andrew Tipton (andrewtipton null li).
*& &- 855resolution by Alain Poirier
* This source code is into the public domain.
#include &stdio.h&
#include &stdlib.h&
#include &unistd.h&
#define __USE_GNU
#include &string.h&
#include &sys/mman.h&
#include &fcntl.h&
#include &sys/io.h&
#include &unistd.h&
#include &assert.h&
#define NEW(a) ((a *)(calloc(1, sizeof(a))))
#define FREE(a) (free(a))
#define VBIOS_START& && && &0xc0000
#define VBIOS_SIZE& && && & 0x10000
#define VBIOS_FILE& & &/dev/mem&
#define VBIOS_OFFSET_IN_FILE VBIOS_START
#define CFG_SIGNATURE& && & &BIOS_DATA_BLOCK &
#define FALSE 0
#define TRUE 1
typedef unsigned char *
typedef struct {
& & unsigned char bits_per_
} __attribute__((packed)) vbios_
typedef struct {
& & unsigned char unknow1[2];
& & unsigned char x1;
& & unsigned char unknow2;
& & unsigned char x2;
& & unsigned char y1;
& & unsigned char unknow3;
& & unsigned char y2;
} __attribute__((packed)) vbios_
typedef struct {
& & int bios_
& & address bios_
& & address cnfg_
& & vbios_mode * mode_
& & int mode_table_
void initialize_system();
char * get_chipset(void);
vbios_map * open_vbios();
void close_vbios(vbios_map * map);
void unlock_vbios(vbios_map * map);
void relock_vbios(vbios_map * map);
void initialize_system(void) {
& & if (iopl(3) & 0) {
& && &&&perror(&Unable to obtain the proper IO permissions&);
& && &&&exit(2);
static unsigned int get_chipset_id(void) {
& & outl(0xxcf;
& & return inl(0xcfc);
static char chipset_buffer[256];
char * get_chipset(void) {
& & char *
& & id = get_chipset_id();
& & switch (id) {
& & case 0x:
& && &&&name = &845G&;
& & case 0x:
& && &&&name = &855GM&;
& & case 0x:
& && &&&name = &865G&;
& & case 0x:
& && &&&name = &915GM&;
& & default:
& && &&&sprintf(chipset_buffer, &Unknown (0x%08x)&, id);
& && &&&name = chipset_
vbios_map * open_vbios() {
& & vbios_map * map = NEW(vbios_map);
& &&&*&&Map the video bios to memory
& & map-&bios_fd = open(VBIOS_FILE, O_RDWR);
& & if(map-&bios_fd & 0) {
& && &&&perror(&Unable to open the BIOS file&);
& && &&&exit(2);
& & map-&bios_ptr = mmap((void *)VBIOS_START, VBIOS_SIZE,
& && && && && && && && & PROT_READ | PROT_WRITE, MAP_SHARED | MAP_FIXED,
& && && && && && && && & map-&bios_fd, VBIOS_OFFSET_IN_FILE);
& & if (map-&bios_ptr == NULL) {
& && &&&fprintf(stderr, &Cannot mmap() the video BIOS\n&);
& && &&&close(map-&bios_fd);
& && &&&exit(2);
& &&&* figure out where the configuration information is
& & map-&cnfg_ptr = memmem(map-&bios_ptr, VBIOS_SIZE, CFG_SIGNATURE, strlen(CFG_SIGNATURE));
& & if (map-&cnfg_ptr == NULL) {
& && &&&fprintf(stderr, &Couldn't find the configuration area in the VBIOS!\n&);
& && &&&close_vbios(map);
& && &&&exit(2);
& &&&* Figure out where the mode table is and which type of bios we have
& && &&&address p = map-&bios_
& && &&&address limit = map-&bios_ptr + VBIOS_SIZE - (3 * sizeof(vbios_mode));
& && &&&while (p & limit && map-&mode_table == 0) {
& && && && &vbios_mode * mode_ptr = (vbios_mode *)
& && && && &
& && && && &if (((mode_ptr[0].mode & 0xf0) == 0x30) && ((mode_ptr[1].mode & 0xf0) == 0x30) &&
& && && && && & ((mode_ptr[2].mode & 0xf0) == 0x30) && ((mode_ptr[3].mode & 0xf0) == 0x30)) {
& && && && && & map-&mode_table = mode_
& && && && &}
& && && && &
& && && && &p++;
& && &&&if (map-&mode_table == 0) {
& && && && &fprintf(stderr, &Unable to locate mode table!\n&);
& && && && &close_vbios(map);
& && && && &exit(2);
& &&&* Determine size of mode table
& && &&&vbios_mode * mode_ptr = map-&mode_
& && &&&while (mode_ptr-&mode != 0xff) {
& && && && &map-&mode_table_size++;
& && && && &mode_ptr++;
void close_vbios(vbios_map * map) {
& & assert(!map-&unlocked);
& & if(map-&bios_ptr == NULL) {
& && &&&fprintf(stderr, &BIOS should be open already!\n&);
& && &&&exit(2);
& & munmap(map-&bios_ptr, VBIOS_SIZE);
& & close(map-&bios_fd);
& & FREE(map);
void unlock_vbios(vbios_map * map) {
& & assert(!map-&unlocked);
& & map-&unlocked = TRUE;
& & outl(0xxcf;
& && &&&unsigned int t = inl(0xcfc);
& && &&&printf(&unlock PAM: (0x%08x)\n&, t);
& & outb(0x33, 0xcfd);
& & outb(0x33, 0xcfe);
& && &&&unsigned int t = inl(0xcfc);
& && &&&printf(&unlock PAM: (0x%08x)\n&, t);
void relock_vbios(vbios_map * map) {
& & assert(map-&unlocked);
& & map-&unlocked = FALSE;
& & outl(0xxcf;
& && &&&unsigned int t = inl(0xcfc);
& && &&&printf(&relock PAM: (0x%08x)\n&, t);
& & outb(0x11, 0xcfd);
& & outb(0x11, 0xcfe);
& && &&&unsigned int t = inl(0xcfc);
& && &&&printf(&relock PAM: (0x%08x)\n&, t);
vbios_resolution * map_resolution(vbios_map * map, unsigned short res) {
& & vbios_resolution * ptr = ((vbios_resolution*)(map-&bios_ptr + res));
void list_modes(vbios_map *map) {
& & unsigned int i, x,
& & for (i=0; i & map-&mode_table_ i++) {
& && &&&vbios_resolution * res = map_resolution(map, map-&mode_table.resolution);
& && &&&x = ((((unsigned int) res-&x2) & 0xf0) && 4) | res-&x1;
& && &&&y = ((((unsigned int) res-&y2) & 0xf0) && 4) | res-&y1;
& && &&&if (x != 0 && y != 0) {
& && && && &printf(&Mode %02x : %dx%d, %d bits/pixel\n&, map-&mode_table.mode, x, y, map-&mode_table.bits_per_pixel);
void set_mode(vbios_map * map, unsigned int mode, unsigned int x, unsigned int y) {
& & for (i=0; i & map-&mode_table_ i++) {
& && &&&if (map-&mode_table.mode == mode) {
& && && && &vbios_resolution * res = map_resolution(map, map-&mode_table.resolution);
& && && && &res-&x2 = (res-&x2 & 0x0f) | ((x && 4) & 0xf0);
& && && && &res-&x1 = (x & 0xff);
& && && && &
& && && && &res-&y2 = (res-&y2 & 0x0f) | ((y && 4) & 0xf0);
& && && && &res-&y1 = (y & 0xff);
int parse_args(int argc, char *argv[], int *list, int *mode, int *x, int *y) {
& & int index = 1;
& & *list = *mode = *x = *y = 0;
& & if ((argc & index) && !strcmp(argv[index], &-l&)) {
& && &&&*list = 1;
& && &&&index++;
& && &&&if(argc&=index) {
& && && && &return 0;
& & if(argc-index != 3) {
& && &&&return -1;
& & *mode = (int) strtol(argv[index], NULL, 16);
& & *x = atoi(argv[index+1]);
& & *y = atoi(argv[index+2]);
& & return 0;
void usage(char *name) {
& & printf(&Usage: %s [-l] [mode X Y]\n&, name);
& & printf(&&&Set the resolution to XxY for mode\n&);
& & printf(&&&Options:\n&);
& & printf(&& & -l display the modes found into the vbios\n&);
int main (int argc, char *argv[]) {
& & vbios_map *
& & char *
& & int list, mode, x,
& & printf(&Intel 915GM VBIOS Hack : version 0.1\n\n&);
& & if (parse_args(argc, argv, &list, &mode, &x, &y) == -1) {
& && &&&usage(argv[0]);
& && &&&return 2;
& & initialize_system();
& & chipset = get_chipset();
& & printf(&Chipset: %s\n&, chipset);
& & map = open_vbios();
& & printf(&\n&);
& & if (list) {
& && &&&list_modes(map);
& & if (mode!=0 && x!=0 && y!=0) {
& && &&&unlock_vbios(map);
& && &&&set_mode(map, mode, x, y);
& && &&&relock_vbios(map);
& && &&&printf(&** Patch mode %02x to resolution %dx%d complete\n&, mode, x, y);
& && &&&if (list) {
& && && && &list_modes(map);
& & close_vbios(map);
& & return 0;
-----------------------------------------
未来是需要去创造的!
http://blog.csdn.net/aero_boy
UID161945&帖子66&精华&积分129&阅读权限20&来自China&在线时间0 小时&注册时间&最后登录&
好文章,收藏了。不过想顺便问问 intel的dri你说没有搞定 ,你都怎么搞了?我也遇到了同样的问题
终于搞定拉
简单总结一下
1.首先安装ML的时候,在最后配置显卡的时候一定要选,一个合适的。例如我的是DELL的本子,我就选 了DELL LCD pancle的 的。显卡也一定要选,例如我的是Intel915就选了。之后的选择分辨率把0*1024都选上.测试通过后选择完成安装
2进入X发现 分辨率还在.这是因为还上不到.这个时候用楼上大915那个补丁,写入rc。local文件。 同时改xorg。conf把 改成
3不用安装任何驱动和补丁,直接还是在xorg。conf里面加入DRI的相关选项就可以打开3D了
4 测试 glxinfo glxgears
name of display: :0.0
display: :0&&screen: 0
direct rendering: Yes
server glx vendor string: SGI
server glx version string: 1.2
server glx extensions:
6320 frames in 5.0 seconds =
6257 frames in 5.0 seconds =
6317 frames in 5.0 seconds =
6250 frames in 5.0 seconds =
6322 frames in 5.0 seconds =
6250 frames in 5.0 seconds =
基本效果还是比较明显的。
[quote:a=&chenlei9907&]终于搞定拉
3不用安装任何驱动和补丁,直接还是在xorg。conf里面加入DRI的相关选项就可以打开3D了
请问怎样在xorg.conf里进行修改加入dri相关选项以打开3D?能不能说的详细些啊?
[quote:d709d60af4=&sgb76&]请问怎样在xorg.conf里进行修改加入dri相关选项以打开3D?能不能说的详细些啊?[/quote]
下回切换到linux里面看看xorg.conf之后贴出来。先占个位置。
Section &Device&
& && &&&Identifier& && &&Videocard0&
& && &&&Driver& && && & &i810&
& && &&&VendorName& && &&Videocard vendor&
& && &&&BoardName& && & &Intel 915&
& && &&&VideoRam& && &&&131072
& & & & Option& & & & & & & & &DRI& &true&
& & & & Option & & & & & & & & &Composite& &Enable&
& & & & Option& & & & & & & & &RENDER& &Enable&
EndSection
Section &DRI&
& & & & Mode 0666
EndSection
[quote:fd408b9cbf=&chenlei9907&]是不是重新编译一下内核的话,把显卡声卡网卡等统统编进内核的话就没有这些麻烦了吧。
? &&&&&&[/quote]
严重错误!安装第三方驱动,则内核里相应部分通常都要是模块,否则驱动程序因不能替换老模块,会报错。
UID527&帖子4918&精华&积分11788&阅读权限245&来自China&在线时间241 小时&注册时间&最后登录&
这篇应该加个精华,
唯一一个介绍intel显卡3d驱动有效的好贴。
UID25202&帖子991&精华&积分2402&阅读权限70&来自China&在线时间83 小时&注册时间&最后登录&
按照楼主的方法试了,修改xorg。conf,还是打不开3d,我的显卡是852集成显卡
[quote:fed0d480ec=&sgb76&]按照楼主的方法试了,修改xorg。conf,还是打不开3d,我的显卡是852集成显卡[/quote]
是不是使用root用户。
楼主也只是root才有加速的。
UID25202&帖子991&精华&积分2402&阅读权限70&来自China&在线时间83 小时&注册时间&最后登录&
是呀,我一直使用root用户的,可还是不行啊,运行glxgears,只有570多FPS
贴出来看看
UID25202&帖子991&精华&积分2402&阅读权限70&来自China&在线时间83 小时&注册时间&最后登录&
运行glxinfo后,显示如下信息:请帮忙看看
name of display: :0.0
display: :0&&screen: 0
direct rendering: No
server glx vendor string: SGI
server glx version string: 1.2
server glx extensions:
& & GLX_ARB_multisample, GLX_EXT_visual_info, GLX_EXT_visual_rating,
& & GLX_EXT_import_context, GLX_OML_swap_method, GLX_SGI_make_current_read,
& & GLX_SGIS_multisample, GLX_SGIX_hyperpipe, GLX_SGIX_swap_barrier,
& & GLX_SGIX_fbconfig
client glx vendor string: SGI
client glx version string: 1.4
client glx extensions:
& & GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context,
& & GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_allocate_memory,
& & GLX_MESA_swap_control, GLX_MESA_swap_frame_usage, GLX_OML_swap_method,
& & GLX_OML_sync_control, GLX_SGI_make_current_read, GLX_SGI_swap_control,
& & GLX_SGI_video_sync, GLX_SGIS_multisample, GLX_SGIX_fbconfig,
& & GLX_SGIX_pbuffer, GLX_SGIX_visual_select_group
GLX extensions:
& & GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context,
& & GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_OML_swap_method,
& & GLX_SGI_make_current_read, GLX_SGIS_multisample, GLX_SGIX_fbconfig
OpenGL vendor string: Mesa project: www.mesa3d.org
OpenGL renderer string: Mesa GLX Indirect
OpenGL version string: 1.2 (1.5 Mesa 6.4.1)
OpenGL extensions:
& & GL_ARB_depth_texture, GL_ARB_imaging, GL_ARB_multitexture,
& & GL_ARB_point_parameters, GL_ARB_point_sprite, GL_ARB_shadow,
& & GL_ARB_shadow_ambient, GL_ARB_texture_border_clamp,
& & GL_ARB_texture_cube_map, GL_ARB_texture_env_add,
& & GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar,
& & GL_ARB_texture_env_dot3, GL_ARB_texture_mirrored_repeat,
& & GL_ARB_transpose_matrix, GL_ARB_window_pos, GL_EXT_abgr, GL_EXT_bgra,
& & GL_EXT_blend_color, GL_EXT_blend_func_separate, GL_EXT_blend_logic_op,
& & GL_EXT_blend_minmax, GL_EXT_blend_subtract, GL_EXT_clip_volume_hint,
& & GL_EXT_copy_texture, GL_EXT_draw_range_elements, GL_EXT_fog_coord,
& & GL_EXT_multi_draw_arrays, GL_EXT_packed_pixels, GL_EXT_point_parameters,
& & GL_EXT_polygon_offset, GL_EXT_rescale_normal, GL_EXT_secondary_color,
& & GL_EXT_separate_specular_color, GL_EXT_shadow_funcs,
& & GL_EXT_stencil_two_side, GL_EXT_stencil_wrap, GL_EXT_subtexture,
& & GL_EXT_texture, GL_EXT_texture3D, GL_EXT_texture_edge_clamp,
& & GL_EXT_texture_env_add, GL_EXT_texture_env_combine,
& & GL_EXT_texture_env_dot3, GL_EXT_texture_lod_bias, GL_EXT_texture_object,
& & GL_EXT_texture_rectangle, GL_EXT_vertex_array, GL_APPLE_packed_pixels,
& & GL_ATI_texture_env_combine3, GL_ATI_texture_mirror_once,
& & GL_ATIX_texture_env_combine3, GL_IBM_texture_mirrored_repeat,
& & GL_INGR_blend_func_separate, GL_MESA_pack_invert, GL_MESA_ycbcr_texture,
& & GL_NV_blend_square, GL_NV_point_sprite, GL_NV_texgen_reflection,
& & GL_NV_texture_rectangle, GL_SGIS_generate_mipmap,
& & GL_SGIS_texture_border_clamp, GL_SGIS_texture_edge_clamp,
& & GL_SGIS_texture_lod, GL_SGIX_depth_texture, GL_SGIX_shadow,
& & GL_SGIX_shadow_ambient, GL_SUN_multi_draw_arrays
glu version: 1.3
glu extensions:
& & GLU_EXT_nurbs_tessellator, GLU_EXT_object_space_tess
& &visual&&x&&bf lv rg d st colorbuffer ax dp st accumbuffer&&ms&&cav
id dep cl sp sz l&&ci b ro&&r&&g&&b&&a bf th cl&&r&&g&&b&&a ns b eat
----------------------------------------------------------------------
0x23 24 tc&&0 24&&0 r&&y&&.&&8&&8&&8&&0&&0 16&&0&&0&&0&&0&&0&&0 0 None
0x24 24 tc&&0 24&&0 r&&y&&.&&8&&8&&8&&0&&0 16&&8 16 16 16&&0&&0 0 None
0x25 24 tc&&0 32&&0 r&&y&&.&&8&&8&&8&&8&&0 16&&8 16 16 16 16&&0 0 None
0x26 24 tc&&0 32&&0 r&&.&&.&&8&&8&&8&&8&&0 16&&8 16 16 16 16&&0 0 None
0x27 24 dc&&0 24&&0 r&&y&&.&&8&&8&&8&&0&&0 16&&0&&0&&0&&0&&0&&0 0 None
0x28 24 dc&&0 24&&0 r&&y&&.&&8&&8&&8&&0&&0 16&&8 16 16 16&&0&&0 0 None
0x29 24 dc&&0 32&&0 r&&y&&.&&8&&8&&8&&8&&0 16&&8 16 16 16 16&&0 0 None
0x2a 24 dc&&0 32&&0 r&&.&&.&&8&&8&&8&&8&&0 16&&8 16 16 16 16&&0 0 None
回复 1# chenlei9907 的帖子
我也是相同的电脑,出现了完全相同的现象。而且丢了光盘,弄了半天没搞好。看了大侠的回答,很高深,不懂。
后来一下子解决了。其实处理很简单。
到dell的网站,根据自己的电脑型号选取相应的型号:笔记本,inspriron,630m,XP,
然后它在显卡上有三个驱动程序,分别是推荐的,可选的,紧急的。按照经验,我只安装了
推荐的和紧急的,结果不行,后来再安装可选的程序,结果一下子就解决了。请教 : 显卡Intel HD 3000是否支持外接 分辨率显示器_显示器吧_百度贴吧
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&签到排名:今日本吧第个签到,本吧因你更精彩,明天继续来努力!
本吧签到人数:0成为超级会员,使用一键签到本月漏签0次!成为超级会员,赠送8张补签卡连续签到:天&&累计签到:天超级会员单次开通12个月以上,赠送连续签到卡3张
关注:149,658贴子:
请教 : 显卡Intel HD 3000是否支持外接 分辨率显示器收藏
我的笔记本是2012年买的Thinkpad E430c(坑爹货),配置比较低,显卡查了是很低端的HD 3000,有1.4的HDMI口,想请教下吧友这样的配置用HDMI线或vga线可以外接 分辨率显示器?联想售后说用好点的vga可以,狗东上的卖家又说不支持(网上查了很久也没有太多关于这种配置的外接2k屏的例子,如果真的不可以就死了心老老实实买个的用)以下是配置图:
让专业电脑显示器维修公司免费为您排查问题,提供解决方案!货比三家,随意挑选!方便快捷,随意咨询,免费1对1服务,还不快来试试!
必然不支持啊
和楼主的本配置差不多,显卡是一样的,请问楼主买屏了吗,我打算买个的做外接,这个显卡带的起来吗
接口问题,显卡多大都支持。有没有dvi双通呢,有这个接上就没问题
hdmi需要降低刷新率
vga直通crt显示器所以能2k,换成液晶因为信号转化耗损,所以最多1080p
x200走dp输出能2k 美滋滋 办公室09年的台式机都有DP输出直接2k无压力 Q45的芯片组
登录百度帐号推荐应用
为兴趣而生,贴吧更懂你。或The page is temporarily unavailable
nginx error!
The page you are looking for is temporarily unavailable.
Please try again later.
Website Administrator
Something has triggered an error on your
This is the default error page for
nginx that is distributed with
It is located
/usr/share/nginx/html/50x.html
You should customize this error page for your own
site or edit the error_page directive in
the nginx configuration file
/etc/nginx/nginx.conf.

我要回帖

更多关于 intel 显卡驱动 的文章

 

随机推荐