您好,登錄后才能下訂單哦!
如何進(jìn)行Linux系列中各種環(huán)境的安裝集合,相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。
linux環(huán)境安裝集合
百度百科:http://jingyan.baidu.com/article/b2c186c8caaf72c46ff6ff7a.html
參考文檔:http://blog.csdn.net/liaolu2999/article/details/52081438
注意這個(gè)所有的東西都選英文,選中文安裝的過(guò)程中會(huì)報(bào)錯(cuò)
http://www.linuxidc.com/Linux/2016-08/134580.htm
主機(jī)名為:localhost
協(xié)助root的普通用戶設(shè)置為jupiter
當(dāng)前用戶為jupiter密碼abcd1234
這個(gè)問(wèn)題就是如何在linux虛擬機(jī)中可以復(fù)制外面的東西,不過(guò)沒(méi)有實(shí)現(xiàn)
http://blog.chinaunix.net/uid-27034868-id-3412024.html
TODO
TODO:使用說(shuō)明
https://my.oschina.net/u/3424381/blog/888205
utunbu默認(rèn)禁用了root帳號(hào),要啟用root帳號(hào),請(qǐng)?jiān)诮K端里執(zhí)行:sudo passwd
首先提示你輸入當(dāng)前用戶的密碼
然后提示你設(shè)置root的密碼,輸入兩次新密碼,OK
有的時(shí)候一定要在Linux的命令中添加sudo,因?yàn)榧词故莚oot用戶登錄,也不一定有最高的系統(tǒng)權(quán)限
問(wèn)題
在VirtualBox中無(wú)法復(fù)制和粘貼外面的內(nèi)容,所以我們通過(guò)ssh登錄
安裝SSH服務(wù)
sudo apt-get install ssh
參考文檔:http://www.360doc.com/content/13/1116/17/3777348_329691460.shtml
讓用root登錄ssh
使用普通用戶登錄Ubuntu系統(tǒng),打開命令行窗口
更改root用戶密碼,命令:sudo passwd root
首先輸入當(dāng)前用戶的密碼
然后輸入root賬戶的密碼
確認(rèn)root用戶的密碼
編輯ssh的配置文件,命令:sudo vi /etc/ssh/sshd_config
在Authentication部分,注釋掉“PermitRootLogin without-password”
在Authentication部分,添加“PermitRootLogin yes”
保存數(shù)據(jù),退出編輯器
重新啟動(dòng)ssh服務(wù),命令:sudo service ssh restart
然后就可以使用root帳號(hào)登錄ssh
每當(dāng)安裝完成一次Ubuntu系統(tǒng),每次使用root帳號(hào)通過(guò)ssh都無(wú)法登錄,只能先通過(guò)其他的用戶登錄系統(tǒng),然后配置root帳號(hào),然后登錄
操作步驟
參考文檔:http://jingyan.baidu.com/article/8ebacdf02f552b49f65cd5c9.html
實(shí)現(xiàn)免密登錄
在客戶端使用ssh-keygen生成公鑰和死鑰
將公鑰上傳到 ~/.ssh/authorized_key文件中即可實(shí)現(xiàn)免密登錄
從linux服務(wù)器上傳和下載東西也是非常不方便的,所以我們可以借助工具FileZilla來(lái)實(shí)現(xiàn)
操作
使用sftp功能需要在ssh的配置文件/etc/ssh/sshd_config中添加如下配置文本,以SLES 10.3為例:
Subsystem sftp /usr/lib64/ssh/sftp-server
然后service ssh restart
重啟ssh就OK了
參考文檔:https://zhidao.baidu.com/question/646621162747500445.html
常用命令,不過(guò)我們用工具不用命令行
sftp username@host ip #登陸sftp服務(wù)器 ls #列出遠(yuǎn)程服務(wù)器上當(dāng)前目錄下的文件 cd dir #進(jìn)入遠(yuǎn)程服務(wù)器上面的dir目錄 lcd dir #進(jìn)入本地dir目錄 quit #退出sftp get file #從服務(wù)器上面下載文件到本地當(dāng)前目錄 put file #將本地當(dāng)前目錄下的某個(gè)文件上傳到服務(wù)器上 mget file1 file2 #下載多個(gè)文件 mput file1 file2 #上傳多個(gè)文件 #使用!開始代表shell,例如!ls即可以列出本地當(dāng) 前目錄的文件
新辦法
apt install nodejs
apt install npm
npm install -g n
n lts
tj大神:https://github.com/tj/n
參考文章:http://www.cnblogs.com/cike8899/p/5954553.html
老辦法
http://www.linuxidc.com/Linux/2016-09/135487.htm
http://jingyan.baidu.com/article/25648fc18ee5bd9190fd0058.html
操作
PPA方式: 1、如果你在 Ubuntu 軟件中心安裝過(guò) OpenJDK,請(qǐng)先使用如下命令將其刪除: sudo apt-get purge openjdk* 2、添加 PPA 源 sudo add-apt-repository ppa:webupd8team/java 3、更新下源數(shù)據(jù)庫(kù) sudo apt-get update 4、安裝 Oracle Java 8 sudo apt-get install oracle-java8-installer 5、查看版本: java -version 6、設(shè)置 Java 8 環(huán)境變量: sudo apt-get install oracle-java8-set-default 7、java版本切換 sudo update-java-alternatives -s java-8-oracle 8、卸載jdk sudo apt-get remove oracle-java8-installer
參考文檔:http://www.linuxdiyf.com/linux/22044.html
老辦法
http://blog.csdn.net/yebhweb/article/details/55098189
wget http://download.oracle.com/otn-pub/java/jdk/8u121-b13/e9e7ea248e2c4826b92b3f075a80e441/jdk-8u121-linux-x64.tar.gz
yum -y install java-1.8.0-openjdk*
參考文檔:https://wiki.jenkins-ci.org/display/JENKINS/Installing+Jenkins
中文參考文檔:http://blog.csdn.net/Mungo/article/details/52453544
http://www.linuxdiyf.com/linux/22000.html
安裝完畢之后可以登錄host:8080端口進(jìn)行訪問(wèn)
在圖中的指定文件中找到初始化密碼
安裝jenkins所需的插件,設(shè)置用戶名為admin,密碼abcd1234
貌似有版本問(wèn)題,只能是Java jdk1.8版本
http://stackoverflow.com/questions/21338721/gpg-no-valid-openpgp-data-found
https://www.google.com/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=ubuntu16.4%E5%AE%89%E8%A3%85jkens
sudo wget -O /etc/yum.repos.d/jenkins.repo http://jenkins-ci.org/redhat/jenkins.repo sudo rpm --import http://pkg.jenkins-ci.org/redhat/jenkins-ci.org.key yum -y install java-1.8.0-openjdk* yum install jenkins
官網(wǎng):https://docs.docker.com/engine/installation/linux/ubuntu/
安裝步驟
// 刪除舊版本 $ sudo apt-get remove docker docker-engine // 增加額外插件 $ sudo apt-get update $ sudo apt-get install \ linux-image-extra-$(uname -r) \ linux-image-extra-virtual // 設(shè)置倉(cāng)儲(chǔ) $ sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ software-properties-common $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - $ sudo add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) \ stable" // 安裝docker $ sudo apt-get update $ sudo apt-get install docker-ce $ sudo docker run hello-world
刪除 docker的鏡像及工作目錄
rm -rf /var/lib/docker
dockerhub的node鏡像中中有python2.7.9
http://blog.csdn.net/mungo/article/details/51322665
https://my.oschina.net/ghm7753/blog/653303
https://my.oschina.net/ghm7753/blog/653264
官網(wǎng):https://about.gitlab.com/downloads/
http://www.tuicool.com/articles/bYbi2mJ這里面貌似有創(chuàng)建新的image的方法
https://yq.aliyun.com/articles/74395?spm=5176.8246799.0.0.7Fp6s9
看完上述內(nèi)容,你們掌握如何進(jìn)行Linux系列中各種環(huán)境的安裝集合的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。