Feng erdong's Blog

Life is beautiful

Ubuntu Configuration

| Comments

apt-get

  • Setup proxy for apt-get
1
sudo gedit /etc/apt/apt.conf #This is a new file

add Acquire::http::Proxy "http://username:password@proxyhost:port/" to this file

Gnome desktop

  • Create application shortcut
1
2
  sudo apt-get install --no-install-recommends gnome-panel
  gnome-desktop-item-edit ~/Desktop/ --create-new

Setup ftp server

  • Install vsftpd sudo apt-get install vsftpd

  • Edit /etc/vsftpd.conf

    • anonymous_enable
    • write_enable
    • ftpd_banner
  • Save the file and restart ftp service by sudo /etc/init.d/vsftpd restart

  • Copy files you want to shared to folder /srv/ftp

Comments