本文转自:https://learn.sparkfun.com/tutorials/loading-debian-ubilinux-on-the-edison

Introduction

If you have been playing with the Edison, you might have noticed that the Yocto Project can be difficult to work with. Namely, they want you to re-build Linux from scratch every time you need to enable a package. This is great if you are making the Edison into end product, and you need a fast, stripped-down version of Linux. However, if you want more features and a full-fledged package manager, it is worth installing a different version of Linux on the Edison.

For this tutorial, we are going to install Ubilinux on Edison and enable a few important features (like WiFi). Ubilinux is a custom Linux image based on Debian. This version of Linux was used in the SparkFun Live! episode Tweeting Turkey Temperature Timer.

You will need an Intel Edison and one of the boards that allow you to re-program the Edison, such as the SparkFun Base Block, the Mini Breakout Kit, or the Arduino Breakout Kit.

IMPORTANT: You can potentially brick your Edison by following this tutorial. Do so at your own risk! Be especially careful at the part where it says to not unplug your Edison for at least 2 minutes. If you do brick your Edison, read the Troubleshooting section for possible solutions.

Suggested Reading

  • Edison Getting Started Guide

Install Ubilinux

We need to download the Ubilinux image, which we will install on the Edison, and some software depending on your current operating system.

IMPORTANT: Make sure the Edison is not powered or connected to your host computer at this time.

Windows

If you have not previously installed Intel’s Edison drivers for Windows, you will need to do that first.

  • Navigate to https://communities.intel.com/docs/DOC-23242
  • Scroll down and download the “Windows Driver setup” file
  • Double-click on the downloaded .exe and follow the command prompts (accepting all defaults) to install the drivers

Download and install 7-zip from the 7-zip.org page. You will probably want the .msi version.

Download dfu-util for Windows (this executable came from the spark.io community).

Download the Ubilinux image by navigating to http://www.emutexlabs.com/ubilinux and click on “ubilinux for Edison.”

Go to Start → All Programs → 7-Zip → 7-Zip File Manager. Within the file manager, navigate to your downloads folder. Select “dfu-util-0.8-binaries.tar.zx” and select “Extract.”

Click “OK” when prompted on where to extract the files to accept the defaults. “dfu-util-0.8.binaries.tar” will appear in the 7-Zip File Manager. Double-click on it to enter the folder. Select “dfu-util-0.8-binaries.tar” and click “Extract” to extract dfu-util one more time.

Click “OK” when prompted again. Press the “Up One Folder” button to navigate back to your Downloads folder.

Perform the same steps again to extract the Ubilinux image:

  • Select the ubilinux-edison-XXXXXX.tar.gz file
  • Click “Extract”
  • Click “OK” on the pop-up box
  • Wait while that extracts
  • Double-click on “ubilinux-edison-XXXXXX.tar” to enter into the tar archive
  • Select ubilinux-edison-XXXXXX.tar file
  • Click “Extract”
  • Wait once more while that extracts

Open up a File Explorer window and navigate to <YOUR DOWNLOADS FOLDER>\dfu-util-0.8-binaries.tar\dfu-util-0.8-binaries\dfu-util-0.8-binaries\win32-mingw32. Right-click on dfu-util.exe and click “Copy.”

Navigate to the toFlash folder, which is in the unzipped Ubilinux folder (<YOUR DOWNLOADS FOLDER>\ubilinux-edison-141030.tar\ubilinux-edison-141030\toFlash). Right-click and select “Paste” to paste in the dfu-util.exe file.

In the \toFlash folder, scroll down to find the file “flashall.bat.” Double-click it to start the install process.

A command window will open up and ask you to plug in your Edison.

Plug in your Edison (Use J16 for the Intel Arduino and Mini-Breakout boards. Use “OTG” for the SparkFun Edison Base Block), and the installation process will begin!

WARNING: Once the command prompt window closes, you will need to wait at least 2 minutes for the installation to complete. The Edison should reset a couple of times to finalize its installation. Do not unplug the Edison! It’s probably a good idea to walk away for those 2 minutes.

