Skip to content

Instantly share code, notes, and snippets.

@HoriLiu
Last active November 28, 2018 18:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save HoriLiu/6e7a4617b23f6223f54b5f3ca5629606 to your computer and use it in GitHub Desktop.
Save HoriLiu/6e7a4617b23f6223f54b5f3ca5629606 to your computer and use it in GitHub Desktop.
Debian budgie-desktop
#Get debian-testing-amd64-netinst.iso in
http://cdimage.debian.org/cdimage/daily-builds/daily/arch-latest/amd64/iso-cd/
#Setup OS then Reboot
https://github.com/neurite/debian-setup/wiki/Debian-Installation
#Install Budgie Desktop
sudo apt-get update
sudo apt-get install gdm3 budgie-desktop synaptic gedit gnome-tweak-tool xfce4-terminal
sudo systemctl enable gdm3
sudo systemctl start gdm3
sudo apt-get install open-vm-tools variety numix-gtk-theme numix-icon-theme neofetch
#For Wired Networks are Unmanaged
#If you want NetworkManager to handle interfaces that are enabled in /etc/network/interfaces:
Set managed=true in /etc/NetworkManager/NetworkManager.conf
Restart NetworkManager:
/etc/init.d/network-manager restart
#Reboot after configuring auto-login setting
sudo gedit /etc/gdm3/daemon.conf
Set AutomaticLoginEnable=true
Set AutomaticLogin=YOUR_USER_NAME
#Archlinux only: Uncommenting the "WaylandEnable=false" line in /etc/gdm/custom.conf fixed the issue.
#http://askubuntu.com/questions/691585/copy-paste-and-dragdrop-not-working-in-vmware-machine-with-ubuntu
1. sudo apt-get autoremove open-vm-tools
2. Install VMware Tools by following the usual method (Virtual Machine--> Reinstall VMWare Tools)
3. Reboot the VM
4. sudo apt-get install open-vm-tools-desktop
5. Reboot the VM, after the reboot copy/paste and drag/drop will work!
#VirtualBox
apt-get update
apt-get upgrade -y
apt-get dist-upgrade -y
#ref https://www.blackmoreops.com/2014/06/10/correct-way-install-virtualbox-guest-additions-packages-kali-linux/
sudo apt-get install build-essential linux-headers-$(uname -r)
mount | grep cdrom
cp -r /media/cdrom0 /tmp/
cd /tmp/cdrom0
sh VBoxLinuxAdditions.run
#if no copy/paste, use mini browser to login github gist
sudo apt-get install midori
#Install Google Chrome
#Open the Terminal then use Wget to download public key,
wget https://dl-ssl.google.com/linux/linux_signing_key.pub
sudo apt-key add linux_signing_key.pub
#Use below command to append google list to sources
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
#Now update local package and install chrome stable version
sudo apt-get update
sudo apt-get install google-chrome-stable
#Install Visual Studio Code
#Proxy setting for curl, add line to .curlrc file
proxy = user:password@proxy:port
#Gnome Setting Network panel to edit&new add proxy server for downloading marketplace extensions(First)
sudo apt-get install curl
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg
sudo sh -c 'echo "deb [arch=amd64] http://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list'
sudo apt-get update
sudo apt-get install code
#Use fcitx rime
#記得ibus-rime在BudgieArch無法正常上字此處暫不用, 而Ubuntu/Debian安裝的rime package沒有內建注音,所以另外安裝bopomofo注音輸入法
sudo apt-get install fcitx-rime librime-data-bopomofo
#im-config 選擇fcitx, fcitx setting必須把EN-US輸入掛第一優先
#修改default.custom.yaml 加上bopomofo 並重新部署
#Tray icon字形過小時, 右鍵圖示重新開始可變大
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment