欧美vvv,亚洲第一成人在线,亚洲成人欧美日韩在线观看,日本猛少妇猛色XXXXX猛叫

新聞資訊

    多用戶在裝完原版系統后,發現系統果真干凈得很,除了給你一個回收站,啥也沒有了!那么,進入到原版系統后,我們首先要做的是什么呢?毋庸置疑,那就是給我們的win10系統安裝驅動了。


    按照以往的習慣,很多用戶在裝完系統后就會下載某些第三方軟件來安裝驅動,安裝好了的同時,卻發現電腦多了各種捆綁軟件。針對這樣的問題,接下來老毛桃給大家分享一個win10系統安裝驅動最簡單正確的方法,且無需任何第三方軟件。感興趣的小伙伴來圍觀吧!


    安裝驅動大致分為1-2步,為什么這樣說呢?當然我們有的電腦只需一步即可安裝完成,而有的電腦可能會有第二步,這個就要看具體的情況了。簡單說明:第一步是插上網線,掛機10分鐘,就會給你的系統安裝好所有的驅動;第二步是顯卡官方專用驅動安裝。


    具體怎么操作呢?

    第一步:插上網線。就是這么簡單,插上網線,保證電腦處于聯網狀態下,掛機5到10分鐘,你的驅動就會自動被裝好。


    那么第二步的操作,我們在什么情況下會用到呢?首先我們要知道,在實際的使用過程中,顯卡的驅動文件是比較大的,對此它下載會很慢。而Win10自動安裝驅動的過程,它是“偷偷”進行的。正常情況下,掛機10分鐘驅動大都能安裝完畢了,如果時間超長的話,那我們就沒有必要等了,應該怎么做呢?


    安裝顯卡的專用驅動:

    (以顯卡是微星2060SUPER代萬圖師版為例)

    1、打開瀏覽器搜索該顯卡的官網,點擊進入;

    2、進入官網界面后,下拉菜單到最后,點擊【技術支持】菜單下的【下載中心】;


    3、彈出新窗口后,在搜索框中直接搜索【2060】,回車;


    4、點擊【顯卡】查看搜索結果,找到GeForce RTX 2060 SUPER VENTUS OC,點擊進入下一步;


    5、將選項卡切換至【技術支持】-【驅動程序】,打開鏈接下載顯卡驅動;


    6、下載完畢之后即可安裝,由于安裝比較簡單,老毛桃就不便和大家細說了。

    win10是目前在win系列的個人操作系統中,個人覺得是最好用的,沒有之一。現在又能擁有WSL2的功能,讓ubuntu與win10無縫的結合。簡直就是完美的不能再完美了。享受著win10的強大桌面系統及完善的周邊應用軟件外,又能擁有ubuntu系統環境,完美的讓不同環境的應用與服務,整合在同一個桌面下,各自互不干涉的運行著。相信這是每個喜歡ubuntu又舍棄不掉win的朋友們一大福音。

    由于C盤(系統盤)的資源一般都是很緊張,所以,需要將WSL安裝在其他的目錄下。

    一、安裝LxRunOffline。

    下載鏈接:https://github.com/DDoSolitary/LxRunOffline/releases

    下載完解壓后,將里面的文件直接復制到C:\windows\system32下,省去配置環境的麻煩 。

    在Windows PowerShell下,執行LxRunOffline,得到下面的結果,說明已正確安裝。

    PS C:\WINDOWS\system32> LxRunOffline
    [ERROR] No action is specified.
    
    Supported actions are:
       l, list            List all installed distributions.
       gd, get-default    Get the default distribution, which is used by bash.exe.
       sd, set-default    Set the default distribution, which is used by bash.exe.
       i, install         Install a new distribution.
       ui, uninstall      Uninstall a distribution.
       rg, register       Register an existing installation directory.
       ur, unregister     Unregister a distribution but not delete the installation directory.
       m, move            Move a distribution to a new directory.
       d, duplicate       Duplicate an existing distribution in a new directory.
       e, export          Export a distribution's filesystem to a .tar.gz file, which can be imported by the "install" command.
       r, run             Run a command in a distribution.
       di, get-dir        Get the installation directory of a distribution.
       gv, get-version    Get the filesystem version of a distribution.
       ge, get-env        Get the default environment variables of a distribution.
       se, set-env        Set the default environment variables of a distribution.
       ae, add-env        Add to the default environment variables of a distribution.
       re, remove-env     Remove from the default environment variables of a distribution.
       gu, get-uid        Get the UID of the default user of a distribution.
       su, set-uid        Set the UID of the default user of a distribution.
       gk, get-kernelcmd  Get the default kernel command line of a distribution.
       sk, set-kernelcmd  Set the default kernel command line of a distribution.
       gf, get-flags      Get some flags of a distribution. See https://docs.microsoft.com/en-us/previous-versions/windows/desktop/api/wslapi/ne-wslapi-wsl_distribution_flags for details.
       sf, set-flags      Set some flags of a distribution. See https://docs.microsoft.com/en-us/previous-versions/windows/desktop/api/wslapi/ne-wslapi-wsl_distribution_flags for details.
       s, shortcut        Create a shortcut to launch a distribution.
       ec, export-config  Export configuration of a distribution to an XML file.
       ic, import-config  Import configuration of a distribution from an XML file.
       sm, summary        Get general information of a distribution.
       version            Get version information about this LxRunOffline.exe.

    二、啟用虛擬機及Linux子系統功能

    以管理員身份,打開Windows PowerShell,執行下面的語句。

    dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
    dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
    Enable-WindowsOptionalFeature -Online -FeatureName VirtualMachinePlatform
    Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux

    按要求,執行完后,會提示你重啟計算機,按“Y”允許重啟。

    重啟后,我們可以在這里面確認是否安裝成功。當然了,也可以直接使用手工的方式,點擊這個地方進行安裝。

    三、安裝Ubuntu18.04。

    由于是需要安裝到其他目錄,而非系統默認自帶的,所以,需要先下載一下Ubuntu18.04。

    下載地址:https://docs.microsoft.com/en-us/windows/wsl/install-manual

    系統及版本,自己看著選擇。喜歡就好。

    Ubuntu 18.04
    Ubuntu 18.04 ARM
    Ubuntu 16.04
    Debian GNU/Linux
    Kali Linux
    OpenSUSE Leap 42
    SUSE Linux Enterprise Server 12
    Fedora Remix for WSL

    下載下來后,是一個Appx后綴的文件,我們直接把Appx改為zip,然后再解壓。

    解壓后,得到的結果如下:

    install.tar.gz這個文件就是我們等下要用到的。目錄要記住一下。

    以管理員的身份,打開Windows PowerShell

    格式:

    LxRunOffline i -n <安裝名稱> -d <安裝路徑> -f <安裝文件>

    對照這個,森哥我這里的安裝名稱是:ubuntu-18.04,安裝路徑是在:D:\ubuntu,剛剛提到的那個安裝文件,是在E:\ubuntu里面。

    LxRunOffline i -n ubuntu-18.04 -d D:\ubuntu  -f E:\ubuntu\install.tar.gz

    啟動ubuntu系統

    wsl

    若忘記安裝名稱,使用下面命令查詢

    LxRunOffline list

    查看版本號

    在運行中,輸入bash,即可打開。

    查詢版本號看是否安裝我們所需要的。

    root@zerolife:~# cat /etc/issue
    Ubuntu 18.04.1 LTS \n \lxxxxxxxxxx root@zerolife:~# cat /etc/issueUbuntu 18.04.1 LTS \n \lcat /etc/issue

    四、卸載WSL中的系統。

    wslconfig /l
    # 從列表中選擇要卸載的發行版(例如Ubuntu)并鍵入命令
    wslconfig /u Ubuntu

    五、啟用WSL2

    查看現在的wsl狀態。

    PS C:\WINDOWS\system32> wsl -l -v
     NAME            STATE           VERSION
    * ubuntu-18.04    Running         1

    轉換為wsl2

    wsl --set-version ubuntu-18.04 2

    檢查一下。

    剛轉換完,系統是處理注銷關機。所以,我們需要再運行一下wsl,就恢復了。

    PS C:\WINDOWS\system32> wsl -l -v
     NAME            STATE           VERSION
    * ubuntu-18.04    Stopped         2
    PS C:\WINDOWS\system32> wsl
    root@zerolife:/mnt/c/WINDOWS/system32# exit
    logout
    PS C:\WINDOWS\system32> wsl -l -v
     NAME            STATE           VERSION
    * ubuntu-18.04    Running         2

    好了。終于可以使用了。

    完美

網站首頁   |    關于我們   |    公司新聞   |    產品方案   |    用戶案例   |    售后服務   |    合作伙伴   |    人才招聘   |   

友情鏈接: 餐飲加盟

地址:北京市海淀區    電話:010-     郵箱:@126.com

備案號:冀ICP備2024067069號-3 北京科技有限公司版權所有