Mac OSX

[Update 3/19/15] I’ve had several people note that this does not work on OS X 10.10 (Yosemite). I will look into it and update the tutorial if I find a solution. In the meantime, I recommend trying another operating system. If you happen to have any luck with Yosemite, please let us know in the comments!

[Edit 3/18/15: Added section on installing Homebrew and utilities] Many thanks to the following users for helping to figure out how to flash Edison from Mac OS X:

  • hello-techie
  • Alx
  • GaryiOS
  • BrentBoren
  • Member #360315

Download the Ubilinux image by navigating to http://www.emutexlabs.com/ubilinux, and click on “ubilinux for Edison.”

Open a Finder window and navigate to your Downloads directory. Find the Ubilinux file (e.g. ubilinux-edison-150309.tar.gz), and double-click it to extract it. It will create a toFlash directory.

Open a terminal (Finder → Applications → Utilities → Terminal).

We need to install a few utilities in to flash the Edison from OS X.

Install Homebrew:

Copy Code
ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”
ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”

Press RETURN and enter your password when asked to continue the installation process.

Homebrew might need to clean or check things before we use it. Run:

Copy Code
brew doctor
brew doctor

Once Homebrew has been installed and cleaned, use it to install a few other utilities:

Copy Code
brew install coreutils gnu-getopt dfu-util
brew install coreutils gnu-getopt dfu-util

Change to the toFlash directory in your Downloads.

Copy Code
cd ~/Downloads/toFlash/
cd ~/Downloads/toFlash/

Run the install script.

Copy Code
sudo ./flashall.sh
sudo ./flashall.sh

You will see a message like “Now waiting for dfu device.” At that, plug in your Edison (Use J16 for the Intel Arduino and Mini-Breakout boards. Use “OTG” for the SparkFun Edison Base Block). You should see the script start to flash the Edison in the terminal. Wait while that finishes (it could take a few minutes).

Once the flashing process is complete, you will get a message like “Your board needs to reboot twice to complete the flashing procedure, please do not unplug it for 2 minutes.” You will want to wait those 2 minutes to make sure the flashing process is complete.

Linux

Download the Ubilinux image by navigating to http://www.emutexlabs.com/ubilinux and click on “ubilinux for Edison.”

Open a terminal and navigate to your downloads directory. For example:

Copy Code
cd Downloads
cd Downloads

Extract the contents of the downloaded file:

Copy Code
tar xvfz ubilinux-edison-XXXXXX.tar.gz
tar xvfz ubilinux-edison-XXXXXX.tar.gz

Note that the version number (XXXXXX) will be whichever version you downloaded (e.g. ubilinux-edison-141030.tar.gz).

Move into the “toFlash” directory:

Copy Code
cd toFlash
cd toFlash

Run the install script:

Copy Code
sudo ./flashall.sh
sudo ./flashall.sh

You will see a message like “Now waiting for dfu device.” At that, plug in your Edison (Use J16 for the Intel Arduino and Mini-Breakout boards. Use “OTG” for the SparkFun Edison Base Block). You should see the script start to flash the Edison in the terminal. Wait while that finishes (it could take a few minutes).

Once the flashing process is complete, you will get a message like “Your board needs to reboot twice to complete the flashing procedure, please do not unplug it for 2 minutes.” You probably want to wait that 2 minutes (I know I would not want to risk bricking my Edison).

Log Into Ubilinux

Once you have flashed your Edison, you can log in over a serial connection.

IMPORTANT: If you are using the Intel Arduino or Mini-Breakout board, plug in the other USB cable at this time (you should have 2 USB cables running from your Edison to your computer). If you are using one of the SparkFun Edison Blocks with a “Console” port, you can use that port to power the Edison and receive a serial console.

You will need to use both USB ports on the Arduino Breakout board

You only need to use the USB port labeled “Console” on the Base Block

Windows

Download a serial terminal, such as PuTTY.

