linux tips

1.限速的那点事

scp -l 200 -P portnum [email protected]:files   ./(单位为bit)

wget -q -t 0 -w 30 --limit=60k  url/file (单位可指定)

2.定时任务那点事

crontab -e (编辑)

-l (列出当前的任务)

临时

at    (at 时间  命令  ctrl + D 结束)

atq 查询当前任务列表

atrm

at 13:10

> /bin/command

ctrl + D

此处需要绝对路径

3.链接(快捷方式)的那点事

lndir  -silent  源文件夹 目的文件夹

ln -s 源   目的   (此处需要绝对路径) (软连接)

文件夹无法创建硬连接

4.linux交互那点事

mesg 控制终端是否接收消息

write 指定一个在线用户接收消息

wall  向所有在线用户广播

mseg y/mseg n  (打开或关闭终端消息)

wall "messages"

$write root pts/0

$"message"

$Ctrl+C

5.系统设置(开机自启等)的那点事

ntsysv

setup (红帽系)

6.其他

lsof -i :portnumber  -t

-t  只输出进程号   用于管道命令

bash_completion bash命令参数补全

直接 yum

yum install bash_completion

无密码登录

ssh-keygen -t  rsa

scp ~/.ssh/id_rsa.pub  [email protected]:.ssh/id_rsa.pub

时间: 2024-09-28 02:21:11

linux tips的相关文章

[linux tips] puppet client ssl 证书过期

问题: [[email protected] .ssh]# puppet agent -tv Warning: Unable to fetch my node definition, but the agent run will continue: Warning: SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed: [CRL has expired fo

马哥Linux学习之Linux背景和主要发行版篇

Linux是一种 类Unix计算机操作系统的统称,简单的说来就是Linux内核+GNU工程的各种工具和数据库.Linux包括各种Linux的发行版,其实也就是为达到不同的目的而制作(目的包括对不同计算机结构的支持,对一个具体区域或语言的本地化,实时应用或嵌入式)的不同版本.   Linux的由来.在1991年4月,芬兰大学生linus因不满其教授对其教学用系统Minix(此教学系统又是Andrew Tannebaum教授为了不受AT&T许可协议的约束,为教学科研而开发的)不能作任何改动的态度,自

Enable a SQL Server Trace Flag Globally on Linux

https://www.mssqltips.com/sql-server-tip-category/226/sql-server-on-linux// Microsoft has recently released SQL Server to run on Linux servers. Sometimes we need to enable a trace flag globally on SQL Server and in this tip I will demonstrate how to

Linux virtualization and PCI passthrough

Processors have evolved to improve performance for virtualized environments, but what about I/O aspects? Discover one such I/O performance enhancement called device (or PCI) passthrough. This innovation improves performance of PCI devices using hardw

Virtio: An I/O virtualization framework for Linux

The Linux kernel supports a variety of virtualization schemes, and that's likely to grow as virtualization advances and new schemes are discovered (for example, lguest). But with all these virtualization schemes running on top of Linux, how do they e

Linux系统批量配置脚本

系统批量配置脚本使用手册 使用要求 linux操作系统(RHEL,kylin,凝思磐石均可用) 本地计算机expect命令可用 ssh.scp命令可用 脚本组成及功能说明 引导脚本 - config.sh 该脚本会引导整个脚本组合的执行,提示用户输入远程计算机IP地址(范围)及root密码. 系统配置脚本 - sysinfo-collect.sh 该脚本中可以自行定制需要在远程计算机上执行的命令,配合引导脚本及响应脚本使用,可以完成的任务有: 在远程计算机批量执行命令: 修改远程计算机配置文件:

Posts Tagged ‘This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register问题的解决办法

HowTo Install redhat package with YUM command without RHN February 26, 2014 in Redhat / Linux Tips and TricksTags: build local repository, build redhat local repository, HowTo Install redhat package with YUM command without RHN, This system is not re

system v和posix的共享内存对比

参考 http://www.startos.com/linux/tips/2011012822078.html 1)Linux和所有的UNIX操作系统都允许通过共享内存在应用程序之间共享存储空间. 2)有两类基本的API函数用于在进程间共享内存:System v和POSIX.  (当然,还有mmap,属于POSIX的) 3)这两类函数上使用相同的原则,核心思想就是任何要被共享的内存都必须经过显示的分配. 4)因为所有进程共享同一块内存,共享内存在各种进程间通信方式中具有最高的效率. 5)内核没有

Django(3): mysql

参考:https://docs.djangoproject.com/en/1.9/intro/tutorial02/ 1. 打开mysite/settings.py ( 注:自增 auto_increment ) 2. 修改DATABASES 'default' 为自己的DB (vi 命令: u 撤销 ctrl+r 前进) (vi命令: ctrl+b,ctrl+f, j,k 翻页) old: (note: 时区https://en.wikipedia.org/wiki/List_of_tz_da