点击这里查看文章

有空试试~~~唉。。。

Ubuntu (Linux) on Atom Z3700 Series

ASUS Transformer Book T100 is particularly interesting platform, because some guys at XDA developers forum have already installed Android / Ubuntu on the device, so you can already evaluate these two operating systems on the platform. Android does not really worked at the time, but at least Intel is working on it so it should
eventually run just as well as Windows 8.1 does.

They basically explain the steps to safely boot to Ubuntu (and other OSes) that can be summarized as below

  • Configure UEFI (disable Secure Boot)
  • Format a USB flash drive to make it bootable with Rufus (GPT for UEFI + FAT + 64 kb+ raring x64 as bootable disk using ISO Image). You’ll also need to copy
    bootia32 to /efi/boot/ since the bootloader does not support 64-bit.
  • Backup the recovery partition with tool such as ASUS Backtracker
  • Use one of the two Ubuntu images:
    • 13.04 x64 desktop – Status: boots to GUI using fbdev
    • 13.10 x64 desktop – Status: boots to GUI using fbdev

They’ve also provided the instructions to build grub2-efi-ia32. You’ll notice they had to use the framebuffer, as there’s a bug in VESA. Not everything is working yet. The touchscreen works fine, but Wi-Fi is broken, at least in Ubuntu 13.10.

There’s also a bit more information in Anandtech forums.

I’d assume you can just take the latest Linux kernel, and successful boot it on Bay Trail devices (TBC), contrary to most ARM platforms.

Brad Linder (Liliputing) tried it out (before the touchscreen was fixed). Check it out below.

Read more: http://www.cnx-software.com/2014/02/14/intel-bay-trail-z3700-series-overview-benchmarks-hardware-documentation-and-linux-support/#ixzz31bHQcc6G

Intel baytrail-t support Linux?的更多相关文章

  1. ViewTool Hollong BLE Sniffer Support Linux OS Introduction

    ViewTool Hollong BLE Sniffer Support Linux OS Introduction 1. Download Software:http://www.viewtool. ...

  2. Intel Driver and Support Assistant 安装失败

    Intel Driver and Support Assistant 以下简称 Intel DSA. Intel DSA 依赖 Microsoft Visual C++ 2015-2019 Redis ...

  3. Intel® QAT加速卡之Linux上编程说明

    QAT Software for Linux 1. Introduction 该程序员指南提供了有关软件体系结构和使用指南的信息. 相关的英特尔QAT软件库文档中记录了有关使用英特尔QuickAssi ...

  4. ---Intel SSD 750 under Linux

    https://wiki.archlinux.org/index.php/Solid_State_Drives/NVMe

  5. linux笔记本上安装了双显卡驱动(intel+nvidia)

    为了提高linux图形性能并降低功耗,独特的文章. 我用的系统Fedora 20 Xfce x64,在安装驱动程序,以确保系统是最新的版本号. 最好安装gcc.kernel-devel和其他包.己主动 ...

  6. Intel processor brand names-Xeon,Core,Pentium,Celeron----Atom

    http://en.wikipedia.org/wiki/Intel_atom Intel Atom From Wikipedia, the free encyclopedia   (Redirect ...

  7. Intel Naming Strategy--1

    http://en.wikipedia.org/wiki/Mobile_Internet_device Computer sizes   Classes of computers   Larger S ...

  8. 戴文的Linux内核专题:08内核配置(4)

    转自Linux中国 这个第四部分里,我们将继续配置更多的设置和特性. 这里我们被问及关于"IBM Calgary IOMMU support (CALGARY_IOMMU)".这个 ...

  9. Linux下编译内核配置选项简介

    Code maturity level options代码成熟度选项 Prompt for development and/or incomplete code/drivers 显示尚在开发中或尚未完 ...

随机推荐

  1. Oracle 执行计划了的rows概念

    alter session set statistics_level=all; select t1.* from t1,t2 where t1.id=t2.id and t1.id<3; sel ...

  2. Swift - UIColor使用自定义的RGB配色

    1,比如rgb 色值为55. 186 .89 那么给UIColor设置里面要除以255 1 UIColor(red: 55/255, green: 186/255, blue: 89/255, alp ...

  3. select value from v$diag_info where name='Default Trace File';

    VALUE -------------------------------------------------------------------------------- /u01/diag/rdb ...

  4. 用代码定位硬盘上的文件(使用ShellExecute执行explorer /select命令,其它参数也很全)

    问题:如何用代码控制资源浏览器,并定位到指定的文件? 答:使用ShellExecute,配合explorer即可 ShellExecute(Application.Handle, 'open', PC ...

  5. WM_CLOSE、WM_DESTROY、WM_QUIT学习总结(点击关闭按钮会触发WM_CLOSE消息,DestroyWindow API会触发WM_DESTROY和WM_NCDESTROY消息,MSDN上写的很清楚)

    WM_CLOSE:关闭应用程序窗口 WM_DESTROY:关闭应用程序 WM_QUIT:关闭消息循环 只有关闭了消息循环,应用程序的进程才真正退出(在任务管理器里消失). win32应用程序的完整退出 ...

  6. thinkphp3.2入口文件

    原文:thinkphp3.2入口文件 <?php define('DIR_SECURE_FILENAME', 'default.html');//错误页面 define('APP_PATH',' ...

  7. perl 访问网站一些useragent的设置

    121.40.205.143 - - [22/Jun/2016:12:56:23 +0800] "GET /wechat/account.html HTTP/1.1" 200 34 ...

  8. 11.4.2 排序或合并文件(sort命令) - 51CTO.COM

    11.4.2 排序或合并文件(sort命令) - 51CTO.COM 11.4.2 排序或合并文件(sort命令) 2010-03-12 14:37 陆松年 电子工业出版社 我要评论(0) 字号:T ...

  9. 【IOS工具类】获得设备唯一标识(兼容IOS5,6,7)

    UIDevice+IdentifierAddition.h: #import <Foundation/Foundation.h> @interface UIDevice (Identifi ...

  10. queue C++

    #include <iostream> using namespace std; class DequeEmptyException { public: DequeEmptyExcepti ...