You will also likely need to download and install the Virtual COM Port Drivers from FTDI (download the “setup executable” version).

Open the Device Manager. Expand “Ports (COM & LPT)” and you should see a “USB Serial Port.” Make a note of the COM number.

Run PuTTY, select the “Serial” option, change the COM port number under “Serial line,” and set the “Speed” to 115200.

Click “Open.” You will see a blank terminal. Hit ‘enter’ and you will be prompted with a login screen.

Enter the default login credentials:

ubilinux login: edison
Password: edison

And that’s it! You are now logged into Ubilinux running on your Edison.

Mac OSX

Before you plug in your Edison, you need to find the location of the USB serial device. Open a terminal and enter:

Copy Code
ls /dev/tty.usb*
ls /dev/tty.usb*

Make a note of which devices appear. Plug in your Edison (both cables for Intel breakout boards or the “Console” port for the SparkFun Blocks) and enter the command again:

Copy Code
ls /dev/tty.usb*
ls /dev/tty.usb*

An extra file should appear. Remember the file name and use the screen command to connect:

Copy Code
screen /dev/tty.usbserial-XXXXXXXX 115200
screen /dev/tty.usbserial-XXXXXXXX 115200

Where -XXXXXXXX is the string of numbers and letters of the USB serial device. For example:

Press ‘enter’ to see the login screen.

Enter the default login credentials:

ubilinux login: edison
Password: edison

You should now be logged into Ubilinux.

Linux

Open a terminal and connect using the screen command:

Copy Code
sudo screen /dev/ttyUSB0 115200
sudo screen /dev/ttyUSB0 115200

Note that your USB serial device may not be exactly ttyUSB0. If you have other USB serial devices plugged in, it could be ttyUSB1, ttyUSB2, and so on.

Press ‘enter’ to see the login screen.

Enter the default login credentials:

ubilinux login: edison
Password: edison

You should now be logged into Ubilinux.

Add Some Security

By default, Ubilinux gives you access to the root account and a user account called “edison.” This is a great starting point, as it allows you to do anything in the operating system. However, it is not secure. If someone finds out the IP address of the Edison, they could log in with the default username and password.

One of the easiest fixes for improving security is to create a unique user account, change the edison user password (or delete the whole account!), and change the root password. You can skip creating a new user if you like, but it is still highly recommended that you change passwords for both root and edison.

If you are logged in on the “edison” account, run:

Copy Code
logout
logout

At the login screen, log back in using the root account:

ubilinux login: root
Password: edison

Create a New User

Choose a username for your new account and think of a memorable password. Run the command:

Copy Code
adduser --ingroup users <USERNAME>
adduser --ingroup users <USERNAME>

You will be prompted to enter your password twice and asked for some identifying information. Feel free to fill them in or hit ‘enter’ to accept the default of blank (no information). Type ‘y’ and press ‘enter’ when prompted about the information being correct.

Change the “edison” Account

It is advisable that you either remove the “edison” account or at least change the password.

Change Password

If you want to keep the “edison” account, then you should consider changing the password to something more secure:

Copy Code
passwd edison
passwd edison

You will be prompted to enter the new password twice.

Remove Account

The better option is to remove the account altogether, as guessing a non-default username is more difficult. While logged in as root, enter:

Copy Code
deluser --remove-home edison
deluser --remove-home edison

Change root Password

The last step is changing the default root password. This is crucial in preventing unauthorized people from easily signing in to your Edison with root access. While logged in as root, run the command:

Copy Code
passwd
passwd

You will be prompted to enter the new password twice.

Enable WiFi

After logging into Ubilinux, you will probably want an Internet connection so you can download and install packages at your whim. There are a few ways to connect to the Internet over WiFi. We will show two of them. The first one is the quick and easy way, but it leaves your WiFi password stored in plain text in a file. The second is the preferred method, as it encrypts your password, but the steps are slightly more involved.

If you are logged in as a regular user, run the command:

Copy Code
su
su

