by ddcarnage on 9/17/16, 4:24 PM with 76 comments
by ameliaquining on 9/17/16, 5:04 PM
(Disclosure: I work for Google, but not on Chrome.)
by lucb1e on 9/17/16, 5:56 PM
Given I don't have to rely on third party updaters, I doubt it. Let's see...
$ let size=0; dpkg -L chromium | while read path; do if [ -f "$path" ]; then let size=$size+$(du -sb "$path" | awk '{print $1}'); echo $size bytes, $(($size/1024/1024)) megabytes; fi; done;
172060669 bytes, 164 megabytes
$ du -sh .{cache,config}/chromium
8.4M .cache/chromium
25M .config/chromium
So the cache is 8M, config files 25M and program files 164M (listed by dpkg -L, then some command line magic to add up file sizes). A grand total of just under 200MB.by Zekio on 9/17/16, 4:44 PM
by rocky1138 on 9/17/16, 4:51 PM
by license2e on 9/17/16, 5:05 PM
by AstroJetson on 9/17/16, 4:46 PM
by mariusmg on 9/17/16, 5:23 PM
by richard_mcp on 9/17/16, 4:52 PM