Views 186 Votes 0 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

How to remove imagemagick from Ubuntu 16.04 (Xenial Xerus)


Uninstall imagemagick

To remove just imagemagick package itself from Ubuntu 16.04 (Xenial Xerus) execute on terminal:

sudo apt-get remove imagemagick

Uninstall imagemagick and it's dependent packages

To remove the imagemagick package and any other dependant package which are no longer needed from Ubuntu Xenial.

sudo apt-get autoremove imagemagick

Purging imagemagick

If you also want to delete configuration and/or data files of imagemagick from Ubuntu Xenial then this will work:

sudo apt-get purge imagemagick

To delete configuration and/or data files of imagemagick and it's dependencies from Ubuntu Xenial then execute:

sudo apt-get autoremove --purge imagemagick

More information about apt-get remove

Advanced Package Tool, or APT, is a free software user interface that works with core libraries to handle the installation and removal of software on Debian, Ubuntu and other Linux distributions. APT simplifies the process of managing software on Unix-like computer systems by automating the retrieval, configuration and installation of software packages, either from precompiled files or by compiling source code.

apt-get is the command-line tool for handling packages, and may be considered the user's "back-end" to other tools using the APT library.

apt-get remove is identical to install except that packages are removed instead of installed. Note that removing a package leaves its configuration files on the system. If a plus sign is appended to the package name (with no intervening space), the identified package will be installed instead of removed.

See Also

How to remove imagemagick package from Ubuntu 16.04 (Xenial Xerus)


https://howtoinstall.co/en/ubuntu/xenial/imagemagick?action=remove


워드프레스에서 일부 플러그인이 imagemagick 을 사용하는 것 같았다.

이것을 지우고 난 뒤 해당 플러그인 동작을 안했...(__);;


#imagemagick #워드프레스 #워드프레스플러그인

