Install Google Chrome on RHEL 7.x
1. 임시로 yum 설정을 변경# vi /etc/yum/pluginconf.d/search-disabled-repos.conf'notify_only=1' 을 'notify_only=0' 으로 변경. 2. google repo를 수동으로 등록vi 등의 에디터로 /etc/yum.repos.d 밑에 파일을 만들고,# vi /etc/yum.repos.d/google-x86_64.repo파일의 내용을 아래와 같이 작성한다.[google64] name=Google - x86_64 baseurl=http://dl.google.com/linux/rpm/stable/x86_64 enabled=1 gpgcheck=1 gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pu..
Linux
2017. 5. 30. 11:16
Zero-fill empty space
# dd if=/dev/zero of=dummy bs=100M || rm -f dummy
Linux
2017. 5. 30. 11:14