ExTiX 18.9 发布,基于 Ubuntu 的桌面 Linux 发行
ExTiX 18.9 已发布,ExTiX 是基于 Ubuntu 的桌面 linux 发行,其中包含备用桌面环境和应用程序。该版本使用的是 LXQt 桌面而不是 Ubuntu 的默认 GNOME 桌面环境。 ExTiX 18.9 LXQt DVD 64 位基于 Debian 和 Ubuntu 18.04.1 Bionic Beaver。 原始系统包括桌面环境 Gnome。 删除 Gnome 后,安装了...
View ArticleTest Internationalization improvements coming in Fedora 29
Fedora 29 development and testing is currently in full swing, and Fedora 29 features a range of improvements to Internationalization (i18n) support. Major improvements in Fedora 29 include better font...
View Article用 Supervisor 实现进程守护,在异常退出时自动重启
程序启动后,有些是以daemon的形式运行,但在意外退出后,如果不能及时重新启动,会有比较严重的影响。 比如Zimg在图片处理中由于某些图片处理失败,会导致zimg进程挂掉,影响正常的服务提供,并且只能在服务失效后才能察觉到。必须采用一个进程守护来时刻保证zimg进程挂掉后,再自动重新启动。本篇介绍Supervisor工具来进行Zimg进程的守护。...
View ArticleLinux中sudo,su与su -命令的区别
在linux系统中,由于root的权限过大,一般情况都不使用它。只有在一些特殊情况下才采用登录root执行管理任务,一般情况下临时使用root权限多采用su和sudo命令。 前言 su命令就是切换用户的工具,怎么理解呢?比如我们以普通用户tom登录的,但要添加用户任务,执行useradd...
View ArticleLinus:就算我被巴士撞了,Linux内核也不会有事
在 8 月 31 日举行的北美开源峰会上,linux 的创造者 Torvalds 在与 VMware 的首席开源官 Dirk Hohndel 的谈话中分享了他对 Linux 未来的看法。他称如果他被巴士撞了他不担心内核会受到冲击。虽然这个假设不太吉利,但却很有道理,为什么呢? 工作流程比代码更重要 “我真正担心的是补丁的流程,工作流程比代码更重要,”Torvalds...
View ArticleRemote Editing Go Code With Emacs
I’ve been in an uncomfortable place for a while: these days I primarily write Go code, but on a machine where I don’t have a Go toolchain (don’t ask). As a result, I basically SSH/tmux into a dev...
View ArticleHow do you refer to an error in Bash / Shell Script?
Is it possible to refer to an error? Here is my code: read dir mkdir /Users/Dillon/$dir And if the directory is already there, it tells me mkdir: /Users/Dillon/(dir): File exists . Is there a way to...
View ArticleRaspberry Pi’s PoE HAT ships for $20, tosses in a free fan
Raspberry Pi Trading has launched a $20 Power-over-Ethernet HAT board for the Raspberry Pi 3 Model B+ that delivers up to 15W and ships with a small fan. The Power-over-Ethernet HAT that was promised...
View Article8 Linux commands for effective process management
Generally, an application process' lifecycle has three main states: start, run, and stop. Each state can and should be managed carefully if we want to be competent administrators. These eight commands...
View ArticleCentos 7使用Samba实现文件共享
SMB(Server Messages Block,服务器消息块)协议,是微软和英特尔在1987年共同推出的,主要是解决局域网内的文件或打印机等资源的共享问题,这使得在多个主机之间共享文件变得越来越简单。...
View ArticleResurrecting a Raspberry Pi for HomeKit Webcam
Hi There, Recently I attended the quite excellent Wellington Home Automation Hackers meetup here in Wellington, New Zealand. Inspired by the talks, I decided I'd dig back out my raspberry Pi and get...
View Article如何给Azure云服务器扩展云磁盘
首先切换到磁盘页面,然后点击添加数据磁盘按钮: 然后选定存储容器,这里使用的是存储账户 Blob,然后点击确定按钮: 主机缓存切换为“读/写”,然后点击保存: 这样就添加好了。 挂载磁盘 接下来回到 linux 服务器下,我们需要将磁盘进行挂载。 首先 SSH 连接到服务器,然后使用 dmesg 命令来查找磁盘: dmesg | grep SCSI 输出类似如下: [0.728389] SCSI...
View ArticleCTF挑战130分 | Rickdiculously 1.0
Vulnhub简介 Vulnhub是一个提供各种漏洞环境的靶场平台,供安全爱好者学习渗透使用,大部分环境是做好的虚拟机镜像文件,镜像预先设计了多种漏洞,需要使用VMware或者VirtualBox运行。每个镜像会有破解的目标,大多是Boot2root,从启动虚机到获取操作系统的root权限和查看flag。 官网: https://www.vulnhub.com 下载链接...
View ArticleAwesome MySQL Shell Prompt
A month ago, I wrote a blog on how you can configure the mysql Shell prompt to suit your needs. One thing I did not go into details with are the prompt templates prompt_256pl.json and...
View ArticleOpenPGP Mail Encryption and Related Tools For Linux, Windows
OpenPGP is a email encryption standard used by a lot of people. This standard is defined by OpenPGP Working Group of the Internet Engineering Task Force (IETF). The standard is proposed with RFC 4880 ....
View ArticleWhat’s free at Linux Academy this month?
We support others in their mission to learn and grow and are adding new ways for our students to learn what they need to succeed. By adding free cloud training to our Community Membership, students...
View ArticleLinux kernel 权限提升安全漏洞(CVE-2018-16276)
linux kernel 权限提升安全漏洞(CVE-2018-16276) 发布日期:2018-09-03 更新日期:2018-09-04 受影响系统: Linux kernel < 4.17.7 描述: CVE(CAN) ID: CVE-2018-16276 Linux kernel是开源操作系统Linux所使用的内核。 Linux kernel...
View ArticleRHEL7系统管理之内核管理
1. Kdump工具 Kdump的工作机制是在内核崩溃时, 通过kexec 工具由BIOS启动一个备用内核, 由备用内核执行一系列任务,保存内存中崩溃内核的状态, 供后续故障分析用。 本文默认AMD或INTEL X86_64架构, RHEL7系统环境. 1.1 内核管理工具Kdump安装...
View ArticleLinux下script命令录制、回放和共享终端操作
另一篇终端会话共享的文章: linux终端会话实时共享(kibitz) 使用script命令录制,使用scriptreplay播放录制的操作。共享终端的操作,则需要使用命名管道来实现。 1.1 录制 [root@xuexi ~]# cd /tmp [root@xuexi tmp]# script -t 2> timing.log -a output.session # 开始录制 Script...
View Articlecentos yum安装mysql5.7
#centos yum安装mysql5.7 在测试开发环境,初始化一个数据库,通常选择yum来安装,本文将常见的mysqlyum源及安装方式梳理 系统环境 centos6或者centos7 查看系统是否已经安装mysql rpm -qa | grep mysql yum list installed | grep mysql 卸载当前数据库 centos6.x或者centos7.x : yum -y...
View Article