-
Ubuntu-server Ethernet Error
When 이더넷 포트가 3개 있는 워크스테이션에 Ubuntu-server을 설치 하였고 재부팅 시 “A start job is running for wait for network to be configured.”가 발생하여 3분 이상 기다려야되는 상황이 발생하였다. How to solve sudo vi /etc/netplan/*.yaml # In my case, I have two ethernet address ## Then I erase unused ethernet network setting. ```*.yaml network: ethernets: # enp2s0: # nameserv... Read More
-
(VITON)Toward Characteristic-Preserving Image-based Virtual Try-On Network Translation
CV Paper List \(\mathbf{Toward\;Characteristic-Preserving\;Image-based\;Virtual\;Try-On\;Network}\) \(\mathbf{Bochao\;Wang,\;Huabin\;Zheng,\;Xiaodan\;Liang,\;Yimin\;Chen,\;Liang}\) \(\mathbf{Lin,\;and\;Meng\;Yang}\) \(\mathbf{Sun\;Yat-sen\;University,\;China}\) \(\mathbf{SenseTime\;Group\;Limited}\) $\mathbf{Abstract}$ Image-based virt... Read More
-
Ubuntu tar format extract
sudo apt-get install gzip Usage: tar [OPTION...] [FILE]... GNU 'tar' saves many files together into a single tape or disk archive, and can restore individual files from the archive. x : Decompress c : Bundling files v : Display log z : Using gzip compress file f : Appoint name p : Maintain a permission Examples: tar -cf archive.tar foo bar ... Read More
-
Ubuntu gzip format extract
sudo apt-get install gzip Usage: gzip [OPTION]... [FILE]... Compress or uncompress FILEs (by default, compress FILES in-place). Mandatory arguments to long options are mandatory for short options too. -c, --stdout write on standard output, keep original files unchanged -d, --decompress decompress -f, --force force overwrite ... Read More
-
(GAN)Controllable Person Image Synthesis with Attribute-Decomposed GAN Translation
CV Paper List \(\mathbf{Controllable\;Person\;Image\;Synthesis\;with\;Attribute-Decomposed\;GAN}\) \(\mathbf{Yifang\;Men,\;Yiming\;Mao,\;Yuning\;Jiang,\;Wei-Ying\;Ma,\;Zhouhui\;Lian}\) \(\mathbf{Wangxuan\;Institute\;of\;Computer\;Technology,\;Peking\;University,\;China}\) \(\mathbf{Bytedance\;AI\;Lab}\) $\mathbf{Abstract}$ This paper in... Read More
-
Ubuntu unzip format extract
sudo apt install zip unzip unzip "filename" # Example ## Extract on current directory unzip "filename" ## Extract on designated directory unzip "filename" -d "location" Read More
-
Mean of .tar.gz
what is .tar[1] 하나로 묶기 위한 파일 형식 실제로 압축은 이뤄지지 않는다. 초기에는 테입 백업 목적으로, 순차적 입출력 장치에 직접 쓰도록 개발되었으나, 현재는, 배포 또는 아카이브 용도로 많은 파일을 디렉토리 구조, 파일 속성들을 보존하면서 하나의 큰 파일로 묶는 데 주로 사용된다. what is .gz[2] 여러 파일을 하나의 파일로 압축하는 옵션이 없어 .tar 형식과 함께 사용한다. gzip은 파일 압축에 쓰이는 응용 소프트웨어이다. gzip은 GNU zip의 준말이며, 초기 유닉스 시스템에 쓰이던 압축 프로그램을 대체하기 위한 자유 소프트웨어이다. Reference 1. t... Read More