728x90
반응형

Dell Precision Tower 7820 certified on Ubuntu 20.04 LTS

Dell Precision Twoer 7820에 Ubuntu 설치를 위한 하드웨어 체크

아래 링크 참조.  

Dell certified with Ubuntu | Ubuntu

 

 

Audio

  • nVidia GF119 HDMI Audio Controller (10de:0e08)
  • nVidia TU104 HD Audio Controller (10de:10f8 1028:129f)
  • Intel Corp. Lewisburg MROM 0 (8086:a1f0)
  • nVidia GF119 HDMI Audio Controller
  • Intel Corp. Lewisburg MROM 0
  • nVidia TU104 HD Audio Controller

 

BIOS

  • Dell 2.6.3

 

Cardreader

  • Generic- SD/MMC CRW
  • Generic USB3.0-CRW

 

Cdrom

  • Union Memory (Shenzhen) HL-DT-ST DVD+/-RW GU90N
  • HL-DT-ST DVD+/-RW GU90N

 

Disk

  • ST1000DM003-1SB102
  • Union Memory (Shenzhen) TOSHIBA DT01ACA100

 

Ide

  • Intel Corp. Lewisburg CSME: IDE-r (8086:a1bc)

 

Keyboard

  • ILI Technology Corp. NetVista Full Width Keyboard (04b3:3025)

 

Mouse

  • Primax Electronics, Ltd HP Optical Mouse (0461:4d0f)
  • Lenovo M-U0025-O Mouse (17ef:6019)

 

Network

  • Aquantia Corp. AQC108 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion] (1d6a:d108 1d6a:0001)
  • Intel Corp. Ethernet Connection (3) I219-LM (8086:15b9)

 

Processor

  • Intel Corp. Intel(R) Xeon(R) Platinum 8153 CPU @ 2.00GHz

 

Raid

  • Intel Corp. Volume Management Device NVMe RAID Controller (8086:201d)

 

System

  • Dell Precision 7820 Tower

 

USB

  • nVidia TU104 USB 3.1 Host Controller (10de:1ad8 1028:129f)
  • Intel Corp. Lewisburg USB 3.0 xHCI Controller (8086:a1af)
  • Realtek Semiconductor Co., Ltd. 0bda:0328 (0bda:0328)

 

Video

  • nVidia GF119 [NVS 315] (10de:107c)
  • nVidia TU104GL [Quadro RTX 5000] (10de:1eb0 1028:129f)

 

 

728x90
반응형
728x90
반응형

Learning_IDL.pdf
9.54MB

728x90
반응형
728x90
반응형

지도 저작권 없는 세계지도 데이터 

 

Drawing beautiful maps programmatically with R, sf and ggplot2 — Part 1: Basics (r-spatial.org)

 

Drawing beautiful maps programmatically with R, sf and ggplot2 — Part 1: Basics

view raw Rmd EDIT: Following a suggestion Adriano Fantini and code from Andy South, we replaced rworlmap by rnaturalearth. This tutorial is the first part in a series of three: In this part, we will cover the fundamentals of mapping using ggplot2 associate

r-spatial.org

 

R에서 사용하기 위해 사전에 설치할 패키지들

install.packages("rnaturalearth")

# 아래 패키지 설치에 시간이 많이 걸린다.
install.packages("ggspatial")  
install.packages("sf")
install.packages("s2")

 

예제 코드 

 

library("ggspatial")
ggplot(data = world) +
    geom_sf() +
    annotation_scale(location = "bl", width_hint = 0.5) +
    annotation_north_arrow(location = "bl", which_north = "true", 
        pad_x = unit(0.75, "in"), pad_y = unit(0.5, "in"),
        style = north_arrow_fancy_orienteering) +
    coord_sf(xlim = c(-102.15, -74.12), ylim = c(7.65, 33.97))

## Scale on map varies by more than 10%, scale bar may be inaccurate

 

 

 

 

 

rnaturalearth package - RDocumentation

 

rnaturalearth package - RDocumentation

install_rnaturalearthhires

www.rdocumentation.org

 

 

 

 

728x90
반응형
728x90
반응형

1. Anaconda3 설치

   몇 번 pycaret  설치 하다 버전 충돌로 2021 버전 인스톨 함.

2. 가상 환경 설정

# create a conda environment
conda create --name yourenvname python=3.8   

pycaret은 현재 Python 3.8까지만 지원한다. 


# activate conda environment
conda activate yourenvname

 

3. sklearn  버전 맞추기

 Anaconda3 인스톨 후 Installation - PyCaret Official (gitbook.io)  문서 먼저 참조

 

문서 중간에 아래와 같이  sklearn 지원 버전이 나와있다. 

