Crack a Fedora 25 password with john the ripper easily. This is fun.
To crack a Fedora Core password hash easily, the john the ripper utility will come in handy. This allows cracking of linux passwords without much fuss as long as the password is in the wordlist....
View Article用 Vim 生成有序列表,一个应用 Vim Macro 的例子
实验要求 用 Vim 生成一个 20 行的有序列表,像这样―― line: 1, for ifanrx testing; ... line: 20, for ifanrx testing; 实验结果 步骤解析 格式:键位操作(补充解释说明) i0<esc> (进入 insert mode 插入模式,输入 "0",然后按 esc 键回到 normal mode 普通模式) m1...
View Article谈谈智能手机软件:Linux手机软件
谈谈智能手机软件:linux手机软件 昨天来源:CSDN博客 本文将基于Linux内核的智能手机应用处理器软件简称作Linux手机软件。 1 概述 1.1 为什么要选择Linux平台? 简单说:选择Linux平台的好处就是资金投入少;因为基本上不需要授权费,产品的软件成本也比较低。选择Linux平台的不利之处也是很明显的: 需要很大的研发投入...
View ArticleHow to Setup Docker on Ubuntu Server 16.04
Docker is the most revolutionized technology in virtualization world now a days. Docker is actually an open source project which provides container technology. A container is a light weight VM(virtual...
View ArticleEssentials of Vi editor - part 2
In the previous post we looked at some of the basics of the vi editor. In this post let's walk through searching, replacing and undoing. Search and Replace...
View ArticleEssentials of Vi editor - part 3
In my previous two posts (1 and 2 below) we looked at vi basic and editing. 1. Essentials of Vi editor - part 1 2. Essentials of Vi editor - part 2 In this post let's look at few advanced commands and...
View ArticleBash 补全编程
对于 linuxer 来说,自动补全是再熟悉不过的一个功能了。当你在命令行敲下部分的命令时,肯定会本能地按下Tab键补全完整的命令,当然除了命令补全之外,还有文件名补全。 Bash-completion...
View Article马哥教育网络班25期-第4周作业
1、复制/etc/skel目录为/home/tuser1,要求/home/tuser1及其内部文件的属组和其它用户均没有任何访问权限。 ~]# cp -r /etc/skel/ /home/tuser1~]# cd /home/tuser1tuser1]# ll -a总用量 12drwxr-xr-x. 2 root root 59 12月 22 02:34 .drwxr-xr-x. 6 root...
View Articlefind 详解
find 命令基本用法: find pathname [opotions] [-print | -exec | -ok …] 1、find 基本参数: pathname :find命令所查找的目录路径。(默认当前目录路径) -print :find命令将匹配的文件输出到标准输出。 -exec : find命令对匹配的文件执行该参数所给出的shell命令。相应命令的形式为'command' { }...
View Article从Linux小白到大牛――与狼共舞的日子12(下)
马哥教育网络班21期+第12周课程练习 5、为第4题中的第2个虚拟主机提供https服务,使得用户可以通过https安全的访问此web站点; (1)要求使用证书认证,证书中要求使用的国家(CN)、州(HA)、城市(ZZ)和组织(MageEdu); (2)设置部门为Ops,主机名为www2.stuX.com,邮件为admin@stuX.com; 1.CA生成私钥[root@web ~]# (umask...
View Articlelinux基础命令介绍十四:定时任务
在计算机的使用过程中,经常会有一些计划中的任务需要在将来的某个时间执行,linux中提供了一些方法来设定 定时任务 。 1、 at 命令 at 从文件或标准输入中读取命令并在将来的一个时间执行,只执行一次。 at 的正常执行需要有守护进程 atd : #安装at yum install -y at 或 apt-get install at -y #启动守护进程 service atd start...
View Articleredhat linux swap分区扩展的三种方法
redhat linux swap分区扩展的三种方法 swap 介绍: 当物理内存占用完了后,当系统还需要更多的物理内存时,物理内存中inactive pages ,就move到swap空间。swap 空间是在位于硬盘上的,因此访问速度较物理内存慢。 当机器的物理内存发生变化时,swap 分区也要做相应的扩展: 有三种方法可以对swap 分区进行扩展: 一、扩展正在使用的swap...
View ArticleRaspberry Pi Camera Flash
The Raspberry Pi Camera is a great tool; it allows projects that require a camera to be put together quickly and on a budget. Plus, having a linux back end for a little processing never hurt anybody....
View ArticleHow to upgrade to a new Linux Mint version
How to upgrade to a new linux Mint version There are two main methods to upgrade Linux Mint to a new version. The recommended way, or playing it safe, is to use a new liveDVD to install the new version...
View Article对抗静态分析――番外:文件操作检测
1.文章难易度【★★★】 2.文章作者:penguin_wwy 3.本文参与i春秋社区原创文章奖励计划,未经许可禁止转载 4.阅读基础:linux 【预备~~~起】 老子科二考挂了,哈哈哈哈哈哈哈哈哈哈 【一二三四~~~】 这篇番外主要讲的是一个Linux的特性――Inotify。这个东西的主要作用是检测文件行为,比如读取、写入、创建等等。主要有以下几个API: [C] 纯文本查看 复制代码...
View ArticleN25-第五周作业
第五周 1、显示/boot/grub/grub.conf中以至少一个空白字符开头的行; [root@zf ~]# grep -E "^[[:space:]]+[[:alnum:]]+" /boot/grub/grub.conf root (hd0,0) kernel /vmlinuz-2.6.32-431.el6.x86_64 ro...
View ArticleRaspberry Pi PIXEL desktop now available for PCs, Macs
TheRaspberry Pi might be best known for producing ultra cheap but highly capable single board computers (SBCs), but the Foundation’s dreams of making computing affordable and accessible doesn’t end...
View ArticleN25-第4周作业(用户权限,grep用法)
复制/etc/skel目录为/home/tuser1,要求/home/tuser1及其内部文件的属组和其它用户均没有访问权限. [root@bogon ~]# chmod -R o=―,g=― /home/tuser1/ [root@bogon ~]# chmod -R o=,g= /home/tuser1/ 编辑/etc/group文件,添加组haddop....
View Articleperf-trace and perf-probe and uprobe
perf-trace perf-trace 是内核 tools/perf 提供一个子工具,相对于传统的 strace ,它不用stop目标进程,开销更小。 # dd if=/dev/zero of=/dev/null bs=1 count=500k 512000+0 records in 512000+0 records out 512000 bytes (512 kB) copied,...
View Article