zoukankan      html  css  js  c++  java
  • Linux命令笔记

    Find命令:

    find ../ -name dblook.log
    find . ! \( -user assentis -o -group assentis \) -exec ls -l {} \;

    参考:

    鳥哥的 Linux 私房菜 -- 第六章、Linux 檔案與目錄管理 (vbird.org)

    find(1) - Linux manual page (man7.org)

    chown (Change Own)

    chown --changes --recursive assentis:assentis .

    CommandDescriptionRelated Link

    uname -aLinux Kernel Version

    lsb_release -aDistribution Information

    whodisplay who is on the system

    wisplays information about the users currently on the machinehttps://askubuntu.com/questions/974718/how-do-i-get-the-list-of-the-active-login-sessions

    analytical options as --until, --since

    apt list --installed

    printenvPrint all environment variables

    envRun command with a temporary environment variable

    ~/.bashrcWe can edit this file to define the environment variable and command alias we want to have after system restart

    /etc/passwdShow all users

    sh

    Switch to another user

    chvt

    Switch to another terminal (tty teletypewriter)

    sudo chvt 1-6

    https://blog.csdn.net/qq_41545647/article/details/108748103

    tty

    Print the file name of the terminal connected to standard input.

    ln

    Make a link

    ps

    report a snapshot of the current processes.

    ps -ef, ps axu

    Ctrl+z将工作放入后台

    Jobs查看后台工作Jobs -l

    fgForeground 恢复后台工作

    ssh-keygen

    OpenSSH authentication key utilityssh-keygen -b 2048 -t rsa

    Convert generated pub format to pem format:

    From <https://man7.org/linux/man-pages/man1/ssh-keygen.1.html>

    ssh-keygen -e -f ado_service_principal2.pub

    Convert RSA Private Key to OpenSSH

    ssh-keygen -p -N "" -f key_file.key

    Generate a public key based on private key

    ssh-keygen -y -f key_file.pub

    openssl

    # Convert generated pub format to pem format:
    openssl rsa -in id_rsa -pubout -out id_rsa.pub.pem
    
    # Generated Certificate:
    openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365
    
    # Decrypt Private Key of the certificate:
    openssl rsa -in key.pem  -out key_decrepted.pem

    New-SelfSignedCertificate

    PowerShell command to generate a new self-signed web certificate

    New-SelfSignedCertificate -DnsName $env:COMPUTERNAME -CertStoreLocation Cert:\LocalMachine\My
    Get-ChildItem -Path Cert:\LocalMachine\My

    az keyvault

    az keyvault secret set --vault-name 'ContosoKeyVault' --name 'SQLPassword' --value 'Pa$$w0rd'
    az keyvault secret show --vault-name 'hejing195' --name 'tf-test-alicloud-access-key'
    az loginaz login --service-principal -u <app-id> -p <password-or-cert> --tenant <tenant>
  • 相关阅读:
    [codeforces contest 1119 F] Niyaz and Small Degrees 解题报告 (树形DP+堆)
    [牛客挑战赛 30D] 小A的昆特牌 解题报告 (组合数学)
    [jzoj 6073] 河 解题报告 (DP)
    Ant Design Pro的windows10安装
    .Net Core在类库中使用当前HttpContext
    .NetCore多文件上传进度的示例
    简单实现上传文件进度条
    动态导入Js文件
    AutoMapper在asp.netcore中的使用
    Asp.Net Core通过HttpStatusCode状态处理响应结果
  • 原文地址:https://www.cnblogs.com/hejing195/p/15758862.html
Copyright © 2011-2022 走看看