1.ubuntu-14.10-desktop-i386
sudo passwd root
su -
apt-get install -y ssh vim samba system-config-samba
adduser harry
passwd harry
smbpasswd -a harry
/etc/samba/smb.conf
[meihuan]
path = /home
read only = no
browseable = yes
valid user = harry,haisheng,fhl,pumbaa
writable = yes
create mode = 0664
directory mode = 0755
preserve case = true
follow symlinks = yes
root
/usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf
autologin-user=root
autologin-user-timeout=3
allow-guest=false
greeter-show-manual-login=true
greeter-hide-users=true
ubuntu16.04給使用者新增sudo許可權
建立使用者的時候, 將使用者組指定為 root , 使用者其實是沒有 sudo 許可權的。
可以手動修改檔案 /etc/sudoers ,在其中新增
user all=(all)all
但這樣修改風險比較大, 檔案如果改壞, 導致所有使用者的 sudo 許可權都沒了。
比較好的方法是通過命令:
sudo visudo
在命令模式下新增行:
user all=(all)all
然後儲存並退出即可。
ubuntu16 04配置網絡卡
第一步 檢視網絡卡資訊 輸入ifconfig命令檢視網絡卡資訊,下圖紅圈處就是網絡卡名稱。第二步 配置網絡卡檔案 注意 不同的linux系統,網絡卡配置檔案是不同的,這裡ubuntu的網絡卡配置檔案是 etc network inte ces。輸入下面命令進行編輯網絡卡檔案 sudo vi etc ...
ubuntu16 04配置網絡卡
第一步 檢視網絡卡資訊 輸入ifconfig命令檢視網絡卡資訊,下圖紅圈處就是網絡卡名稱。注意 不同的linux系統,網絡卡配置檔案是不同的,這裡ubuntu的網絡卡配置檔案是 etc network inte ces。輸入下面命令進行編輯網絡卡檔案 sudo vi etc network inte...
Ubuntu16 04配置網絡卡
配置網絡卡檔案 注意 不同的linux系統,網絡卡配置檔案是不同的,這裡ubuntu的網絡卡配置檔案是 etc network inte ces。輸入下面命令進行編輯網絡卡檔案 sudo vi etc network inte ces 預設的檔案內容如下 auto lo iface lo inet ...