linux
文章平均质量分 79
龘麤三思
所有的牛逼都来自苦逼;自律更自由
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
给老笔记本安装双系统,太难了(centos+win10)记录一下过程
安装双系统(win10+centos7)遇到的问题以及解决方法的记录原创 2024-07-14 19:02:05 · 771 阅读 · 0 评论 -
linux安装 composer
curl -sS https://getcomposer.org/installer | php mv composer.phar /usr/local/bin/composer ln -s /usr/local/bin/composer /usr/bin/composer原创 2019-05-09 13:26:01 · 220 阅读 · 0 评论 -
centos 7 安装图形界面 和tigervnc
centos 7 安装图形界面 和tigervnc yum update #更新yum源 yum -y groupinstall "X Window System" "GNOME Desktop" #安装图形界面 yum -y install tigervnc-server #安装vncserver vncserver 配置 which vncserver #查到vnc配置文...原创 2019-04-16 20:55:47 · 1163 阅读 · 0 评论 -
oh-my-zsh--shell终端配置
查看系统当前使用的shell,并且看看是否安装过zsh echo $SHELL cat /etc/shells 没有安装 yum -y install zsh #安装zsh cat /etc/shells #查看安装是否成功 chsh -s /bin/zsh #切换shell reboot 安装 oh my zsh wget https://github.com/rob...原创 2019-04-16 15:39:45 · 655 阅读 · 0 评论 -
添加用户and授权root
添加用户and授权root adduser tom #创建用户 passwd tom #设置密码 chmod u+w /etc/sudoers #加可编辑权限 #授权root vim /etc/sudoers 添加如下内容‘tom ALL=(ALL) NOPASSWD:ALL’ 在 ‘root ALL=(ALL) ALL’的下一行 Allow root...原创 2019-04-16 15:16:16 · 503 阅读 · 0 评论 -
yum源安装及配置
1.yum简介 yum 是一个软件包管理器,一般我在安装完一个虚拟机的时候第一时间就是设置它的yum 仓库,因为只有这样我们才可以轻松的安装 redhat 官方提供给我们的各种工具包。所以熟悉和懂得 yum 仓库的配置是非常重要的。 2.yum源安装 (1).先要有一个与你系统合适的iso镜像,最好与系统版本一致。不知道自己系统版本的,使用 uname -a 查看。 ...原创 2018-09-11 22:46:55 · 14176 阅读 · 0 评论 -
ssh 生成公私钥
ssh-keygen -t rsa -f id_rsa -P “” sh -c “$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)”原创 2018-05-24 10:43:40 · 1267 阅读 · 0 评论 -
linux 命令终端提示符显示-bash-4.1#解决方法
-bash-4.1# .bash_profile .bashrc原创 2017-07-22 12:04:46 · 5926 阅读 · 2 评论 -
linux下的svn学习
http://www.cnblogs.com/aLittleBitCool/archive/2011/07/09/2101602.html原创 2017-07-07 15:57:43 · 354 阅读 · 0 评论
分享