PINE64
May dietpi save Pine64 ; watch youtube via chromium - Printable Version

+- PINE64 (https://forum.pine64.org)
+-- Forum: General (https://forum.pine64.org/forumdisplay.php?fid=1)
+--- Forum: Getting Started (https://forum.pine64.org/forumdisplay.php?fid=21)
+--- Thread: May dietpi save Pine64 ; watch youtube via chromium (/showthread.php?tid=2921)

Pages: 1 2


RE: May dietpi save Pine64 ; watch youtube via chromium - martinayotte - 03-09-2017

More "standard way" to create swap files is :

Code:
$ dd if=/dev/zero of=/path/to/swapfile bs=1M count=512 # For 512MB swap file
$ mkswap /path/to/swapfile
$ swapon /path/to/swapfile

"free" command will shows both real memory and swap.


RE: May dietpi save Pine64 ; watch youtube via chromium - kenneth558 - 03-09-2017

(03-09-2017, 02:52 PM)martinayotte Wrote: More "standard way" to create swap files is :

Code:
$ dd if=/dev/zero of=/path/to/swapfile bs=1M count=512 # For 512MB swap file
$ mkswap /path/to/swapfile
$ swapon /path/to/swapfile

"free" command will shows both real memory and swap.
Thank you, martinayotte.  I suppose the DietPi devs had some sort of reason to go the other route.

In the course of trying to watch youtube videos, I notice that if I let them load while I put them on pause some (at least) will actually play normally (no stop-and-go/buffer catchup) eventually.  I'm still trying to figure out how the OP did it.


RE: May dietpi save Pine64 ; watch youtube via chromium - pfeerick - 03-09-2017

(03-09-2017, 07:20 AM)kenneth558 Wrote: Yes, I did but didn't think to include it because the swapon command produced no response.  My bad in not posting that info.  Thank you kindly for asking.  Did you enable swap via fstab instead?  

I run 1GB/2GB boards headless, so haven't run into any memory issues as yet, so I haven't needed to enable swap space on the pine64 (yet!) Wink

martinayotte has since posted the way I would normally create and enable swap files. When working with swap partitions, you still use the mkswap command to prepare the swap space and swapon to enable it. And you can add either the file or partition version of swap space to the /etc/fstab line in order to make it persistent across reboots.

You would add (using the correct path instad of /dev/hdb1) the following to /etc/fstab for a swap partition...

Code:
/dev/hdb1       none    swap    sw      0       0

... or the below (again, replacing /swapfile with the path to the swapfile) for a swapfile.

Code:
/swapfile       none    swap    sw      0       0

This article may help if anyone wants to learn more about the reasons for and how to make swap files/partitions.