And enter the password for root to gain superuser abilities. As a side note, “su” stands for substitute user.

Quick and Dirty

The easiest way to get on a local WiFi Access Point is to store the SSID and password in a file. The problem is that your password will be stored in plain text, so it is not very secure.

Use your favorite Linux text editor (I’m still a fan of nano) to open the interfaces file:

Copy Code
nano /etc/network/interfaces
nano /etc/network/interfaces

Use the arrow keys to navigate to “auto usb0” and add a “#” in front of the line to comment it out.

Navigate down and remove the “#” in front of “auto wlan0” so that our Edison will try to automatically connect to WiFi on boot.

Go down to the “wpa-ssid” and “wpa-psk” lines. Change the default SSID and password (PSK) to your desired WiFi SSID and password.

Press ‘Ctrl-X’ to exit and press ‘y’ to save the file when prompted.

We recommend following the directions in “The Better Way” below, but if you are happy with the quick method, skip to “Test WiFi Connection.”

The Better Way

We can store our WiFi password more securely by creating a hash and locking down the /etc/network/interfaces file so that only root has access to it.

With the root account, change the permissions of the /etc/network/interfaces file:

Copy Code
chmod 0600 /etc/network/interfaces
chmod 0600 /etc/network/interfaces

Create a hash of your WiFi password:

Copy Code
wpa_passphrase <YOUR_WIFI_SSID> <YOUR_WIFI_PASSWORD>
wpa_passphrase <YOUR_WIFI_SSID> <YOUR_WIFI_PASSWORD>

That will print out a “network” section in the console.

Copy the long string of letters and numbers after “psk=” (On PuTTY and many Linux consoles, you just need to highlight the string to copy it). Open the /etc/network/interfaces file:

Copy Code
nano /etc/network/interfaces
nano /etc/network/interfaces

Use the arrow keys to navigate to “auto usb0” and add a “#” in front of the line to comment it out.

Navigate down and remove the “#” in front of “auto wlan0” so that our Edison will try to automatically connect to WiFi on boot.

Go down to the “wpa-ssid” line. Change the default SSID to your WiFi’s SSID.

Move your cursor to the “wpa-psk” line, delete the default string after “wpa-psk,” and paste in the long hash that we generated earlier (you just need to right-click for PuTTY and many other Linux consoles).

Press ‘Ctrl-X’ to exit and press ‘y’ to save the file when prompted.

Test WiFi Connection

Restart the wireless driver by entering:

Copy Code
ifup wlan0
ifup wlan0

Once that configures, your Edison should be connected to your local WiFi. You can check by entering:

Copy Code
ifconfig
ifconfig

You should see an “inet addr” entry under “wlan0” that shows your IP Address.

To ensure you have access to the Internet, you can ping a known site, such as www.google.com or www.sparkfun.com:

Copy Code
ping www.sparkfun.com
ping www.sparkfun.com

You should see several pings and responses. Press ‘Ctrl-C’ to stop.

Now that your Edison is connected to a network, you can use SSH to connect to your Edison from another computer. You just need to know the IP Address.

Using apt-get

Installing Packages

The first thing we want to do is update our package manager with apt-get. Make sure you are logged in as root (or use the “su” command), and enter:

Copy Code
apt-get update
apt-get update

Wait while that downloads and updates your package lists.

If you want to install a package, like sl, you just need to apt-get install:

Copy Code
apt-get install sl
apt-get install sl

If prompted, press ‘y’ when asked to install the package, and your package will be automatically downloaded and installed!

NOTE: “sl” installs a fun little demo. Enter:

Copy Code
/usr/games/sl
/usr/games/sl

To see it!

Bonus: Adding "sudo"

This part is completely optional. Some people like to use the “sudo” command in order to execute actions that require superuser privileges (such as “sudo apt-get install”). Others prefer to switch users with “su” to execute commands. It is an ongoing debate.

If you would like to add the sudo command, we first need to install it. With the root account, run the command:

Copy Code
apt-get install sudo
apt-get install sudo

