alias

alias命令为常用目录设置别名

泄露秘密 提交于 2020-01-18 09:35:02
vi ~/.bashrc,配置自己需要的各种别名,如: alias blog='cd /www/wwwroot/blog' 添加source ~/.bashrc(添加到~/.bash_profile) 完成上面两步,重开一个终端窗口,通过alias可以查看自己设置的所有别名。直接cdhome就可以到系统根目录,是不是很方便快捷呢。赶紧赞一个吧。。。。 来源: CSDN 作者: qq_27229113 链接: https://blog.csdn.net/qq_27229113/article/details/103770180

nfs服务、计划任务crond服务和shell

£可爱£侵袭症+ 提交于 2020-01-16 20:43:27
一、nfs服务 NFS 是Network File System的缩写,即网络文件系统。一种使用于分散式文件系统的协定,由Sun公司开发,于1984年向外公布。功能是通过网络让不同的机器、不同的操作系统能够彼此分享个别的数据,让应用程序在客户端通过网络访问位于服务器磁盘中的数据,是在类Unix系统间实现磁盘文件共享的一种方法。   NFS 的基本原则是“容许不同的客户端及服务端通过一组RPC分享相同的文件系统”,它是独立于操作系统,容许不同硬件及操作系统的系统共同进行文件的分享。 NFS在文件传送或信息传送过程中依赖于RPC协议。RPC,远程过程调用 (Remote Procedure Call) 是能使客户端执行其他系统中程序的一种机制。NFS本身是没有提供信息传输的协议和功能的,但NFS却能让我们通过网络进行资料的分享,这是因为NFS使用了一些其它的传输协议。而这些传输协议用到这个RPC功能的。可以说NFS本身就是使用RPC的一个程序。或者说NFS也是一个RPC SERVER。所以只要用到NFS的地方都要启动RPC服务,不论是NFS SERVER或者NFS CLIENT。这样SERVER和CLIENT才能通过RPC来实现PROGRAM PORT的对应。可以这么理解RPC和NFS的关系:NFS是一个文件系统,而RPC是负责信息的传输。 1、安装 yum install

vue.config.js配置别名alias、配置生产环境清除console

眉间皱痕 提交于 2020-01-16 13:33:19
vue.config.js配置别名alias、配置生产环境清除console 项目中使用引入文件有时候路径比较深,需要使用"../../../xx.js"这种类似的路劲引入,这种方式比较笨,可以使用webpack的别名alias配置来解决。 首先,先确定项目中是否有path模块: 如果没有path模块需要先安装path npm install path --save 以下为vue.config.js配置 const path = require("path"); function resolve(dir) { return path.join(__dirname, dir); } module.exports = { chainWebpack: config => { config.resolve.alias .set("@", resolve("src")) .set("assets", resolve("src/assets")) .set("components", resolve("src/components")) .set("base", resolve("baseConfig")) .set("public", resolve("public")); }, } 项目开发阶段经常需要console一些测试数据,查看开发过程中遇到的问题

nginx启动web项目

不羁的心 提交于 2020-01-16 08:00:43
1、服务器任何路径新建存放项目文件夹 例如:/home/xtzl_project 将web项目的压缩包存放到xtzl_project目录下 2、新建nginx配置文件所需文件夹 例如:/home/www下新建 xtzl_platform_web文件夹 将步骤1的web项目(tar包)文件复制到/home/www/xtzl_platform_web路径下并解压 3、修改nginx配置文件nginx.conf cd /usr/local/nginx/conf ,修改nginx.conf文件 添加新路径 (1)alias方式 location后面的文件名可与步骤2的文件名xtzl_platform_web不一致,访问时使用location后的文件名 alias后为步骤2的路径 图1 (2)root方式,location后面的名称必须与步骤2的xtzl_platform_web一致 图2 4、修改完配置文件后,重置 /usr/local/nginx/sbin/nginx -s reload 查看进程 ps -ef|grep nginx.conf 5、访问 (1)82为nginx的端口号, xtzl_platform_web为location后面的路径(alias方式) http://192.168.200.62:82/xtzl_platform_web (2)root方式

