<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[No space left on device even though I should have increased the storage size]]></title><description><![CDATA[<p dir="auto">I should have increased the storage size following the instructions in the docs and this is what I get with <code>df -h</code></p>
<pre><code>root@Omega-616B:~# df -h
Filesystem                Size      Used Available Use% Mounted on
/dev/root                 5.8M      5.8M         0 100% /rom
tmpfs                    61.4M     25.2M     36.1M  41% /tmp
/dev/mmcblk0p1            3.5G     63.2M      3.3G   2% /overlay
overlayfs:/overlay        3.5G     63.2M      3.3G   2% /
tmpfs                   512.0K         0    512.0K   0% /dev
/dev/sda1                14.9G      2.0G     13.0G  13% /mnt/sda1
</code></pre>
<p dir="auto">I've increased the storage with a 4 GB SD and added a 2 GB swap inside a 16GB USB.</p>
<p dir="auto">However when I run <code>pip3 install pandas</code> I get:</p>
<pre><code>root@Omega-616B:~# pip3 install pandas
Collecting pandas
  Downloading https://files.pythonhosted.org/packages/27/85/f9e4f0e47a6f1410b1d737b74a1764868e9197e3197a2be843507b505636/pandas-0.23.1.tar.gz (13.1MB)
    100% |████████████████████████████████| 13.1MB 2.8kB/s 
Exception:
Traceback (most recent call last):
  File "/usr/lib/python3.6/site-packages/pip/basecommand.py", line 214, in main
    status = self.run(options, args)
  File "/usr/lib/python3.6/site-packages/pip/commands/install.py", line 299, in run
    requirement_set.prepare_files(finder)
  File "/usr/lib/python3.6/site-packages/pip/req/req_set.py", line 370, in prepare_files
    ignore_dependencies=self.ignore_dependencies))
  File "/usr/lib/python3.6/site-packages/pip/req/req_set.py", line 587, in _prepare_file
    session=self.session, hashes=hashes)
  File "/usr/lib/python3.6/site-packages/pip/download.py", line 810, in unpack_url
    hashes=hashes
  File "/usr/lib/python3.6/site-packages/pip/download.py", line 653, in unpack_http_url
    unpack_file(from_path, location, content_type, link)
  File "/usr/lib/python3.6/site-packages/pip/utils/__init__.py", line 605, in unpack_file
    untar_file(filename, location)
  File "/usr/lib/python3.6/site-packages/pip/utils/__init__.py", line 578, in untar_file
    shutil.copyfileobj(fp, destfp)
  File "/usr/lib/python3.6/shutil.py", line 76, in copyfileobj
    fdst.write(buf)
OSError: [Errno 28] No space left on device
</code></pre>
<p dir="auto">I'd like to use the sd card for every file needed by the system to run stuff like python and its libraries for example, and on the usb I'd like to keep my files like a <code>home</code> folder. For the latter I thought I'd make a <code>home</code>directory inside the usb drive and add a symlink to the <code>root</code> directory but I'm not sure it's the right way to accomplish what I want.</p>
]]></description><link>http://community.onion.io/topic/2974/no-space-left-on-device-even-though-i-should-have-increased-the-storage-size</link><generator>RSS for Node</generator><lastBuildDate>Sat, 18 Jul 2026 18:48:52 GMT</lastBuildDate><atom:link href="http://community.onion.io/topic/2974.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 16 Jun 2018 21:06:02 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to No space left on device even though I should have increased the storage size on Sat, 16 Jun 2018 21:08:16 GMT]]></title><description><![CDATA[<p dir="auto">I should have increased the storage size following the instructions in the docs and this is what I get with <code>df -h</code></p>
<pre><code>root@Omega-616B:~# df -h
Filesystem                Size      Used Available Use% Mounted on
/dev/root                 5.8M      5.8M         0 100% /rom
tmpfs                    61.4M     25.2M     36.1M  41% /tmp
/dev/mmcblk0p1            3.5G     63.2M      3.3G   2% /overlay
overlayfs:/overlay        3.5G     63.2M      3.3G   2% /
tmpfs                   512.0K         0    512.0K   0% /dev
/dev/sda1                14.9G      2.0G     13.0G  13% /mnt/sda1
</code></pre>
<p dir="auto">I've increased the storage with a 4 GB SD and added a 2 GB swap inside a 16GB USB.</p>
<p dir="auto">However when I run <code>pip3 install pandas</code> I get:</p>
<pre><code>root@Omega-616B:~# pip3 install pandas
Collecting pandas
  Downloading https://files.pythonhosted.org/packages/27/85/f9e4f0e47a6f1410b1d737b74a1764868e9197e3197a2be843507b505636/pandas-0.23.1.tar.gz (13.1MB)
    100% |████████████████████████████████| 13.1MB 2.8kB/s 
Exception:
Traceback (most recent call last):
  File "/usr/lib/python3.6/site-packages/pip/basecommand.py", line 214, in main
    status = self.run(options, args)
  File "/usr/lib/python3.6/site-packages/pip/commands/install.py", line 299, in run
    requirement_set.prepare_files(finder)
  File "/usr/lib/python3.6/site-packages/pip/req/req_set.py", line 370, in prepare_files
    ignore_dependencies=self.ignore_dependencies))
  File "/usr/lib/python3.6/site-packages/pip/req/req_set.py", line 587, in _prepare_file
    session=self.session, hashes=hashes)
  File "/usr/lib/python3.6/site-packages/pip/download.py", line 810, in unpack_url
    hashes=hashes
  File "/usr/lib/python3.6/site-packages/pip/download.py", line 653, in unpack_http_url
    unpack_file(from_path, location, content_type, link)
  File "/usr/lib/python3.6/site-packages/pip/utils/__init__.py", line 605, in unpack_file
    untar_file(filename, location)
  File "/usr/lib/python3.6/site-packages/pip/utils/__init__.py", line 578, in untar_file
    shutil.copyfileobj(fp, destfp)
  File "/usr/lib/python3.6/shutil.py", line 76, in copyfileobj
    fdst.write(buf)
OSError: [Errno 28] No space left on device
</code></pre>
<p dir="auto">I'd like to use the sd card for every file needed by the system to run stuff like python and its libraries for example, and on the usb I'd like to keep my files like a <code>home</code> folder. For the latter I thought I'd make a <code>home</code>directory inside the usb drive and add a symlink to the <code>root</code> directory but I'm not sure it's the right way to accomplish what I want.</p>
]]></description><link>http://community.onion.io/post/17045</link><guid isPermaLink="true">http://community.onion.io/post/17045</guid><dc:creator><![CDATA[Federico Corazza]]></dc:creator><pubDate>Sat, 16 Jun 2018 21:08:16 GMT</pubDate></item><item><title><![CDATA[Reply to No space left on device even though I should have increased the storage size on Sun, 17 Jun 2018 11:57:47 GMT]]></title><description><![CDATA[<p dir="auto">Can you try running with the <code>pip3</code> command with <code>-v</code> for more verbosity? Maybe it's trying to uncompress it on in the <code>/tmp</code> folder and runs out of space?</p>
]]></description><link>http://community.onion.io/post/17049</link><guid isPermaLink="true">http://community.onion.io/post/17049</guid><dc:creator><![CDATA[Maximilian Gerhardt]]></dc:creator><pubDate>Sun, 17 Jun 2018 11:57:47 GMT</pubDate></item></channel></rss>