Jekyll

목차

Jekyll
Jekyll설치 준비물
Jekyll빠른

Jekyll

Jekyll(재킬)은 마크다운으로 정적인 페이지를 만들어 주는 site generator이다.

Jekyll설치 준비물

  • Ruby (3미만 2.5.0이상)
  • GCC (gnu c compiler )
  • Make (gnu Make)
  • RubyGems
  • bundle
  • jekyll

윈도우에서의 설치

윈도우에서 jekyll을 돌리기 위해서는 wsl로 ruby를 설치 하면 안된다. jekyll을 wsl에서 돌아가지 않는다. 따라서 공식 홈페이지에서 받거나 msys2를 이용해서 설치 하는 방법이 권장 된다. msys2를 설치하거나 윈도우용 Ruby를 설치 하면 gnu도 같이 설치 된다.

리눅스에서의 설치

sudo apt-get install ruby-full

데비안 우분투의 경우 위의 명령어로 Ruby를 설치 할수 있다.

sudo apt install build-essential 

데비안, 우분투의 경우 위의 명령어로 gnu devtools을 설치가 가능하다.

bundler 및 Jekyll 설치

gem install bundler jekyll

Jekyll 빠른 시작

Jekyll프로젝트를 만들기 위해서 아래의 명령어를 입력한다.

jekyll new blog

blog라는 폴더가 긴다. (blog 대신 프로젝트 명을 입력하면된다.
blog폴더에 들어가서 다음의 명령어를 입력하면 jekyll이 실행 된다.

cd blog
bunler exec jekyll serve

이제 웹브라우저에 127.0.0.1:4000을 치고 들어가면 jekyll로 만들어진 페이지가 나온다…/../../6943a02ccccc6fb6757d385adda7a61be4f9123e.svg00:09:00+0000

2023

spice simulator list

less than 1 minute read

SPICE(Simulation Program with Integrated Circuit Emphasis)란 전자 회로를 시뮬레이션 하기 위한 프로그램이다. 국내에 잘 알려진 SPICE로는 Cedance사의 PSpice가 있다. 하지만 PSpice외에 다른 SPICE프로그램도 다수 ...

데비안 계열 리눅스 deb 파일 설치

less than 1 minute read

데비안 계열 os에서는 *.deb(debian software package)라는 패키지를 사용한다. 이를 설치하기 위해서는 dpkg 명령어를 이용한다.

Passive Filter

less than 1 minute read

전자회로에서 필터란 특정 대역의 신호(Signal)을 통과시키는 것을 말합니다.

Uart Protocol

less than 1 minute read

UART Protocol Spec Serial Protocol Asynchronous Full Duplex Send LSB Bit First IDLE : High Signal Start Bit : Low Signal 1 Tick Stop Bit ...

GCC -I Option

less than 1 minute read

GCC option -I는 Include의 약자로 Include 즉 *.h 파일이 모여 있는 위치 또는 *.h파일의 경로를 입력 합니다.

Edge Detect Circuit

less than 1 minute read

디지털 시스템에서는 한개의 엣지를 입력 받아야 하는 경우가 생긴다. 예를 들어서 UART에서 Start Bit를 감지하는 경우 같은 것이다.

Function and Task

less than 1 minute read

Verilog에서 function구조는 다음과 같다.

XOR

less than 1 minute read

Circuit

SWITCH

less than 1 minute read

Circuit with TEST

2NAND

less than 1 minute read

Circuit

PWM

less than 1 minute read

PWM (Pluse width modulation)

리눅스에서 sudo가 안될때 해결 법

less than 1 minute read

간혹 리눅스에서 sudo를 치고 password를 입력 해도 sudoer를 확인해 보라는 안내메시지만 뜨고 sudo 명령어를 통해서 root에서 사용을 못할 떄가 있다. 이런 경우는 현제 세션의 user가 추가된 그룹이 /etc/sudoers에서 sudo명령어를 사용할 권한이 없...

Back to Top ↑

2022

nvim csharp

less than 1 minute read

#nvim에 c# 세팅 nvim에 c# lsp를 세팅하는 과정을 알아본다.

Windowsnvim

less than 1 minute read

- layout: posts title: Jekyll date: 2022-10-13 categories: nvim

Nvim

less than 1 minute read

nvim information

Jekyll

less than 1 minute read

목차

Back to Top ↑