java签名证书

≡放荡痞女 提交于 2020-01-16 07:06:54
import java.io.FileInputStream; import java.security.KeyStore; import java.security.PrivateKey; import java.security.PublicKey; import java.security.Signature; import java.security.cert.Certificate; import java.security.cert.CertificateFactory; import java.security.cert.X509Certificate; import javax.crypto.Cipher; public class CertificateCoder { public static final String CERT_TYPE="X.509"; /** * 获取私匙 * @param keyStorePath * @param pwd * @param alias * @return PrivateKey 私匙 * @throws Exception */ private static PrivateKey getPrivateKey(String keyStorePath,String pwd,String alias) throws

How to retrieve the “total” variable representing a sum in a resultset

China☆狼群 提交于 2020-01-15 08:44:11
问题 I'm making a JavaFX/SQL program representing Data between clients and clients spending. I am trying to calculate the total client spending by a specific client and output in the Javafx text area. My Transactions table, has Date, Description, Amount, Clientname, and Transaction_ID where Transaction_ID is the primary key. Here is my method "calculate_client_spending" "Result_transaction" is my global TextArea variable: public void calculate_client_spending(){ try { ConnectionClass

认识shell

若如初见. 提交于 2020-01-14 17:56:24
认识shell 一、由来 第一个流行的 shell 是由 Steven Bourne 发展出来的,为了纪念他所以就称为 Bourne shell ,或直接简称为 sh !而后 来另一个广为流传的 shell 是由柏克莱大学的 Bill Joy 设计依附于 BSD 版的 Unix 系统中的 shell ,这个 shell 的语法有点类似 C 语言,所以才得名为 C shell ,简称为 csh !由于在学术 界 Sun 主机势力相当的庞大,而 Sun 主要是 BSD 的分支之一,所以 C shell 也是另一个很重 要而且流传很广的 shell 之一 。 二、现状 /bin/sh (已经被 /bin/bash 所取代) /bin/bash (就是 Linux 默认的 shell) /bin/tcsh (整合 C Shell ,提供更多的功能) /bin/csh (已经被 /bin/tcsh 所取代) 三、默认shell 当我们登录系统会获取默认的shell来进行工作,默认的shell记录在/etc/passwd里 [root@test ~]# vim /etc/passwd 1 root:x:0:0:root:/root:/bin/bash 2 bin:x:1:1:bin:/bin:/sbin/nologin 3 daemon:x:2:2:daemon:/sbin:/sbin

.gitconfig not following bash alias for default editor command?

你说的曾经没有我的故事 提交于 2020-01-14 09:47:46
问题 In my .bash_profile , I have the vim command aliased to /Applications/MacVim.app/Contents/MacOS/Vim . For the following line in my .gitconfig file, [core] editor = vim git runs system vim rather than following the alias specified above. If I manually change it to match the complete path of MacVim's Vim command above, it works fine. Is there any way to make .gitconfig follow the bash alias, rather than having to set the complete MacVim path? (I have all my user config files synchronized across

Alias for function

不想你离开。 提交于 2020-01-14 07:55:28
问题 I want to import some functions from kernel32.dll, but I want to use different names. Example function: [DllImport("kernel32.dll")] private static extern bool ReadProcessMemoryProc64 (...); private static bool BetterReadableAndWriteableName (...) { ReadProcessMemoryProc64(...); } Wrapping the function is what I actually don't want, if there is another way. 回答1: Use the EntryPoint property of DllImportAttribute. [DllImport("kernel32.dll", EntryPoint="ReadProcessMemoryProc64")] private static

Unknown column while using alias mysql

梦想的初衷 提交于 2020-01-14 06:17:10
问题 I am following SQL course from lagunita.satnford.edu . I am doing an exercise on practising queries, i have three tables: Movie ( mID, title, year, director ) Reviewer ( rID, name ) Rating ( rID, mID, stars, ratingDate ) Problem Statement: Find the difference between the average rating of movies released before 1980 and the average rating of movies released after 1980. (Make sure to calculate the average rating for each movie, then the average of those averages for movies before 1980 and