VirtualBox安裝Debian

一、下載Debian的dvd1,按照http://www.jb51.net/os/85858.html網上教程安裝Debianphp

  1.一、我建立了20G的虛擬磁盤,分區的時候我分了3個區,2G交換空間,7.5G的/,12G的/homehtml

  1.二、中間有一步好像是升級apt-get的時候沒取消的話會卡在下載的地方,就是下載很慢,具體能夠試一下python

二、更新Debian的更新源linux

  從網上搜索更新源,換掉關鍵字便可ubuntu

三、安裝VirtualBox加強包vim

  3.一、點擊菜單欄裏面設備裏面的安裝加強功能,直接去Root終端,cd /media/cdrom,運行sh ./VBoxLinuxAdditions.run,會提示一些錯誤bash

  3.二、gcc的錯誤,apt-get gcc,安裝的時候太精簡了,連gcc都沒有了this

  3.三、make的錯誤,apt-get make,仍是安裝的時候太精簡了spa

  3.四、(不必定會致使問題,此處先再安裝一次試一下)提示以下錯誤:The headers for the current running kernel were not found. If the following module compilation fails then this could be the reason. .net

    apt-get install linux-headers-$(uname -r)

    具體可見https://forums.virtualbox.org/viewtopic.php?f=3&t=47248

  

  安裝完成後好像不會自動移除加強包這個虛擬磁盤,手工移除一下!

四、設置共享文件夾

  4.一、在設置裏面設置共享文件夾,起一個名字,比如Share,不設置自動掛載,要不掛載一個很差記的名字

  4.二、首先mkdir /mnt/share,其次執行mount -t vboxsf Share /mnt/share,沒出現錯誤更好,在VirtualBox 4.3.10中會出現錯誤,解決辦法以下:

    sudo ln -s /opt/VBoxGuestAdditions-4.3.10/lib/VBoxGuestAdditions /usr/lib/VBoxGuestAdditions

    具體可見https://www.virtualbox.org/ticket/12879

  4.三、把上面那個monut語句寫入到/etc/rc.local中,這樣子開機共享文件夾就會自動掛載到/mnt/share了

五、安裝vim,一直自帶的vi有問題,ubuntu,debian這種東西

六、用戶不在sudoers中的解決辦法

  大概是修改/etc/sudoers文件,在文件中找到root  ALL=(ALL) ALL,在該行下添加提高權限的用戶信息,如:

  root    ALL=(ALL)       ALL
  user    ALL=(ALL)       ALL

  具體可見http://blog.csdn.net/attagain/article/details/11987297

七、添加終端快捷鍵

  打開system setting --> keyboard --> ShortCut

  在這裏咱們須要手動添加一個快捷鍵,好比說添加一個名爲Terminal的,在Command下添加「gnome-terminal」,而後肯定,在外面映射快捷鍵便可……好比「Ctrl+Alt+T」

八、安裝神器SublimeText

  6.一、用tar -jxvf加壓.tar.bz2文件

  6.二、設置連接sudo ln -s ~/program/sublime_text_3/sublime_text /usr/bin/sublime_text

九、設置大小寫不敏感

  echo "set completion-ignore-case on" >> ~/.inputrc

十、升級Python

  具體可見http://blog.csdn.net/my2010sam/article/details/12156821

  10.一、下載get-pip.py,運行下載安裝pip,不要從軟件源裏面下載安裝,太老了

  10.二、提示zipimport.ZipImportError: can't decompress data; zlib not available

    sudo apt-get install zlib1g-dev

    編輯Modules/Setup文件

    vim Modules/Setup

    找到下面這句,去掉註釋

    #zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz

  10.三、提示cannot import name HTTPSHandler

    sudo apt-get install libssl-dev

十一、No module named apt-pkg

  sudo apt-get autoremove python-apt

  sudo apt-get install python-apt

十二、pip: command not found

  vim ~/.bashrc

  export PATH="/usr/local/python27/bin:$PATH"

  source ~/.bashrc

  

  sudo pip: command not found

  1.編輯/etc/sudoers文件把Defaults  env_reset改爲Defaults  !env_reset

  2.編輯.bashrc,最後添加alias sudo='sudo env PATH=$PATH'

 

  能夠搜索sudo 環境變量查看具體狀況!

相關文章
相關標籤/搜索