Ubuntu 미세먼지 팁들

sudo apt-get install lsb-release scrot

wget http://github.com/downloads/djmelik/archey/archey-0.2.8.deb

sudo dpkg -i archey-0.2.8.deb

archey install

댓글

  1. cudaToolkit install

    https://developer.nvidia.com/cuda-downloads

    답글삭제
    답글
    1. Installation Instructions:

      `sudo dpkg -i cuda-repo-ubuntu1404_8.0.61-1_amd64.deb`

      `sudo apt-get update`

      `sudo apt-get install cuda`

      삭제
  2. sudo apt-get install htop

    sudo apt-get install mc

    sudo apt-get install lynx

    sudo apt-get install slurm

    답글삭제
  3. Hangeul Install

    sudo apt-get install fonts-nanum*

    답글삭제
  4. cuDNN :

    https://developer.nvidia.com/cuDNN

    답글삭제
    답글
    1. Install CuDNN

      Step 1: Register an nvidia developer account and download cudnn here (about 80 MB)

      Step 2: Check where your cuda installation is. For most people, it will be /urs/local/cuda/. You can check it with which nvcc.

      Step 3: Copy the files:

      $ cd folder/extracted/contents$ sudo cp include/cudnn.h /usr/local/cuda/include$ sudo cp lib64/libcudnn* /usr/local/cuda/lib64$ sudo chmod a+r /usr/local/cuda/lib64/libcudnn*

      Check version

      You might have to adjust the path. See step 2 of the installation.

      $ cat /usr/local/cuda/include/cudnn.h | grep CUDNN_MAJOR -A 2

      Notes

      삭제
  5. 파일구조를 보존하면서 라르파일 압축 풀기

    sudo apt-get install unrar

    unrar x -r /home/work/software/myfile.rar

    답글삭제
  6. 폴더 컬러링 하기

    sudo add-apt-repository ppa:costales/folder-color
    sudo apt-get update
    sudo apt-get install folder-color
    After install folder color, restart nautilus file manager with the following command:

    nautilus -q

    답글삭제
  7. 파일사이즈로 지우기

    find . -name "*.gif" -size +1500k -delete

    find . -name "*.gif" -size -1M -delete

    답글삭제
  8. 명령결과 파일에 어팬드:

    th classify.lua model.t7 a1.png >> result.txt

    답글삭제
  9. 맥에서 ll 명령어 사용

    alias ll='ls -lGh'

    in ~/.bashrc

    답글삭제
  10. scp로 우분투 에서 파일 가져오기

    scp ubuntu@192.168.0.35:/mnt/benign_first.tar ~/Desktop/

    답글삭제
  11. TX1 SD카드 마운트

    sudo mount -t msdos /dev/mmcblk0p1 /mnt2

    답글삭제
  12. 자유 메모리 보기

    $ free -m

    답글삭제
  13. 시스템에 부하 주기

    $ stress -c 4
    코어 수

    $ sudo apt-get install stress

    답글삭제
  14. 네트웍 다운로드 모니터링

    $ slurm -i eth0
    $ slurm -i wlan0

    $ sudo apt-get install slurm

    답글삭제
  15. 작성자가 댓글을 삭제했습니다.

    답글삭제
  16. 20 best Ubuntu Theme

    http://www.linuxandubuntu.com/home/20-best-themes-for-ubuntu-in-2017

    답글삭제
  17. 테마 설치 및 변경하기

    http://www.linuxandubuntu.com/installing-themes-in-linux.html

    답글삭제
  18. sudo apt-get install nautilus-open-terminal

    If you want to install it with apturl, use this URL: apt://nautilus-open-terminal

    Then:

    nautilus -q

    답글삭제
  19. You should be able to replace ls *.raw with find . -name "*.raw".
    This way, you can avoid having the wildcard expand into a huge argument list.

    아큐먼트 투 롱 에러날때

    답글삭제
  20. https://github.com/hzeller/timg.git

    jpg, gif viewer for terminal

    답글삭제
  21. Download the repository.
    $ git clone git://github.com/VitaliyRodnenko/geeknote.git

    $ cd geeknote

    # Installation
    $ [sudo] python setup.py install

    # Launch Geeknote and go through login procedure.
    $ geeknote login

    에버노트 터미널 뷰어

    답글삭제
  22. Terminal Install :
    $ brew install newsbeuter

    import opml:
    $ newsbeuter -i export.opml

    run
    $ newsbeuter

    터미널 RSS 리더

    newsbeuter -i ~/Documents/export.opml

    답글삭제
  23. 시동시 자동실행:

    StartUp Application 앱.

    답글삭제
  24. https://github.com/anmoljagetia/Flatabulous.git

    Flat theme for Ubuntu

    답글삭제
  25. sudo do-release-upgrade

    16.04 upgrade in terminal

    답글삭제
  26. 1. Unity Tweak

    sudo install unity-tweak-tool

    답글삭제
  27. 2. chrome

    1. Add Key:
    wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -

    2. Set repository:
    sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'

    3. Install package:
    sudo apt-get update
    sudo apt-get install google-chrome-stable

    답글삭제
  28. 3. VLC player

    % sudo apt-get update
    % sudo apt-get install vlc browser-plugin-vlc

    답글삭제
  29. 5. shotcut (video editor)

    sudo add-apt-repository ppa:haraldhv/shotcut

    sudo apt update
    sudo apt install shotcut

    답글삭제
  30. 7. peek (video to gif )

    sudo add-apt-repository ppa:peek-developers/stable

    sudo apt update && sudo apt install peek

    답글삭제
  31. 9. GitBook Editor (GitBook Workflow)

    $ npm install gitbook-cli -g

    Create a book

    GitBook can setup a boilerplate book:
    $ gitbook init

    If you wish to create the book into a new directory, you can do so by running gitbook init ./directory

    Preview and serve your book using:
    $ gitbook serve

    Or build the static website using:
    $ gitbook build

    답글삭제
  32. 10. Ramme (Instagram client)

    https://github.com/terkelg/ramme/releases

    $ sudo dpkg -i Ramme_3.0.3_amd64.deb

    답글삭제
  33. 12. moc (terminal music player)

    sudo apt-get-install gnome-open-terminal

    sudo apt-get install moc moc-ffmpeg-plugin

    mocp

    답글삭제
  34. 13. Stacer (System Optimizer)

    wget https://github.com/oguzhaninan/Stacer/releases/download/v1.0.4/Stacer_1.0.4_amd64.deb

    sudo dpkg --install Stacer_1.0.4_amd64.deb

    답글삭제
  35. super user nautilus

    sudo apt-get install gksu

    gksu nautilus

    답글삭제
  36. 모든 상요자 프로세스 찾고 죽이기

    ps -u username

    pkill -u username

    답글삭제

댓글 쓰기

이 블로그의 인기 게시물

파이썬으로 Homomorphic Filtering 하기

파이썬으로 2D FFT/iFFT 하기: numpy 버전