如何进行linux系列中各种环境的安装集合,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。linux环境安装集合1. 利用VirtualBox安装Linux系统百度百科:Http
如何进行linux系列中各种环境的安装集合,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。
linux环境安装集合
参考文档:http://blog.csdn.net/liaolu2999/article/details/52081438
注意这个所有的东西都选英文,选中文安装的过程中会报错
http://www.linuxidc.com/Linux/2016-08/134580.htm
主机名为:localhost
协助root的普通用户设置为jupiter
当前用户为jupiter密码abcd1234
这个问题就是如何在linux虚拟机中可以复制外面的东西,不过没有实现
http://blog.chinaunix.net/uid-27034868-id-3412024.html
TODO
TODO:使用说明
https://my.oschina.net/u/3424381/blog/888205
utunbu默认禁用了root帐号,要启用root帐号,请在终端里执行:sudo passwd
首先提示你输入当前用户的密码
然后提示你设置root的密码,输入两次新密码,OK
有的时候一定要在Linux的命令中添加sudo,因为即使是root用户登录,也不一定有最高的系统权限
问题
在VirtualBox中无法复制和粘贴外面的内容,所以我们通过ssh登录
安装SSH服务
sudo apt-get install ssh
参考文档:http://www.360doc.com/content/13/1116/17/3777348_329691460.shtml
让用root登录ssh
使用普通用户登录Ubuntu系统,打开命令行窗口
更改root用户密码,命令:sudo passwd root
首先输入当前用户的密码
然后输入root账户的密码
确认root用户的密码
编辑ssh的配置文件,命令:sudo vi /etc/ssh/sshd_config
在Authentication部分,添加“PermitRootLogin yes”
保存数据,退出编辑器
重新启动ssh服务,命令:sudo service ssh restart
然后就可以使用root帐号登录ssh
每当安装完成一次Ubuntu系统,每次使用root帐号通过ssh都无法登录,只能先通过其他的用户登录系统,然后配置root帐号,然后登录
操作步骤
参考文档:http://jingyan.baidu.com/article/8ebacdf02f552b49f65cd5c9.html
实现免密登录
在客户端使用ssh-keygen生成公钥和死钥
将公钥上传到 ~/.ssh/authorized_key文件中即可实现免密登录
从linux服务器上传和下载东西也是非常不方便的,所以我们可以借助工具FileZilla来实现
操作
使用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
常用命令,不过我们用工具不用命令行
sftp username@host ip #登陆sftp服务器 ls #列出远程服务器上当前目录下的文件 cd dir #进入远程服务器上面的dir目录 lcd dir #进入本地dir目录 quit #退出sftp get file #从服务器上面下载文件到本地当前目录 put file #将本地当前目录下的某个文件上传到服务器上 mget file1 file2 #下载多个文件 mput file1 file2 #上传多个文件 #使用!开始代表shell,例如!ls即可以列出本地当 前目录的文件
新办法
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 软件中心安装过 OpenJDK,请先使用如下命令将其删除:sudo apt-get purge openjdk*2、添加 PPA 源sudo add-apt-repository ppa:WEBupd8team/java3、更新下源数据库sudo apt-get update4、安装 oracle Java 8sudo apt-get install oracle-java8-installer5、查看版本:java -version6、设置 Java 8 环境变量:sudo apt-get install oracle-java8-set-default7、java版本切换sudo update-java-alternatives -s java-8-oracle8、卸载jdksudo 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端口进行访问
在图中的指定文件中找到初始化密码
安装jenkins所需的插件,设置用户名为admin,密码abcd1234
貌似有版本问题,只能是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.reposudo rpm --import http://pkg.jenkins-ci.org/redhat/jenkins-ci.org.keyyum -y install java-1.8.0-openjdk*yum install jenkins
官网: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// 设置仓储$ 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
官网:https://about.gitlab.com/downloads/
http://www.tuicool.com/articles/bYbi2mJ这里面貌似有创建新的image的方法
https://yq.aliyun.com/articles/74395?spm=5176.8246799.0.0.7Fp6s9
看完上述内容,你们掌握如何进行Linux系列中各种环境的安装集合的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注编程网操作系统频道,感谢各位的阅读!
--结束END--
本文标题: 如何进行Linux系列中各种环境的安装集合
本文链接: https://lsjlt.com/news/295392.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0