*** PyCaret is not yet compatible with sklearn>=0.23.2.

필자의 버전은 conda list 로 확인 결과 0.24.2 이므로 downgrade 해야 된다.

 conda install scikit-learn=0.22.2

 

4. # install pycaret
pip install pycaret

5. # create notebook kernel
python -m ipykernel install --user --name yourenvname --display-name "display-name"

 

6. python 환경에서 import 해서 pycaret, sklearn 정상 작동하는지 확인

 

7. 다른 패키지 설치하고 가상환경 복사하기

 

https://dschloe.github.io/python/newpkgs/pycaret_install/

 

[Python] PyCaret Windows 10 아나콘다 설치 방법

강의 홍보 취준생을 위한 강의를 제작하였습니다. 본 블로그를 통해서 강의를 수강하신 분은 게시글 제목과 링크를 수강하여 인프런 메시지를 통해 보내주시기를 바랍니다. 스타벅스 아이스 아

dschloe.github.io

 

728x90
반응형
728x90
반응형

MakingRobot :: Window 10에서 Anaconda 삭제 (tistory.com)

 

Window 10에서 Anaconda 삭제

1. 가상환경 목록 확인 아래와 같이 명령어를 입력하여 컴퓨터에 설치된 가상환경 리스트를 확인합니다. conda env list or conda info --envs 2. 가상환경 삭제 삭제를 원하는 가상환경 이름을 입력하여

makingrobot.tistory.com

 

 

728x90
반응형
728x90
반응형

HDF5 tools

     • tested with version 1.6.4

   • obtained from: http://www.hdfgroup.org/HDF5  -deprecated

   • Downloads (hdfgroup.org)

 

 

 

 

Downloads

HDF5 1.10 is the recommended branch to use for HDF5 development that doesn't use the virtual object layer (VOL).

confluence.hdfgroup.org

HDF5 인스톨하기 :: 이름이 없는 블로그 (tistory.com) 

기억할 점. zlib 은 /usr 에 깔았고 szip 은 /opt/szip-2.1 에 깔았다.  ==> zlib과 szip을 먼저 설치해야 !!!

 

zlib 설치

zlib 인스톨하기 :: 이름이 없는 블로그 (tistory.com)

1. http://www.zlib.net/ 에 들어가서 최신버전을 받자.

2. 그리고 거기다가 바로 압축을 풀고

tar zxf zlib-1.2.8.tar.gz

3. 그 디렉토리에 들어가서

cd zlib-1.2.8

4. 컨피겨를 한다. 인스톨은 /usr 에 하도록 한다.

./configure --prefix=/usr

5. 만든다.

make

6. 인스톨한다.

sudo make install

 

 

szip 설치

szip 인스톨하기 :: 이름이 없는 블로그 (tistory.com)

1. szip 을 다운받는다.

2. /opt 에 옮긴다.

sudo mv ~/Download/szip-2.1.tar.gz /opt

3. 압축을 푼다.

sudo tar zxf szip-2.1.tar.gz

4. 내 생각에는 sudo 를 쓰는 것 보다 root 로 까는 게 더 편한 것 같다.

cd ~/

sudo -s

암호

source .bashrc

cd /opt/szip-2.1

5. configure 한다. 딱히 따로 설정할 건 없는 듯.

./configure

6. 설치한다.

make

make check

make install

7. root 를 빠져나온다.

exit

 

 

HDF5 설치

HDF5 인스톨하기 :: 이름이 없는 블로그 (tistory.com)

HDF5 를 parallel 로 zlib 와 szip 을 쓰면서 깔아보자. 포트란, MPI, zlib, szip 은 이미 깔려있다고 가정하고 시작한다.

1. 우선 여기서 다운받는다.

2. root privilege 로 들어간다.

cd ~/

sudo -s

암호

source .bashrc

3. environmental variable 을 지정한다.

export CC=mpicc

export FC=mpif90

4. 압축을 푼다.

cd /opt

mv /home/사용자명/Download/hdf5-1.10.0.tar.gz ./

tar zxf hdf5-1.10.0.tar.gz

5. 압축을 푼 디렉토리로 들어가서

cd hdf5-1.10.0

6. configure 하자. fortran 과 szip 을 쓰는 옵션으로 parallel 로 깔 거다. parallel 로 깔면 C++ 은 못 쓴다.

기억할 점. zlib 은 /usr 에 깔았고 szip 은 /opt/szip-2.1 에 깔았다.

./configure --enable-fortran --enable-fortran2003 --enable-parallel --with-zlib=/usr --with-szlib=/opt/szip-2.1

7. 인스톨을 하자.

make

make check

make install

 

https://hdfeos.org/software/hdfeos.php

 

How to build HDF-EOS

