OpenJDK 11 / 8 install OpenJDK 8 / 11 install [ OpenJDK 11 install ] - Ubuntu $ sudo apt install openjdk-11-jdk - CentOS $ sudo yum install java-11-openjdk [ OpenJDK 8 install ] - Ubuntu $ sudo apt install openjdk-8-jdk - CentOS $ sudo yum install java-1.8.0-openjdk OS/Linux 2021.12.14
ifconfig install 1. CentOS $ sudo yum install net-tools 2. Ubuntu $ sudo apt install net-tools OS/Linux 2021.06.22
Linux git install Ubuntu : $ sudo apt install git CentOS : $ sudo yum install git 참고 : www.git-scm.com/download/linux Git Download for Linux and Unix It is easiest to install Git on Linux using the preferred package manager of your Linux distribution. If you prefer to build from source, you can find tarballs on kernel.org. The latest version is 2.31.1. Debian/Ubuntu For the l www.git-scm.com OS/Linux 2021.04.22
Adobe Reader 9.5.5 unix file download FTP : ftp://ftp.adobe.com/pub/adobe/reader/unix/9.x/9.5.5/enu/ Ubuntu : ftp://ftp.adobe.com/pub/adobe/reader/unix/9.x/9.5.5/enu/AdbeRdr9.5.5-1_i386linux_enu.deb CentOS : ftp://ftp.adobe.com/pub/adobe/reader/unix/9.x/9.5.5/enu/AdbeRdr9.5.5-1_i486linux_enu.rpm Etc : ftp://ftp.adobe.com/pub/adobe/reader/unix/9.x/9.5.5/enu/AdbeRdr9.5.5-1_i486linux_enu.bin ftp://ftp.adobe.com/pub/adobe/reader/unix/9... OS/Linux 2021.04.22
Linux USB Info Command $ lsusb user@bada:~$ lsusb Bus 002 Device 004: ID 0cf3:3005 Atheros Communications, Inc. AR3011 Bluetooth Bus 002 Device 003: ID 1bcf:2805 Sunplus Innovation Technology Inc. Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 006 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 005 Device 003: ID 1.. OS/Linux 2020.03.08
Linux PCI Device Info Command $ lspci user@bada:~$ lspci 00:00.0 Host bridge: Intel Corporation 2nd Generation Core Processor Family DRAM Controller (rev 09) 00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09) 00:16.0 Communication controller: Intel Corporation 6 Series/C200 Series Chipset Family MEI Controller #1 (rev 04) 00:1a.0 USB controller: I.. OS/Linux 2020.03.08
Linux(Ubuntu/CentOS) hardware info command $ sudo lshw user@bada:~$ sudo lshw [sudo] user의 암호: bada description: Notebook product: HP ProBook 4530s (LH976PA#AB1) vendor: Hewlett-Packard version: A0001D02 serial: CNU1153QG1 width: 64 bits capabilities: smbios-2.6 dmi-2.6 smp vsyscall32 configuration: boot=normal chassis=notebook family=103C_5336AN sku=LH976PA#AB1 uuid=264E720A-2266-E011-81F5-5484BF0C303B *-core description: Motherboard pr.. OS/Linux 2020.03.08
Tensorflow2.x libnvinfer.so.6 libnvinfer_plugin.so.6 error >>> import tensorflow as tf 2020-02-23 23:40:33.293827: W tensorflow/stream_executor/platform/default/dso_loader.cc:55] Could not load dynamic library 'libnvinfer.so.6'; dlerror: libnvinfer.so.6: cannot open shared object file: No such file or directory 2020-02-23 23:40:33.293931: W tensorflow/stream_executor/platform/default/dso_loader.cc:55] Could not load dynamic library 'libnvinfer_plugin.so.. OS/Linux 2020.02.23
Tensorflow install System install $ pip3 install --user --upgrade tensorflow # install in $HOME Verify the install: $ python3 -c "import tensorflow as tf; print(tf.reduce_sum(tf.random.normal([1000, 1000])))" Virtualenv install (venv) $ pip install --upgrade tensorflow Verify the install: (venv) $ python -c "import tensorflow as tf;print(tf.reduce_sum(tf.random.normal([1000, 1000])))" https://www.tensorflow.org/in.. OS/Linux 2020.02.23
Install TensorFlow 2 # Requires the latest pip $ pip install --upgrade pip # Current stable release for CPU and GPU $ pip install tensorflow # Or try the preview build (unstable) $ pip install tf-nightly https://www.tensorflow.org/install OS/Linux 2020.02.23