'ubuntu'에 해당되는 글 4건

  1. 2020.01.07 Ubuntu MariaDB 설치
  2. 2015.08.13 Ubuntu - 디스크 정보 확인
  3. 2012.11.16 Ubuntu - vi 설정 변경
  4. 2011.12.28 Ubuntu - Openssh 설치 및 포트변경

Ubuntu 16.04.6 LTS


MariaDB 10.4 [Stable]


sudo -s

apt-get install software-properties-common

apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8

add-apt-repository 'deb [arch=amd64,arm64,i386,ppc64el] http://nyc2.mirrors.digitalocean.com/mariadb/repo/10.4/ubuntu xenial main'


sudo apt update

sudo apt install mariadb-server


https://downloads.mariadb.org/mariadb/repositories/#mirror=digitalocean-nyc


'Study > Ubuntu' 카테고리의 다른 글

AWS CLI 설치 및 삭제  (0) 2019.09.01
Ubuntu node.js v12.x 설치  (0) 2019.06.03
Ubuntu MongoDB 설치  (0) 2019.06.02
Ubuntu node.js v10.x 설치  (0) 2019.06.02
Ubuntu - 디스크 정보 확인  (0) 2015.08.13
Posted by theqoo
,

다른 툴을 설치하여도 가능하지만 lsblk 명령어로도 확인이 가능하다.


root@ubuntu-web:~# lsblk -io KNAME,TYPE,SIZE,MODEL


가장머신은 Virtual Disk로 나옵니다....



'Study > Ubuntu' 카테고리의 다른 글

Ubuntu MongoDB 설치  (0) 2019.06.02
Ubuntu node.js v10.x 설치  (0) 2019.06.02
https 보안서버 구축 (SSL 사설 인증서 설치)  (0) 2015.05.27
Ubuntu - nginx에 phpmyadmin 설정  (1) 2013.04.01
Ubuntu - MariaDB 설치  (0) 2013.03.24
Posted by theqoo
,

우분투를 설치하고 vi를 쓰다보면 불편하다.

설정을 변경해보자.


1. 홈디렉토리로 이동


[root@ubuntu:~]# cd


2. vi .exrc 명령후 설정값 입력 저장


set autoindent
set number
set bs=2
set nocp


3. source .exrc 명령


4. vi 사용

'Study > Ubuntu' 카테고리의 다른 글

Ubuntu - MariaDB 설치  (0) 2013.03.24
Ubuntu - nginx 컴파일 설치  (0) 2013.03.22
CentOS - eth0 자동 활성화 시키기  (0) 2013.02.23
htop - an interactive process viewer for Linux  (0) 2011.12.28
Ubuntu - Openssh 설치 및 포트변경  (0) 2011.12.28
Posted by theqoo
,

1. 설지 여부 확인
root@ubuntu:~$ dpkg -|lgrep ssh

2. 설치
root@ubuntu:~# apt-get install openssh-server

3. 포트변경
root@ubuntu:~# vi /etc/ssh/sshd_config

위 파을을 열어 밑에 포트번호를 바꾸어 주면된다.

# What ports, IPs and protocols we listen for
Port 22

4. ssh 재시작
root@ubuntu:~# /etc/init.d/ssh restart


'Study > Ubuntu' 카테고리의 다른 글

Ubuntu - MariaDB 설치  (0) 2013.03.24
Ubuntu - nginx 컴파일 설치  (0) 2013.03.22
CentOS - eth0 자동 활성화 시키기  (0) 2013.02.23
Ubuntu - vi 설정 변경  (0) 2012.11.16
htop - an interactive process viewer for Linux  (0) 2011.12.28
Posted by theqoo
,