-
Linux学习笔记之Django项目部署(CentOS)----进阶篇
所属栏目:[Linux] 日期:2021-02-23 热度:182
p class="title"一、引入 当我们开发好了一个Django项目之后是需要部署到服务器上的,这样才能正式使用这个项目。之前用了一个运行.sh文件的方法让项目得以在后台运行,其实随着学习的深入,这种方法其实是有点low的,下面介绍今天的新方法。 项目的文件中有[详细]
-
Linux学习笔记之Python3的安装以及创建虚拟环境(CentOS)
所属栏目:[Linux] 日期:2021-02-23 热度:196
安装python3 yum?install?openssl-devel?bzip2-devel?expat-devel?gdbm-devel?readline-devel?sqlite-devel?gcc?gcc-c++??openssl-devel #(建议将这些包都装了,避免后面报错) 创建python3的虚拟环境 ? 此时的python默认已经是python3的版本了! 这样,在cen[详细]
-
Linux学习笔记之如何挂载数据盘
所属栏目:[Linux] 日期:2021-02-23 热度:78
p class="title"一、引入 双11在阿里云买了一台服务器(Linux操作系统,版本:CentOS7.04),配置就是20G的系统盘和40G的数据盘,可是问题来了,当系统初始化登录进去之后,输入:free -h命令并不能看到额外买的数据盘,只能看到20G的系统盘,百度了解了一下[详细]
-
Linux学习笔记之基本指令
所属栏目:[Linux] 日期:2021-02-23 热度:70
p class="little_title"1.ll p class="sub_title"注:详细展示当前文件夹下的所有文件及目录? ,与 ls -al 有异曲同工的作用 p class="little_title"2.free -m/-h p class="sub_title"注:-m:显示当前的内存信息,-m表示以MB为单位显示;-h:以人类能读懂的[详细]
-
Linux VMware新添加网络适配器找不到配置文件问题
所属栏目:[Linux] 日期:2021-02-23 热度:77
VMware centos 新添加网卡没有识别,在做 Linux 实验时经常遇到需要双网卡的情况,VMware 新添加网卡后Linux是不会主动创建 ifcfg-eth* 文件的,重启服务器和重启网络服务也不能出现, 解决方法如下 : ifconfig -a 命令是可以查看到 eth* 信息的,但是没有[详细]
-
调用远程主机上的 RMI 服务时抛出 java.rmi.ConnectException: C
所属栏目:[Linux] 日期:2021-02-23 热度:157
最近使用 jmx 遇到一个问题,client/server 同在一台机器上,jmx client能够成功连接 server,如果把 server 移植到另一台机器上192.168.134.128,抛出如下异常: java.net.ConnectException: Connection refused: connect java.rmi.ConnectException: Conne[详细]
-
linux ss 命令
所属栏目:[Linux] 日期:2021-01-28 热度:164
ss 是 Socket Statistics 的缩写 。ss 命令可以用来获取 socket 统计信息,它显示的内容和 netstat 类似。但 ss 的优势在于它能够显示更多更详细的有关 TCP 和连接状态的信息,而且比 netstat 更快。当服务器的 socket 连接数量变得非常大时,无论是使用 net[详细]
-
Linux 内核空间与用户空间
所属栏目:[Linux] 日期:2021-01-27 热度:83
系统调用、软中断和硬件中断。这三种方式每一种都涉及到大量的操作系统知识,所以这里不做展开。 内核空间 -> 用户空间。如下图所示(此图来自互联网):[详细]
-
linux free 命令
所属栏目:[Linux] 日期:2021-01-27 热度:152
$ -h -s Mem 行(第二行)是内存的使用情况。 Swap 行(第三行)是交换空间的使用情况。 total 列显示系统总的可用物理内存和交换空间大[详细]
-
linux dig 命令
所属栏目:[Linux] 日期:2021-01-27 热度:84
$ dig baidu.com /tr tr tdspan style="font-family: Microsoft YaHei; font-size: 15px"A /td tdspan style="font-family: Microsoft YaHei; font-size: 15px"地址记录,用来指定域名的 IPv4 地址,如果需要将域名指向一个 IP 地址,就需要添加 A 记录。 /t[详细]
-
Ubuntu 中登录相关的日志
所属栏目:[Linux] 日期:2021-01-27 热度:59
$ nick@myserver $ vim /var/log/auth.log $ -f /var/log/btmp $ $ -f /var/log/wtmp. $ reboot $[详细]
-
linux sed 命令
所属栏目:[Linux] 日期:2021-01-27 热度:93
aabbcc Hello world! Hello Jack!Hello China!Hello Nick! $ test.txt # 删除第二行到最后一行 选项 -i $ -i '1d' test.txt $ test.txt # 在第一行下面新增一行,内容为 test.txt # 在最后一行下面新增一行,内容为 , test.txt # 一次增加多行需要使用换行符[详细]
-
linux kill 命令
所属栏目:[Linux] 日期:2021-01-27 热度:94
[options] span style="color: #000000" […] : 把信号发送给列出的所有进程。 options : - span style="color: #000000" : 指定发送给进程的信号,指定信号的名称或号码都可以。 /span-l : 列出所有信号的名称和号码。/pre $ -l /tr tr tdspan style="font-[详细]
-
TeamCity : 安装 Agent
所属栏目:[Linux] 日期:2021-01-27 热度:151
$ $ $ buildAgent.dist.properties buildAgent.properties name=tcagent1 $ cd /var/local/ -R tcuser:tcuser buildagent/ $ #!/bin/ = span style="color: #0000ff"case span style="color: #800000"" span style="color: #800000"$1 span style="color: #8[详细]
-
TeamCity : 安装 Server
所属栏目:[Linux] 日期:2021-01-27 热度:172
$ -xf TeamCity- . . .gz -C ~/ $ ./teamcity-server. start #!/bin/ /etc/init.d/teamcity - startup script =/usr/lib/jdk1. =${JAVA_HOME}/ =.:${JAVA_HOME}/lib:${JRE_HOME}/ =${JAVA_HOME}/ = =-Djava.awt.headless= $ -stop-daemon --start -c tcuser[详细]
-
Ubuntu14.04安装postgresql9.4
所属栏目:[Linux] 日期:2021-01-26 热度:123
安装前的检查 首先查看是否已经安装了旧版本: dpkg -l | postgresql 如果已经安装了某个版本的postgresql,请先卸载。 安装postgresql 添加postgresql源: /etc/apt/sources.list.d/ vim /etc/apt/sources.list.d/pgdb.list 把下面这行数据添加到pgdb.list[详细]
-
linux 定时任务
所属栏目:[Linux] 日期:2021-01-26 热度:186
p style="margin: 0in; font-size: 11.0pt;" lang="zh-CN"span style="font-family: 'Microsoft YaHei'; font-size: 15px;"习惯了使用span style="font-family: Calibri;" windows span style="font-family: 'Microsoft YaHei';"的计划任务,span style="fon[详细]
-
Linux 2.4调度系统分析--转
所属栏目:[Linux] 日期:2021-01-25 热度:168
简介: ?本文详尽地分析了Linux 2.4内核中调度系统的工作原理,特别是i386体系结构下SMP系统的调度表现。通过对2.4调度系统实现原理及其细节的分析,文章在文末指出了2.4调度系统在功能上、实时性上以及多处理机系统表现上存在的不足,为后继的2.6系统的分析[详细]
-
10+ commonly using find command switches with example Unix/L
所属栏目:[Linux] 日期:2021-01-25 热度:194
http://crybit.com/find-command-usage-with-example-unixlinux/ find command is one of the best search tool under UNIX/LINUX. Here I’m discussing some common switches of find command with detailed example. Like the name find,the “find” com[详细]
-
Anatomy of the Linux kernel--转
所属栏目:[Linux] 日期:2021-01-25 热度:142
ref:http://www.ibm.com/developerworks/linux/library/l-linux-kernel/?S_TACT=105AGX52S_CMP=cn-a-l Given that the goal of this article is to introduce you to the Linux kernel and explore its architecture and major components,let's start with[详细]
-
DNS服务器全面解析--转
所属栏目:[Linux] 日期:2021-01-25 热度:183
引用地址:http://pangge.blog.51cto.com/6013757/1273087 基础认知篇 DNS 服务的概述 DNS 是Domain Name System 的缩写,即域名系统。DNS服务主要功能是将域名转换为相应的IP地址,提供DNS服务的系统就是DNS服务器。形如它能够把www.baidu.com这样的域名转[详细]
-
Find command usage in Linux with excellent examples--referen
所属栏目:[Linux] 日期:2021-01-24 热度:125
find searches ?the directory tree rooted at each given file name by evaluating? the ?given expression from left to right,according to the rules of prece dence,until the outcome is known (the left ?hand side is false for? and ?operations,tr[详细]
-
Linux下Makefile的automake生成全攻略--转
所属栏目:[Linux] 日期:2021-01-24 热度:77
http://www.yesky.com/120/1865620.shtml 作为Linux下的程序开发人员,大家一定都遇到过Makefile,用make命令来编译自己写的程序确实是很方便。一般情况下,大家都是手工写一个简单Makefile,如果要想写出一个符合自由软件惯例的Makefile就不那么容易了。?[详细]
-
Basic Data Structures and Algorithms in the Linux Kernel--re
所属栏目:[Linux] 日期:2021-01-24 热度:94
http://luisbg.blogalia.com/historias/74062 Links based on?: ,?,?. ?with comments telling you what you can't find in the textbooks. ?used for?,?,etc. ?are??are used for scheduling,virtual memory management,to track file descriptors and dire[详细]
-
Linux服务器性能评估与优化--转
所属栏目:[Linux] 日期:2021-01-24 热度:139
http://www.itlearner.com/article/4553 一、影响Linux服务器性能的因素 ? 操作系统级 CPU 内存 磁盘 带宽 网络 带宽 程序 应用级 二、系统性能评估标准 table style="width: 571px;" border="1" cellspacing="0" cellpadding="0" tr td rowspan="2" width="[详细]