linux basic commands】的更多相关文章

1. man - an interface to the on-line reference manuals $man man 2. apt - advanced package tool SEE ALSO: apt-cache, apt-get, apt.conf, sources.list $apt-cache search mysql 3.sudo - execute a command as another user (sudo allows a permitted user to ex…
Network Basic Commands Summary set or modify hostname a)     temporary ways hostname NEW_HOSTNAME, but if you reboot your system, it will disabled. b)    permanent ways: edit "/etc/sysconfig/network" HOSTNAME, then restart system, it will effect…
Welcome to Linux world! Introduction and Basic commands--Part one J.C 2018.3.11 Chapter 1 What Is Linux? Linux is a Unix-like open source operating system. At the core of the operating system is the Linux kernel. It acts as the intermediary between t…
Just sharing what I have learned about postgres recently. Here is a part of basic commands you may need. Enjoy it! Before try the following commands, please ensure you are followed the introductions on github: https://github.com/thoughtworks/vagrant-…
线程->信号信号,是unix和linux系统响应某些条件而产生的一个事件.接收到该信号的进程会相应地采取一些行动.raise生成表示一个信号的产生catch捕获表示接受到一个信号的产生:信号是由于某些错误条件而产生,内存段冲突,浮点处理器错误或者非法指令等.它们由shell和终端处理器生成引起中断,可以作为进程见传递消息或修改行为的一种方式,明确地由一个进程发送给另一个进程.无论什么情况,它们的编程接口都是相同的,信号可以被生成,捕获,响应,忽略.signal.h====== sigabort…
cat misc. cat xxx | more cat xxx | less cat > xxx , create a file xxx cat -n xxx | more with line number information. cat aaa.txt >> bbb.txt, the aaa.txt will be appened to bbb.txt tail a file with auto update when file change tail -f /var/log/sy…
套接字是一种通信机制,凭借这种机制client/server系统的开发者既可以在本地机器上进行,也可以跨网络进行. 1,服务器应用程序用系统调用socket来创建一个套接字,他是系统分配给服务器进程的类似文件描述符的资源,不能与其他进程共享.2,服务器进程会给套接字起个名字, 本地套接子的名字是linux文件系统的文件名,一般放在/tmp,或者/usr/tmp目录中, 对于网络套接子,他的名字是与客户链接的特定网络有关的服务器标识符(端口号,访问点),这个标识符运行linux将 进入的针对特定端…
在信号量和互斥量例子中,我们都是在程序推出之前利用pthread_join对线程进行再次同步:如果想让thread想创建它的线程返回数据我需要这么做:问题:我们有时候既不需要第二个线程向main线程返回信息,也不想让main线程等待它的结束: 就是说main线程工作的时候创建了第二个thread,第二个thread线程工作到结束,不必向main线程写新的信息:================脱离线程,detaced thread 修改线程属性或调用pthread_detach方法来解决=====…
互斥量,运行程序元锁住某个对象,使得每次只能有一个线程访问它:为了控制对关键代码的访问,必须在进入这段代码之前锁住一个互斥量,然后在完成操作之后解锁它 :基本函数与用于信号量的函数非常相似#include <pthread.h>int pthread_mutex_init(pthread_mutex_t *mutext, const pthread_mutexattr_t *mutexattr);int pthread_mutext_lock(pthread_mutex_t *mutex);i…
直接使用一个共享变量,来是两个线程之间进行切换是非常笨拙而且没有效率的:信号量--互斥量--这两者是相互通过对方来实现的:比如,如果想控制某一时刻只有一个线程可以访问一些共享内存,使用互斥量要自然一些: 但是控制一组相同的对下的访问时,比如同5条可用的电话线中分配1条给某个可用的线程,那么使用计数信号量:------------------------------------- 信号量,是一个特殊类型的变量,它可以被增加或减少,但对其的关键访问被保证是原子操作,及时一个多线程程序也是如比: 意味…
/************************************************************************* > File Name: thread1.c > Author: > Mail: > Created Time: 2016年03月26日 星期六 22时37分44秒 ************************************************************************/ #include<…
Linux 1◆ 提供连接     2◆ connection baidu.com 3◆ vm tools install Reboot    …
一般习惯把 shell 脚本语言和 shell 解释器统称为 shell,用 shell 脚本语言编写的程序简称脚本. shell 解释器 是用 c 语言写一个应用程序,它是用户使用 Unix / Linux 的桥梁,通过调用系统核心的大部分功能来执行任务. 可以通过在 shell 解释器交互界面敲入一行行指令让 shell 解释器执行任务,也可以让 shell 解释器 调用脚本执行任务. shell 解释器有很多种,常见的有bash.sh.csh.ksh等.其中 bash 是 linux 默认…
1.Basic Operations 5+6 3-2 5*8 1/2 2^6 1 == 2 %false ans = 0 1 ~= 2 %true ans = 1 1 && 0 %AND ans = 0 1 || 0 %OR ans = 1 xor(1,0) %ans = 1 PS1('>> '); %change the command prompt info a = 3 %show a = 3 in screen a = 3 %not show a = 3 in scree…
介绍课程: 中级: 初级:系统基础 中级:系统管理.服务安全及服务管理.Shell脚本: 高级: MySQL数据库: cache & storage 集群: Cluster lb: 4layer 7layer ha: 分布式: zookeeper 分布式文件系统 虚拟化技术: xen kvm Openstack:IAAS云: 运维工具: ansible puppet(ruby), saltstack(python) 监控工具: zabbix 大数据处理: hadoop spark, storm…
EDIT mode to GENERAL mode: press ESC general mode: CLOSE FILE :q!    :force to close the file but not save :wq! :force to save and close the file :q    : close the file but not save :wq  : save and close the file ENTER EDIT MODE i :insert a charactor…
-rw-r--r-- [d]: content [-]: file [l]: link file [b]: interface device for storage in a device file [c]: the serial port device in the device file, such as keyboard, mouse…
kafka-server-start.sh config/server.properties & kafka-server-stop.sh kafka-topics.sh    --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic kafkatopic kafka-topics.sh --list --zookeeper localhost:2181 kafka-console-prod…
问:看了一些关于dd和cp的命令,但是我始终无法明白dd和cp之间有什么不同?不是都可以看成是备份的作用么?还有什么区别呢?答:1.dd是对块进行操作的,cp是对文件操作的. 2.比如有两块硬盘,要将第一块硬盘内的数据复制到第二块硬盘上 dd if=/dev/hda of=/dev/hdc bs=4 count=1024 bs表示每次复制的块大小 count表示要复制的次数 这样第二块硬盘的数据布局和第一块是完全一样的(扇区级别,每块扇区上的数据和第一块硬盘都是一样的) cp只是将第一个硬盘的数…
https://www.tecmint.com/linux-network-configuration-and-troubleshooting-commands/ http://www.tldp.org/LDP/GNU-Linux-Tools-Summary/html/c8319.htm https://likegeeks.com/linux-network-commands/ netstat -r…
当我们需要一次执行多个命令的时候,命令之间需要用连接符连接,不同的连接符有不同的效果.下面我们总结一下,加以区分. (1)  ; 分号,没有任何逻辑关系的连接符.当多个命令用分号连接时,各命令之间的执行成功与否彼此没有任何影响,都会一条一条顺序执行下去. 在shell中各个指令中要加分号,但是在XX.sh中,换行和分号是一样的效果 (2) || 逻辑或,当用此连接符连接多个命令时,前面的命令执行成功,则后面的命令不会执行.前面的命令执行失败,后面的命令才会执行. (3) && 逻辑与,当用…
一:date 语法: 打印日期:date [OPTION].....  [+FORMAT] 设定日期:date [MMDDhhmm] [[cc][YY][.ss] 创建带实时日期的文件 touch $(date +%F).log  --->2018-5-29.log touch $(date +%F-%T).log  --->2018-5-29-15:33:12.log 二:alias alias:获取所有已定义的命令别名 alias NAME='COMMAND' alias ll='ls -…
Cat (串联) 命令是Linux/Unix开源系统中比较常用的一个命令.我们可以通过Cat命令创建一个或多个文件,查看文件内容,串联文件并将内容输出到终端设备或新的文件当中,这篇文章我们将会以实例的方式讲解Linux中cat命令一些简便的用法. The cat (short for "concatenate") command is one of the most frequently used command in Linux/Unix like operating systems…
Linux YUM (Yellowdog Updater, Modified) Commands for Package Management In this article, we will learn how to install, update, remove, find packages, manage packages and repositories on Linux systems using YUM (Yellowdog Updater Modified) tool develo…
FROM: http://www.tecmint.com/13-basic-cat-command-examples-in-linux/ The cat (short for “concatenate“) command is one of the most frequently used command in Linux/Unix like operating systems. cat command allows us to create single or multiple files,…
When you are using Linux command line frequently, using the history effectively can be a major productivity boost. In fact, once you have mastered the 15 examples that I’ve provided here, you’ll find using command line more enjoyable and fun. 1. Disp…
1:Kali Version root@kali-node01:~# cat /etc/os-release PRETTY_NAME="Kali GNU/Linux Rolling" NAME="Kali GNU/Linux" ID=kali VERSION="2018.2" VERSION_ID="2018.2" ID_LIKE=debian 2:Kali Kernal Version root@kali-node01:~#…
来源:51CTO 作者:51CTO       大家都认为 Linux 默认是安全的,我大体是认可的 (这是个有争议的话题).Linux默认确实有内置的安全模型.你需要打开它并且对其进行定制,这样才能得到更安全的系统.Linux更难管理,不过相应也更灵活,有更多的配置选项. 对于系统管理员而言,让产品的系统更安全,免于骇客和黑客的攻击,一直是一项挑战.这是我们关于“如何让Linux系统更安全” 或者 “加固Linux系统“之类话题的第一篇文章.本文将介绍 25个有用的技巧和窍门 ,帮助你让Lin…
一.安装redis 用超级管理员身份运行: $ mkdir /usr/local/redis #redis安装目录 $ cd /usr/local/src #安装包下载目录 $ wget http://download.redis.io/releases/redis-3.0.5.tar.gz #下载redis的包 $ tar xzf redis-3.0.5.tar.gz #解压 $ ln -s redis-2.6.14 redis #建立一个链接 $ cd redis $ make PREFIX…
Linux https://www.linux.com/ https://youtu.be/CE4WeUNFX2g https://www.youtube.com/watch?v=JzsLkbwi1LA…