Add your user account (not root!) to the sudo group:

Copy Code
adduser <YOUR_USERNAME> sudo
adduser <YOUR_USERNAME> sudo

Logout with the “logout” command (you might have to type it twice if you are using “su”):

Copy Code
logout
logout

Log back in with your regular user account. Try a command such as:

Copy Code
ifconfig
ifconfig

You should get an error like “-bash: ifconfig: command not found.” Try the same command again with “sudo” in front:

Copy Code
sudo ifconfig
sudo ifconfig

You should get a print out of your network status.

You can now use sudo to run commands that require administrative privileges without having to log in to your root account. It lowers security some by allowing a regular user to run commands with escalated privileges. However, it means that you do not need to sign into your root account if you are using something like SSH.

Ideally, you would figure out which commands your user account would need to run and enable only those in the sudoers file. This can be done with the “visudo” command. To learn more about how to edit the sudoers file, read this article.

Troubleshooting

Help! I bricked my Edison!

This is very much a possibility when loading new firmware. If you find that you have put the Edison in an unrecoverable state, it should be possible to recover (unbrick) it.

If you see the Edison begin to POST to your serial terminal, look for the line (it will count down to 0):

Copy Code
Hit any key to stop autoboot: 0
Hit any key to stop autoboot: 0

Press ‘enter’ and enter the command:

Copy Code
run do_flash
run do_flash

This will put the Edison into DFU mode. You can now run the flashall.bat or flashall.sh script from your host computer to re-image the Edison.

Many thanks to user ddewaele for finding this solution. You can see an example of his error (bricked Edison) and his solution as a gist on GitHub.

dfu-util not found

On Linux, if you get an error like “dfu-util: command not found” when trying to install Ubilinux then you need to install dfu-util. Run the command:

Copy Code
sudo apt-get install dfu-util
sudo apt-get install dfu-util

Which USB port do I use?

For installing Ubilinux, if you are using the Intel Arduino Breakout or Mini-Breakout, you need to use the USB port labeled “J16.” If you are using the SparkFun Edison Base Block, use the port labeled “OTG.”

For logging into Ubilinux, you need to use both USB ports on the Intel Arduino or Mini-Breakout. You only need to use the port labeled “Console” on the SparkFun Base Block.

libusb not found

In Windows, if you see an error message such as “The program can’t start because libusb-1.0.dll is missing from your computer”, then you need libusb-1.0.dll, which can be found in the dfu-util download. Navigate to <YOUR DOWNLOADS FOLDER>\dfu-util-0.8-binaries.tar\dfu-util-0.8-binaries\dfu-util-0.8-binaries\win32-mingw32. Right-click on libusb-1.0.dll and click “Copy.”

Navigate to <YOUR DOWNLOADS FOLDER>\ubilinux-edison-141030.tar\ubilinux-edison-141030\toFlash. Right-click and select “Paste” to paste in the libusb-1.0.dll file.

NOTE: You can permanently install dfu-util.exe and libusb-1.0.dll on your Windows computer if you like. Read into modifying PATH and installing a .dll. For now, they were just copied into the Ubilinux path for brevity.

Packages not found

