• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            2016年9月27日

            使用 Ubuntu Server  難免會(huì)遇到需要gui的時(shí)候,
            這里介紹一種最簡單的方法

            $sudo tasksel

            這一句就可以了。
            然后會(huì)有桌面列表可以選擇,空格鍵選擇,然后回車。
            等待完成。

            posted @ 2016-09-27 17:04 snowman1101 閱讀(1560) | 評論 (0)編輯 收藏

            2016年6月14日

            今天拿到了 Microsoft Surface 3 ,
            測試一個(gè)EFI程序的時(shí)候總是出問題,
            后來查了一下,發(fā)現(xiàn)在使用EFI_BLOCK_IO 取得外接USB閃存大小的時(shí)候
            也就是 BlkIo->Media->LastBlock 取得的大小會(huì)比實(shí)際的多出來一個(gè)
            估計(jì)是寫固件的人理解出了問題。
            這里是定義
            /**
              Block IO read only mode data and updated only via members of BlockIO
            *
            */
            typedef struct {
              ///
              
            /// The curent media Id. If the media changes, this value is changed.
              
            ///
              UINT32  MediaId;         
               ///
              
            /// TRUE if the media is removable; otherwise, FALSE.
              
            ///    
              BOOLEAN RemovableMedia;
               ///
              
            /// TRUE if there is a media currently present in the device;
              
            /// othersise, FALSE. THis field shows the media present status
              
            /// as of the most recent ReadBlocks() or WriteBlocks() call.  
              
            ///
              BOOLEAN MediaPresent;
              ///
              
            /// TRUE if LBA 0 is the first block of a partition; otherwise
              
            /// FALSE. For media with only one partition this would be TRUE.
              
            ///
              BOOLEAN LogicalPartition;
               ///
              
            /// TRUE if the media is marked read-only otherwise, FALSE.
              
            /// This field shows the read-only status as of the most recent WriteBlocks () call.
              
            ///
              BOOLEAN ReadOnly;
               ///
              
            /// TRUE if the WriteBlock () function caches write data.
              
            ///
              BOOLEAN WriteCaching; 
               ///
              
            /// The intrinsic block size of the device. If the media changes, then
              
            /// this field is updated.  
              
            ///
              UINT32  BlockSize; 
               ///
              
            /// Supplies the alignment requirement for any buffer to read or write block(s).
              
            ///
              UINT32  IoAlign; 
               ///
              
            /// The last logical block address on the device.
              
            /// If the media changes, then this field is updated. 
              
            ///
              EFI_LBA LastBlock; 
              ///
              
            /// Only present if EFI_BLOCK_IO_PROTOCOL.Revision is greater than or equal to
              
            /// EFI_BLOCK_IO_PROTOCOL_REVISION2. Returns the first LBA is aligned to 
              
            /// a physical block boundary. 
              
            ///
              EFI_LBA LowestAlignedLba;
              ///
              
            /// Only present if EFI_BLOCK_IO_PROTOCOL.Revision is greater than or equal to
              
            /// EFI_BLOCK_IO_PROTOCOL_REVISION2. Returns the number of logical blocks 
              
            /// per physical block.
              
            ///
              UINT32 LogicalBlocksPerPhysicalBlock;
              ///
              
            /// Only present if EFI_BLOCK_IO_PROTOCOL.Revision is greater than or equal to
              
            /// EFI_BLOCK_IO_PROTOCOL_REVISION3. Returns the optimal transfer length
              
            /// granularity as a number of logical blocks.
              
            ///
              UINT32 OptimalTransferLengthGranularity;
            } EFI_BLOCK_IO_MEDIA;
            其中那個(gè)LastBlock是這樣說明的
              /// The last logical block address on the device.
            所以應(yīng)該是總的block 數(shù)-1.
            不知道微軟的工程師為什么會(huì)有這樣的錯(cuò)誤

            posted @ 2016-06-14 09:28 snowman1101 閱讀(530) | 評論 (0)編輯 收藏

            2013年3月28日

            前言 
             編譯好 EFI程序后,每次都用U盤到另外一臺(tái)電腦上測試實(shí)在很麻煩,一天下來U盤要插拔很多次
            無意中發(fā)現(xiàn)
            Oracle VM VirtualBox 的系統(tǒng)選項(xiàng)中有個(gè) 支持 EFi 。
            又在網(wǎng)上找了一下發(fā)現(xiàn) VMware Player 也可以支持 EFI
            下面總結(jié)一下方法

            1. 首先到VMWARE官網(wǎng)下載免費(fèi)的 VMware Player 下載
            2.正常安裝VM Player后 創(chuàng)建一個(gè)新的虛擬主機(jī),并且類型選擇 64位的OS
            3.到創(chuàng)建的虛擬機(jī)目錄 找到 .
            vmx文件 用記事本打開 然后添加一行 
            firmware = "efi" 
            這樣你的VM虛擬機(jī)就支持UEFI啟動(dòng)了。


            如果想要測試我們自己編譯的 .EFI 程序的話
            到虛擬主機(jī)的編輯選項(xiàng)中,新添加一個(gè)硬盤,然后類型選擇實(shí)際物理磁盤
            根據(jù)個(gè)人的需要再選擇整個(gè)磁盤或者某一個(gè)分區(qū)
            之后把編譯好的EFI文件復(fù)制到指定的磁盤或者分區(qū)中就可以了。
            要注意的是,開啟虛擬機(jī)的時(shí)候必須保證指定的磁盤/分區(qū)是關(guān)閉的。同樣復(fù)制文件的時(shí)候也要關(guān)閉虛擬機(jī)。






            posted @ 2013-03-28 11:12 snowman1101 閱讀(623) | 評論 (0)編輯 收藏

            僅列出標(biāo)題  
            久久精品国产99国产精品澳门 | 精品免费久久久久国产一区| 久久久国产精品亚洲一区| 久久精品九九亚洲精品| 99久久夜色精品国产网站| 亚洲午夜久久久| 国产精品久久影院| 伊人久久大香线蕉综合5g| 国内精品久久久久久99蜜桃| 久久国产精品二国产精品| 久久九九精品99国产精品| 精品国产青草久久久久福利 | 久久久久人妻一区精品| 欧美国产成人久久精品| 国产韩国精品一区二区三区久久| 久久婷婷五月综合色99啪ak| 99久久超碰中文字幕伊人| 久久AV高潮AV无码AV| 国产精品成人久久久久久久 | 9999国产精品欧美久久久久久| 久久成人小视频| 久久亚洲国产成人精品无码区| 九九精品99久久久香蕉| 中文字幕无码精品亚洲资源网久久| 久久精品国产WWW456C0M| 亚洲国产精品久久久久婷婷软件| 久久精品免费一区二区| 久久久久国产亚洲AV麻豆| 国产成人精品久久综合| 国产精品久久久久天天影视| 久久精品国产99久久无毒不卡 | 久久久久久久综合日本亚洲| 中文字幕乱码久久午夜| 久久人与动人物a级毛片| 亚洲精品高清一二区久久| 色综合久久综合网观看| 欧美综合天天夜夜久久| 国产精品激情综合久久| 久久播电影网| 亚洲国产精品无码久久九九| 国内精品久久久久影院亚洲|