linux U盤啟動盤安裝ubuntu

2021-07-22 13:17:24 字數 3118 閱讀 7113

簡要:介紹u盤在linux環境下安裝ubuntu,配置網路,並允許root遠端訪問,更新http

第一部分 安裝步驟

b.   df  -h  檢視磁碟掛載情況,找到u盤掛載的磁碟,一般是/dev/sdb

cd  /home/downloads

製作完成後使用如下命令推出

u盤即可:

sudo eject /dev/sdx

d  .將u盤插到物理機上,按照提示安裝。

第二部分   配置網路

在安裝時若不能自動配置網路可以稍後自行配置。

ubuntu命令列下的網路配置:假設網絡卡為eth0(外網),預設eth0為第一塊網絡卡

auto   lo

iface  lo   inet   loopback

如果以

dhcp

方式配置網絡卡,則在/etc/network/inte***ce新增:

auto   eth0 

iface   eth0   inet   dhcp

auto eth0

iface eth0 inet static     //指定為static

address ***.***.***.***       //ip位址

netmask ***.***.***.***       //子網掩碼

network ***.***.***.***      //這個……網路?有沒有勻可

boardcast ***.***.***.***     //廣播有沒有勻可

gateway ***.***.***.***     //閘道器

eg

我的ubuntu

網路初始化設定:

檢視網路配置情況

enp3s0f0  link encap:ethernet  hwaddr 00:1e:67:e6:c0:29        

enp3s0f3  linkencap:ethernet  hwaddr 00:1e:67:e6:c0:2a   

檢視可用網路埠,然後進行配置:將enp3s0f0 這個埠設定為動態ip登入

root@ubuntu-daisy:~# cat /etc/network/inte***ces

root@ubuntu-daisy:~#

ethtool enp3s0f0     //查詢enp3s0f0對應網口基本設定

settings for enp3s0f0:

link detected: no

root@ubuntu-daisy:~#

ethtool enp3s0f3    //

檢視enp3s0f3

對應網口基本設定

settings for enp3s0f3

link detected: yes

root@ubuntu-daisy:~#

dhclient enp3s0f3

rtnetlink answers: file exists

然後再 ifconfig

ping 10.239.129.229   若可以ping 說明網路設定成功

root@ubuntu-daisy:~#

vim /etc/network/inte***ces   

新增以下黃顏色內容,將

enp3s0f3

設定為dhcp

source /etc/network/inte***ces.d/*

# the loopback network inte***ce

auto lo

iface lo inet loopback

auto   enp3s0f3           //

新增網口

設定為dhcp

iface enp3s0f3  inet  dhcp

root@ubuntu-daisy:~#

ifconfig enp3s0f3     //ip

設定成功

enp3s0f3  linkencap:ethernet  hwaddr 00:1e:67:e6:c0:2a

inet addr:***.***.***.***

bcast:***.***.***.***  mask:255.255.254.0

配好後,

service network restart就ok

第三部分 允許root使用者遠端訪問

客戶端通過

ssh遠端連線到

ubuntu伺服器,前提是ubuntu已經安裝了openssh軟體

(新建root使用者並設定密碼,方便其他user使用root登入操作)

使用ubuntu 的 root 登入系統:

ps  -ef | grep sshd

編輯 vim /etc/ssh/sshd_config 檔案,搜尋

root,將 permit root login  的值改為yes

root賬戶設定了密碼,需要更改

permit empty passwords為 no。然後:wq儲存檔案退出

然後重啟

ssh服務,如下:

service  ssh restart

.bashrc - the individual per-interactive-shell startup file.這個檔案主要儲存個人的一些個性化設定,如命令別名、路徑等。

完成後軟體更新一下  (環境變數

及 http  :env|grep http )

MacOS 製作 Linux U盤啟動盤

筆記本為macbook,剛開出學習linux的時候,經常需要製作u盤啟動盤來給舊機器重灌系統 相信linux初學者都經歷過這個不斷重灌的過程吧o o,哈哈 在這裡記錄一下mac系統命令行製作u盤系統盤過程。將 iso 檔案轉換為 macos 下的 dmg 檔案 網上教程說也可以不轉,直接使用 hdi...

製作fat格式的linux U盤啟動盤

說明 此方法製作的啟動盤為fat格式,不需要格式化為ext2格式 不需要用usb boot等軟體先做成dos啟動u盤 資源所需 syslinux,我的是3.63 linux安裝盤,我的是redhat9 第一張光碟 方法 1.將u盤格式化為fat,fat32沒試不知是否行 2.解壓syslinux 3...

Mac上製作Linux U盤啟動盤記錄

1 將iso檔案轉換為mac下的dmg檔案,也可以不轉直接使用 hdiutil convert format udrw o centos 7 x86 64 1611 centos 7 x86 64 1611.iso2 插入u盤並且找到u盤的裝置路徑 diskutil list dev disk0 i...