0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

CODから結晶構造ファイル一式をダウンロード(ログ)

Last updated at Posted at 2023-11-19

目標設定

COD(Crystallography Open Database)からcifファイル一式をローカルドライブ(外付けSSD)にダウンロードする.

[1] Crystallography Open Database
https://www.crystallography.net/cod/index.php

流れ

  1. [2]から圧縮ファイルをローカルにダウンロードする.(今回はSSD上にダウンロードした.)
    1. の圧縮ファイルを解凍する.

[2] Obtaining COD
https://wiki.crystallography.net/howtoobtaincod/

実行の詳細ログ

圧縮ファイルをダウンロード

pwd

/mnt/ssd_elecom_black_c2c_480G

ls -CF

'$RECYCLE.BIN'/ 'System Volume Information'/

wget http://www.crystallography.net/archives/cod-cifs-mysql.txz

--2023-11-01 16:59:16-- http://www.crystallography.net/archives/cod-cifs-mysql.txz
Resolving www.crystallography.net (www.crystallography.net)... 158.129.170.82, 198.97.190.53, 193.0.14.129, ...
Connecting to www.crystallography.net (www.crystallography.net)|158.129.170.82|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 16199786560 (15G)
Saving to: ‘cod-cifs-mysql.txz’

cod-cifs-mysql.txz 100%[=================================================>] 15.09G 7.39MB/s in 35m 5s

utime(cod-cifs-mysql.txz): Operation not permitted
2023-11-01 17:34:22 (7.34 MB/s) - ‘cod-cifs-mysql.txz’ saved [16199786560/16199786560]

ls -CF

'$RECYCLE.BIN'/ 'System Volume Information'/ cod-cifs-mysql.txz*

圧縮ファイルを解凍

sudo time tar Jxvf cod-cifs-mysql.txz

(略)
1606.69user 876.08system 4:56:49elapsed 13%CPU (0avgtext+0avgdata 9972maxresident)k
0inputs+0outputs (1major+796minor)pagefaults 0swaps

ls -CF

'$RECYCLE.BIN'/ 'System Volume Information'/ cif/ cod-cifs-mysql.txz* mysql/

解凍後のディレクトリのサイズを確認

( -s:指定したディレクトリの総容量だけを確認,-h:サイズを適切な単位で表示 )

du -s -h mysql/

515M mysql/

du -s -h cif/

92G cif/

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?