기존대댓글
추가시작 대댓글시작
대댓글끝 추가끝


  1. 리눅스 Htop (Linux Process Monitoring) 사용법

    Category리눅스 Views1407 Votes1
    1. Htop란 Htop란 텍스트모드 대화식 프로세스 뷰어로 MS 윈도우의 '작업관리자'와 비슷하며 cpu 사용량, 메모리 사용량 등 리눅스 운영체제에서 시스템 자원을 비쥬얼적으로 모니터링이 가능합니다. 다양한 기능을 가지면서 손쉽세 사용할 수 있다는 것이 Hto...
    Read More
  2. http://faq.hostway.co.kr/Linux_Mail/3484http://faq.hostway.co.kr/Linux_Mail/3484 1. 메일 큐 전체 비우기 # postfix flush 또는 postfix -f 2. 현재 쌓인 메일 확인 # mailq 3. 메일큐 전체 삭제 # postsuper -d ALL 4. 메일큐에서 deferred 된 메일만 삭...

    리눅스 postfix 메일에서 queue 관리

    Category리눅스 Views152 Votes0
    http://faq.hostway.co.kr/Linux_Mail/3484http://faq.hostway.co.kr/Linux_Mail/3484 1. 메일 큐 전체 비우기 # postfix flush 또는 postfix -f 2. 현재 쌓인 메일 확인 # mailq 3. 메일큐 전체 삭제 # postsuper -d ALL 4. 메일큐에서 deferred 된 메일만 삭...
    Read More
  3. Linux, 프로세스 확인(ps,pstree) ps명령어란 현재 리눅스시템에서 사용중인 프로세스의 실행상태를 파악하고 점검하는 명령어이다. 간단하게ps라는 명령어만 사용할시에는 현재 사용자가 실행한 프로세스에 대해서만 출력한다. [root@os1 ~]#ps PID TTYTIME C...

    리눅스 pstree 현재 사용자 프로세스 확인

    Category리눅스 Views189 Votes0
    Linux, 프로세스 확인(ps,pstree) ps명령어란 현재 리눅스시템에서 사용중인 프로세스의 실행상태를 파악하고 점검하는 명령어이다. 간단하게ps라는 명령어만 사용할시에는 현재 사용자가 실행한 프로세스에 대해서만 출력한다. [root@os1 ~]#ps PID TTYTIME C...
    Read More
  4. How to remove imagemagick from Ubuntu 16.04 (Xenial Xerus) Uninstall imagemagickTo remove just imagemagick package itself from Ubuntu 16.04 (Xenial Xerus) execute on terminal: sudo apt-get remove imagemagick Uninstall imagemagick and it's de...

    리눅스 How to remove imagemagick from Ubuntu 16.04 (Xenial Xerus)

    Category리눅스 Views186 Votes0
    How to remove imagemagick from Ubuntu 16.04 (Xenial Xerus) Uninstall imagemagickTo remove just imagemagick package itself from Ubuntu 16.04 (Xenial Xerus) execute on terminal: sudo apt-get remove imagemagick Uninstall imagemagick and it's de...
    Read More
  5. 리눅스 top 에서 실행 중인 프로세스에서 어떤 파일이 사용되는지 파악하는 방법

    Category리눅스 Views58 Votes0
    lsof -p 18644 혹은 /proc/18644/fd 에서 FD 확인하세용 lsof -u opeanut 유저명으로 프로세스 확인하는 방법 #lsof 만약 lsof 했는데 아무런 반응이 없다면, lsof를 설치해줘야 합니다. https://zetawiki.com/wiki/%EB%A6%AC%EB%88%85%EC%8A%A4_lsof_%EC%84%A...
    Read More
  6. https://extrememanual.net/10557 https://extrememanual.net/10557 NGINX 설정 예시1. abc.com 가상 호스트 server { listen 80; server_name abc.com; location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/var/run/php/php7.1-fpm.s...

    리눅스 NGINX PHP-FPM 업데이트 및 여러 버전 동시 연동 방법

    Category리눅스 Views136 Votes0
    https://extrememanual.net/10557 https://extrememanual.net/10557 NGINX 설정 예시1. abc.com 가상 호스트 server { listen 80; server_name abc.com; location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/var/run/php/php7.1-fpm.s...
    Read More
  7. 리눅스 Linux/Ubuntu, 용량 큰 파일/디렉토리 찾아내기.

    Category리눅스 Views536 Votes0
    Linux/Ubuntu, 용량 큰 파일/디렉토리 찾아내기. 출처: https://technote.kr/165 [TechNote.kr] 리눅스에서 파일 사이즈를 아는 방법은 다양하다. 흔히 사용하는 ls를 사용할 수도 있고, du를 사용하는 방법 또한 있다. 여기서는 du를 사용해 보고자 한다. # d...
    Read More
  8. 리눅스 [Laravel] 라라벨 설치하기 PHP7.0 + Nginx

    Category리눅스 Views264 Votes0
    https://blog.storyg.co/laravels/install-on-ubuntu16-with-php7-and-nginx https://blog.storyg.co/laravels/install-on-ubuntu16-with-php7-and-nginx 1. 업데이트 # apt update 2. 설정 변경 /etc/php/7.0/fpm/php.ini를 설정 파일에서 cgi.fix_pathinfo를...
    Read More
  9. 리눅스 루분투 X61 배터리 정보

    Category리눅스 Views87 Votes0
    레노보 X61 A43 노트북입니다. 배터리 기본 설계 용량이 37.44Wh인데 현재 사용 가능한 풀 용량이 15Wh인거 같네요. 40% 용량이니 이걸 가지고 뭔가 쓸만한 정도는 못됩니다. 현재 시각 12시 36분 지금부터 배터리로만 사용해보겠습니다. 과연 몇 분이나 갈런...
    Read More
  10. VPS 리노드에서 서비스 변경했습니다. (160달러 -> 10달러로)

    CategoryVPS Views98 Votes0
    기존 사이트를 여러 개 운영하다가 한 곳을 정리했습니다. 사이트 1개만 유지하면 되서 160달러짜리에서 10달러짜리로 변경했네요.
    Read More
  11. VPS Linode VPS 디스크 용량 변경 방법

    CategoryVPS Views99 Votes0
    Linode의 서비스를 8GB를 사용하다가, 12GB로 변경했습니다. 기본적으로 메모리/용량/트래픽이 모두 2배로 증가합니다. cpu/램 성능/트래픽 문제로 서비스를 증설해서 디스크 관련으로는 신경쓰지 않았습니다만, 백업파일을 만들려다보니 디스크 용량이 부족했...
    Read More
  12. VPS Linode VPS의 새로운 콘트롤 패널

    CategoryVPS Views203 Votes0
    We're working on a new cloud.linode.com control panel. Feedback appreciated! 어제 리노드에 로그인하니, 새로운 콘트롤 패널 작업을 하고 있다고 합니다. 1) http://cloud.linode.com 에 접속해봅니다. 로그인 화면은 군더더기 없이 깔끔합니다. 2) 서버...
    Read More
  13. 국내 및 해외 가상서버호스팅(VPS) 비교 http://itrooms.tistory.com/139 각종 클라우드 VPS 서비스 비교해본 소감 https://www.clien.net/service/board/use/8540159

    VPS 각종 클라우드 VPS 서비스 비교해본 소감

    CategoryVPS Views395 Votes0
    국내 및 해외 가상서버호스팅(VPS) 비교 http://itrooms.tistory.com/139 각종 클라우드 VPS 서비스 비교해본 소감 https://www.clien.net/service/board/use/8540159
    Read More
  14. This is a secret article.

    웹호스팅 http://rael.me/support.php

    Category웹호스팅 Views0 Votes0
    This is a secret article.
    Read More
  15. 무료 아마존 웹 서비스, 100% 알뜰하게 사용하는 방법 원문보기: http://www.itworld.co.kr/news/81311#csidxe0e906179e10289b0e51e21ba8b6814 아마존 웹 서비스(Amazon Web Services)의 무료 서비스인 '프리 티어'(free tier)는 디딤돌 정도로 생각하면 가장 ...

    기타 무료 아마존 웹 서비스, 100% 알뜰하게 사용하는 방법

    Category기타 Views95 Votes0
    무료 아마존 웹 서비스, 100% 알뜰하게 사용하는 방법 원문보기: http://www.itworld.co.kr/news/81311#csidxe0e906179e10289b0e51e21ba8b6814 아마존 웹 서비스(Amazon Web Services)의 무료 서비스인 '프리 티어'(free tier)는 디딤돌 정도로 생각하면 가장 ...
    Read More
  16. 참조 : http://blogtoday.tistory.com/942 A2HOSTING의 경우 많은 장점이 있지만, 많은 사용자/많은 접속자/많은 디비 쿼리를 사용하는 경우는 본 호스팅사와 맞지 않습니다. 저도 스패머의 공격으로 인해서 게시물과 회원을 정리하려고 하는데 CPU 제한이 뜨...

    웹호스팅 a2hosting 웹호스팅 단점/후회/불만

    Category웹호스팅 Views176 Votes0
    참조 : http://blogtoday.tistory.com/942 A2HOSTING의 경우 많은 장점이 있지만, 많은 사용자/많은 접속자/많은 디비 쿼리를 사용하는 경우는 본 호스팅사와 맞지 않습니다. 저도 스패머의 공격으로 인해서 게시물과 회원을 정리하려고 하는데 CPU 제한이 뜨...
    Read More
  17. 기타 해외 호스팅의 결제 및 환불 (a2hosting 환불 했습니다.)

    Category기타 Views354 Votes0
    해외 호스팅의 결제 및 환불 - a2hosting, digital ocean, conoha, ipage A2hosting 지난 1월에 a2hosting을 처음 사용해보았습니다. 무난한 속도에 비교적 체감상 빠른 XE의 성능에 반해 마침 호스팅 기간도 만료가 되는 시점이라 국내 엔플린트 웹호스팅에서...
    Read More
  18. https://www.gandi.net/domain/suggest?currency=USD .io나 .in 도메인을 구매할 때 저렴하게 살 수 있겠군요.

    기타 해외도메인 구입 사이트 gandi.net

    Category기타 Views298 Votes0
    https://www.gandi.net/domain/suggest?currency=USD .io나 .in 도메인을 구매할 때 저렴하게 살 수 있겠군요.
    Read More
  19. https://www.a2hosting.com/ FTP 전송속도 : 2MiB/s SSH 지원 SFTP 지원 PHP 버전 : 선택 가능 트래픽 : 제한 없음 도메인 갯수 : 플랜에 따라 1개 또는 제한 없음 cPanel 지원(관리가 용이함) 결제 - 페이팔 결제 가능 서버 위치 - 싱가폴 등

    웹호스팅 [해외]a2hosting

    Category웹호스팅 Views178 Votes0
    https://www.a2hosting.com/ FTP 전송속도 : 2MiB/s SSH 지원 SFTP 지원 PHP 버전 : 선택 가능 트래픽 : 제한 없음 도메인 갯수 : 플랜에 따라 1개 또는 제한 없음 cPanel 지원(관리가 용이함) 결제 - 페이팔 결제 가능 서버 위치 - 싱가폴 등
    Read More
  20. https://blog.lael.be/post/44 https://www.xpressengine.com/hosting_info/22670006 http://bboong.kr/207 http://funnylog.kr/665 http://itandgame.tistory.com/89 https://blog.outsider.ne.kr/791

    VPS 국내 클라우드 서버호스팅 비교(Virtual Private Server Review)

    CategoryVPS Views318 Votes0
    https://blog.lael.be/post/44 https://www.xpressengine.com/hosting_info/22670006 http://bboong.kr/207 http://funnylog.kr/665 http://itandgame.tistory.com/89 https://blog.outsider.ne.kr/791
    Read More
Board Pagination Prev 1 2 Next
/ 2
닫기

마이페이지

로그인을 해주세요

네이버로 로그인