How to build HDF-EOS This page explains how to build the HDF-EOS2 library and the HDF-EOS5 library. HDF-EOS2 You can get the latest release from here. As of August 2021, HDF-EOS 3.0 is the latest version, and you can get the library from NASA web site . Th

hdfeos.org

 

HDF5 Version 1.8.4 Requires Zlib and SZip ?

 

Downloads

HDF5 1.10 is the recommended branch to use for HDF5 development that doesn't use the virtual object layer (VOL).

confluence.hdfgroup.org

HDF5 Version 1.8.4 Requires Zlib and SZip ? - Hdf-forum archives - HDF Forum (hdfgroup.org)

 

 

Downloads

HDF5 1.10 is the recommended branch to use for HDF5 development that doesn't use the virtual object layer (VOL).

confluence.hdfgroup.org

 

728x90
반응형
728x90
반응형

openSUSE Leap 42.2 이 Windows 10에서 사용가능 (아래 그림과 같이)

 

How to run openSUSE Linux on Windows 10 | ZDNET

 

How to run openSUSE Linux on Windows 10

​When Microsoft added Windows Subsystem for Linux (WSL) to Windows 10, it became possible to run other Linux distributions such as openSUSE -- and not just Ubuntu -- on Windows 10.

www.zdnet.com

 

728x90
반응형
728x90
반응형

아래 문서는 OpenSuse 가 아닌 Suse Linux enterprise destop 11에 관한 내용이지만,  OpenSuse 에서도 동일한 현상이 발생함. 

문서에서 Dell OptiPlex server 에서만 문제가 발생하는 것 처럼 말하지만, 그 외 시스템에서 유사 현상 발생 (아래 다른 문서 및 포럼 내용 참조)

필자의 경우, HP-Pavilion 에서 OpenSuse Version 10.2와 11.1 설치시 동일하게 키보드 먹통 발생

 

현재 버전 12로 시도 하는 중. 그래도 미심쩍음. 4번째 포럼에 보면 다수의 사용자가 유사 문제를 겪음.

 

 

 

USB keyboard is not working when installing Linux on a Dell OptiPlex server | Support | SUSE

 

USB keyboard is not working when installing Linux on a Dell OptiPlex server | Support | SUSE

 

www.suse.com

 

USB devices not available; unable to enumerate device error | Support | SUSE

 

USB devices not available; unable to enumerate device error | Support | SUSE

This document (7002864) is provided subject to the disclaimer at the end of this document. SUSE Linux Enterprise Desktop 11 SUSE Linux Enterprise Server 11   USB devices are not detected or avaible for use when plugged into the USB ports. dmesg command ou

www.suse.com

 

아래는 USB 키보드 문제에 관한 포럼 내용 

USB keyboard not working on Suse 11.0 - English / Applications - openSUSE Forums

 

USB keyboard not working on Suse 11.0

Thanks Dobby. I will try your suggestion.

forums.opensuse.org

[SOLVED] USB keyboard and mouse not detected at boot with kernel 5.13.4, 5.12.11 is OK - Page 4 (linuxquestions.org)

 

728x90
반응형
728x90
반응형

VPRM preprocessor 설치를 위해 서치 중

인터넷 상에서 거의 멸종한 opensuse old 버전 드디어 찾음.

참고로 버전 10.0이 opensuse 최초 버전임.  x86_64 포함

 

Index of /pub/opensuse/discontinued/distribution/ (gwdg.de)

 

Index of /pub/opensuse/discontinued/distribution/

 

ftp5.gwdg.de

 

 

728x90
반응형
728x90
반응형

본 내용은 Windows Home에디션에서 숨겨진 전원 옵션들을 활성화하기 위해 레지스트리 편집 내용을 담고 있습니다. 

https://grsn.tistory.com/481

 

저전력 노트북 전원 관리 옵션 설정하기

윈도우10 2004부터 레지스트리에 CsEnable 값 활성화를 통한 전원 관리 옵션 해금이 막혔다고 한다. 현재 윈도우 10 20H2 사용 중인데, EGPU를 연결했을 때 그래픽카드 저부하 상태에서 프리징(완전히

grsn.tistory.com

노트북 쿨러 팬 속도조절 발열 온도 낮추기 - 노랗IT월드 (yellowit.co.kr)

 

노트북 쿨러 팬 속도조절 발열 온도 낮추기 - 노랗IT월드

노트북에서 발열을 낮추기 위해서는 노트북 쿨러 속도를 조절해야 하며 이때 윈도우에서 제공하는 전원 옵션에서 냉각 쿨러 팬 속도를 조절할 수 있으며 간혹 윈도우 버전 및 노트북 모델에 따

yellowit.co.kr

 

728x90
반응형

+ Recent posts