On Linux, a message such as “E: Unable to locate package” could mean a few things:

  • You are spelling the package name wrong (I am guilty of this quite often)
  • Your package lists cannot find the package (try modifying /etc/apt/sources.list to point to other repositories
  • The package simply does not exist. You might have to install whatever it is from source.

Sudo unable to resolve host

If you use the “sudo” command and get an error like:

Copy Code
sudo: unable to resolve host ubilinux
sudo: unable to resolve host ubilinux

Then it means that the hostname of your Edison (in the file /etc/hostname) is not found in the /etc/hosts file. Open up an editor:

Copy Code
sudo nano /etc/hostname
sudo nano /etc/hostname

And make a note of the name (it should be “ubilinux” by default). You can change it if you would like (it will change the name of your Edison when it is connected to a network).

Exit and open up /etc/hosts:

Copy Code
sudo nano /etc/hosts
sudo nano /etc/hosts

And add your hostname (e.g. “ubilinux”) afte “localhost” in the first line.

Save and exit with “Ctrl-X” and ‘y.’ Restart the Edison with:

Copy Code
sudo reboot
sudo reboot

You should no longer get the warning with sudo.

I want to go back to Yocto

Many Edison guides on the Internet focus on using the default Yocto build. If you installed Ubilinux and decide that it is not for you, don’t worry! You can easily reinstall Yocto.

Navigate to Intel’s Edison download page and download “Edison Yocto complete image.”

Follow the instructions found in the Install Ubilinux section, but instead of navigating to the Ubilinux directory to run “flashall.bat” or “flashall.sh,” go to the Yocto directory. Here is brief reminder of what we did in that section:

  • Unzip the downloaded Yocto image.
  • If you are on Windows, copy dfu-util.exe (and likely libusb-1.0.dll) to the Yocto image directory.
  • Run flashall.bat (Windows) or flashall.sh (Mac and Linux). You will be asked to plug in your Edison.

  • At this time plug in your Edison (or unplug it and plug it back in). The script will then start to flash the Yocto image onto your Edison.

  • Once the script is complete, wait at least 2 minutes for the installation to complete. The Edison will restart itself a few times during this time. Do not remove power!

After waiting for some time, open up a serial console into your Edison, and you should be greeted with a Yocto login prompt:

Resources and Going Further

Now that you have Debian installed on your Edison, you have many tools at your disposal. For example, aptitude is a powerful package manager that lets you install libraries and Linux packages from the Internet.

Check out our Installing libmraa on Ubilinux for Edison tutorial for more info interfacing with other boards.

Resources

Here are some additional resources to help you with the Edison:

  • General Guide to Sparkfun Blocks for Intel Edison
  • Console Block Hookup Guide
  • Battery Block Hookup Guide
  • GPIO Block Hookup Guide
  • To learn more about Debian, there is the Debian Wiki
  • To read more about the /etc/network/interfaces file, see the NetworkConfiguration page
  • If you are interested in learning more about Linux, take a look at The Linux System Administrator’s Guide
  • If you really want to dig into making Linux more secure, read the Securing Debian Manual
  • Intel’s Edison Home Page has a wealth of information in Intel’s Maker forum and throughout their Makers web community.

If you’re new to Linux, we highly recommend checking Userland, a guide to all things shell.

Intel Edison 装Debian系统相关推荐

  1. Windows系统与debian系统双系统安装

    1.资源网址:https://msdn.itellyou.cn/ 下载 Windows 8.1 Pro 系统映像:使用软碟通(UltraISO)刻录安装镜像到U盘:开机进入BIOS将其设置为U盘启动( ...

  2. 8代主板装服务器系统,微星B365主板搭配intel 8代cpu安装win7及bios设置教程

    就在前不久发布华硕和华擎分别发布了b365主板,近期微星也发布了b365主板,有很多使用微星主板的网友问,微星B365主板其搭载intel 酷睿8代cpu可以安装安装win7吗?微星B365主板预装的 ...

  3. 计算机八代配置资料,能装win7系统的最新intel 8代cpu电脑配置推荐

    现在新出的处理器和主板都支持最新的win10系统,win7系统很多都不支持了.但有些网友习惯了用win7系统又想用新机,经常有网友问我,我intel 8代cpu想配一个能装win7的组装电脑有没有推荐 ...

  4. 华硕windows10怎么安装c语言,华硕主板h310c搭配intel 8代cpu怎么装win7系统

    [文章导读]华硕主板h310c,可其其搭载intel 酷睿第八代处理器.预装的是win10系统,用户还是喜欢win7系统,该华硕h310c主板可以采用的第八代酷睿CPU安装win7,在安装WIN7过程 ...

  5. 【实战系列】intel 8代I5 8400+H310完美装WIN7系统

    本系列教程是本人维修实战过程中的经验截图,适合维修装机人员学习使用.截图步骤清晰易懂,一步一图,小白也能学会.装系统之前首先你得有一个能装系统的U盘启动盘,怎么制作U盘启动盘,请看之前的教程--最简单 ...

  6. 【实战系列】intel 8代CPU I7 8700完美装WIN7系统

    本系列教程是本人维修实战过程中的经验截图,适合维修装机人员学习使用.截图步骤清晰易懂,一步一图,小白也能学会.装系统之前首先你得有一个能装系统的U盘启动盘,怎么制作U盘启动盘,请看之前的教程--最简单 ...

  7. win10装debian 双系统_如何拥有一个Windows 10和Debian 10的双系统

    在无数次劝说自己后,你终于做出了一个大胆的决定,试试 Linux.不过,在完全熟悉 Linux 之前,你依旧需要使用 Windows 10 系统.幸运的是,通过一个双系统引导设置,能让你在启动时,选择 ...

  8. [Intel Edison开发板] 02、Edison开发板入门

    一.前言 Start from the link: 开始学习的链接 上面链接是官网的教程,按照教程可以开发板入门: 其中第一步是了解开发板,涉及到如何组装.如何连线.一些主要的接口简单介绍等信息: 第 ...

  9. 装linux系统时键盘用不了怎么办_图吧垃圾佬的LINUX体验

    图吧垃圾佬的LINUX体验并不舒服 最近呢因为要搞树莓派(并没有,其实是还是之前无意中发现MAC对EPSON打印机的驱动效果可以在打印多页纸的时候不掉速所以会想要在台式机上用别的系统试试看驱动打印机) ...

  10. 八代i7装服务器系统2012,八代I7能装win7系统吗,会影响性能吗-8代win7,8代cpu完美装win7...

    装win7也就是驱动支持不支持的问题.现在8代Intel可以装win7了.市场上第一个支持8代装win7的产品<驱动总裁>装的时候会自动打上驱动. 只有兼容问题,没有性能问题,装上win7 ...

最新文章

  1. FinFET与2nm晶圆工艺壁垒
  2. 【Big Data - Hadoop - MapReduce】通过腾讯shuffle部署对shuffle过程进行详解
  3. 2pin接口耳机_拆解报告:雷柏首款真无线耳机XS200
  4. jsp中forward与sendRedirect的区别
  5. chrome稍后阅读功能reading list
  6. 不务正业:说说工作内、技术外的那些事(工作如“围城”)
  7. sql server死锁_了解SQL Server死锁图的图形表示
  8. day18【前台】订单
  9. 苹果Mac电脑配置flutter开发环境
  10. linux如何卸载金山安全终端,卸载和释放-文档中心-金山云
  11. ​PHP现在不好找工作是真的吗?
  12. 计算机电源大小怎么看,怎么看电脑电源多少w
  13. Web爬虫|入门教程之爬虫简介
  14. 2015数据泄露调查报告
  15. mysql数据库扫描工具_Scuba2019最新免费版|Scuba(数据库扫描工具)官方版下载_v10.0.3_9号软件下载...
  16. mining.subscribe与initiate_stratum函数
  17. Mac下安装sqlmap
  18. mysql高级笔记_MySQL高级学习笔记
  19. 计算两个日期之间所间隔天数的快速算法
  20. 吉林大学软件学院数据库系统原理复习

热门文章

  1. WordPress企业主题 Module主题V4.5.4开心版 免费版独家修复移动端菜单空白bug
  2. 2022《福布斯》富豪榜发布,FTX联合创始人Gary Wang上榜
  3. IT6801FN中文版
  4. 如何关闭联想台式机电脑USB键盘的FN功能
  5. behavior3editor环境搭建
  6. GitLab安装并设置为开机启动
  7. Gitee 多人协作开发教程
  8. 基于Open vSwitch搭建虚拟路由器
  9. android获取SIM卡信息和手机号码
  10. 银河麒麟(kylin)V10桌面版