随笔分类 -  Linux / Linux_CentOS

1 2 下一页
CentOS7下安装VSCode,打造shell开发环境
摘要:一,VSCode安装 https://code.visualstudio.com/docs/setup/linux 二,安装VSCode中各个插件: https://www.zhihu.com/tardis/zm/art/199187317?source_id=1005 注意:shell-forma 阅读全文
posted @ 2023-07-16 22:44 sunylat 阅读(1222) 评论(0) 推荐(0)
CentOS - 设置打开终端快捷键
摘要:在系统设置中找到键盘,拉到最下面,点击添加按钮,随后里面分别输入下面内容: Open Terminal /bin/gnome-terminal 参考: https://blog.csdn.net/u012667477/article/details/84766061 阅读全文
posted @ 2022-05-14 08:17 sunylat 阅读(170) 评论(0) 推荐(0)
CnetOS7 - 控制台方式启动
摘要:CnetOS7以前版本: 方法一:不修改默认启动方式root模式下:init 3 -->切换到命令行模式(并没有修改默认启动方式)(折中做法,每次这么操作很令人烦躁)root模式下:init 5 -->切换到图形界面 CentOS7 [lwh@lwh ~]$ su root Password: [r 阅读全文
posted @ 2022-03-16 22:17 sunylat 阅读(173) 评论(0) 推荐(0)
Linux - JDK的安装和配置!
摘要:1,首先在官网下载Linux系统的jdk到本地 Oracle JDK15下载地址:https://www.oracle.com/java/technologies/javase-jdk15-downloads.html 如果下载deb或者rpm包,则下面步骤的2、3、4可以忽略,安装完毕后查找JDK 阅读全文
posted @ 2020-09-18 11:55 sunylat 阅读(615) 评论(0) 推荐(0)
Linux - 安装snap软件商店!!
摘要:snap软件商店管理搜索和安装软件还是比较方便的,但是我的Ubuntu18里面没有它,所以安装一下!! 安装之前确保已经安装了snap,在控制台中输入命令:snap,如果未安装,则返回信息会有安装命令,按照对应命令安装就可以了!! 安装snap软件商店: sudo snap install snap 阅读全文
posted @ 2020-09-17 14:39 sunylat 阅读(5529) 评论(0) 推荐(0)
Linux - snap安装软件错误的解决方法!!
摘要:Ubuntu版本:18.04 今天在安装GoLand的时候,感觉安装满,中途取消了一下,打算再次结果发现出现了错误提示: cannot install "Goland": snap "Goland" has "install-snap" change in progress 即使重新启动了Ubunt 阅读全文
posted @ 2020-09-17 14:36 sunylat 阅读(3381) 评论(0) 推荐(0)
Linux - 图形界面与命令行界面(终端)切换!!
摘要:CentOS:7 、8 图形界面: ctrl+alt+F2 命令行界面(终端) ctrl+alt+F6 Ubuntu:8 图形界面: ctrl+alt+F1 命令行界面(终端) ctrl+alt+F6 阅读全文
posted @ 2020-09-14 14:04 sunylat 阅读(745) 评论(0) 推荐(0)
CentOS - 加入sudo列表,解决非root账号无法执行带sudo命令问题!!
摘要:CentOS版本:8.2 假设我要用的账号为:test 默认安装完毕后,使用非root账号执行带sudo的命令,想获取管理员权限执行此命令,发现无法执行,提示: test is not in the sudoers file, This incident will be reported. 解决方法 阅读全文
posted @ 2020-09-14 13:48 sunylat 阅读(880) 评论(0) 推荐(0)
Ubuntu - Windows和Linux类似功能的目录对照
摘要:仅供参考自从Windows Vista之后Windows的目录结构调整过(最大的差别是"我的文档"没了),以Windows 10的为准如有疏漏或错误欢迎补正 欢迎补充内容用户文件夹vs主目录Windows: C:\Users\用户名 C:\Users这个文件夹在中文的文件管理器中显示的是"用户" 但 阅读全文
posted @ 2020-09-13 15:14 sunylat 阅读(1243) 评论(0) 推荐(0)
Ubuntu - AngrySearch 类似Windows下的EveryThing的工具 !!
摘要:EveryThing无疑是Windows下最佳搜索工具,那么Linux是否也有呢?AngrySearch就是一款这样的工具!! 官网: https://github.com/DoTheEvo/ANGRYsearch Debian 9.0 的软件包: 64位:https://ftp.gwdg.de/p 阅读全文
posted @ 2020-09-13 12:53 sunylat 阅读(1501) 评论(0) 推荐(0)
Linux - sudo和su的区别
摘要:一,sudo: Sudo (substitute user [或 superuser] do),是一种程序,用于类Unix操作系统如BSD,Mac OS X,以及GNU/Linux以允许用户透过安全的方式使用特殊的权限运行程序 (通常为系统的超级用户)。 原理: 在sudo于1980年前后被写出之前 阅读全文
posted @ 2020-09-11 12:22 sunylat 阅读(453) 评论(0) 推荐(0)
Linux - sehll编程的好工具!!!
摘要:一直以来对sehll编程的工具不满意,没有合适的开发工具,今天终于找到了比较好的sehll编程工具,那就是大名鼎鼎的IDEA!!!IDEA中有一个插件,叫 "shell script" ,这个插件默认就安装了,它就是sehll编程用的!!! 一,shell script的介绍: https://ww 阅读全文
posted @ 2020-08-29 11:39 sunylat 阅读(1297) 评论(0) 推荐(0)
PHP7 - 用composer安装ramsey/uuid失败的解决方法!
摘要:操作系统:CentOS 7 执行命令: php composer.phar install 执行结果失败,换成下面命令: composer update 随后执行成功!! 参考: https://segmentfault.com/q/1010000015656320 阅读全文
posted @ 2020-01-29 12:51 sunylat 阅读(993) 评论(0) 推荐(0)
CentOS 7 - 安装Python 3
摘要:Enable Software Collections (SCL) Software Collections, also known as SCL is a community project that allows you to build, install, and use multiple v 阅读全文
posted @ 2019-07-24 16:46 sunylat 阅读(503) 评论(0) 推荐(0)
CentOS - Eclipse安装Shelled
摘要:一,下载Shelled: https://sourceforge.net/projects/shelled/ 二,打开Eclipse,以离线方式安装: Help->Install New Software,add->Archive,选择下载的zip包,随后就可以安装了。 参考: https://bl 阅读全文
posted @ 2019-07-24 16:21 sunylat 阅读(350) 评论(0) 推荐(0)
CentOS 7 - 安装Eclipse
摘要:一,以Root身份登入CentOS 7:比较简单是使用Root身份进行操作,下面是如何 。 https://www.cnblogs.com/sunylat/p/11236845.html 二,安装Eclipse。 Prerequisites Open a terminal (Applications 阅读全文
posted @ 2019-07-24 13:54 sunylat 阅读(1008) 评论(0) 推荐(0)
CentOS 7 - 以root身份登入Gnome
摘要:新版的7.0很多资料没有,为了安全,linux是禁止root登录到桌面,但为了方便又想用root登录到桌面,在网上找了找,基本上都是这这一篇: http://shaoguangleo.blog.163.com/blog/static/227798320121022270901/ 但是在7.0中是没有 阅读全文
posted @ 2019-07-24 11:21 sunylat 阅读(6760) 评论(0) 推荐(0)
Linux目录结构说明
摘要:文件系统层级标准(filesystem hierarchy standard,FHS)。 http://www.pathname.com/fhs/pub/fhs-2.3.html 以下是对这些目录的解释: /bin:bin是Binary的缩写, 这个目录存放着最经常使用的命令。 /boot:这里存放 阅读全文
posted @ 2019-07-12 10:08 sunylat 阅读(308) 评论(0) 推荐(0)
CentOS 7 - 切换工作区
摘要:CTRL+ALT+上下方向键 阅读全文
posted @ 2019-07-12 09:44 sunylat 阅读(983) 评论(0) 推荐(0)
CentOS 7 - 修改时区为上海时区
摘要:1、查看时间各种状态: Local time: 四 2014-12-25 10:52:10 CSTUniversal time: 四 2014-12-25 02:52:10 UTCRTC time: 四 2014-12-25 02:52:10Timezone: Asia/Shanghai (CST, 阅读全文
posted @ 2019-06-28 10:30 sunylat 阅读(8820) 评论(0) 推荐(0)

1 2 下一页