Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
✓ Live Streaming✓ Interactive Chat✓ Private Shows✓ HD Quality
Anya is LIVE right now
FREE
Free to watch • No registration required • HD streaming
حيلة إحياء الحاسوب القديم ضاعف الـ RAM مجاناً بدون شراء قطع جديدة 💻✨
في زاوية من زوايا العالم الافتراضي، حيث تتشابك الأسلاك الرقمية والبيانات، يكمن سر لإحياء الأجهزة القديمة. هل مررت بتجربة بطء حاسوبك الذي يعمل بنظام لينكس؟ تلك اللحظات التي تتساءل فيها عن جدوى إبقائه حيًا؟
اكتشفنا لكم zRAM. ليس مجرد اسم، بل هو مفهوم تقني يعيد تعريف قدرة الذاكرة. ببساطة، يضاعف كفاءة الـ RAM دون الحاجة لترقية مادية. فكروا في الأمر: كفاءة أعلى، سرعة استجابة، وداعاً للانتظار، كل هذا بتحسين برمجي. جمال التقنية يكمن في قدرتها على التجديد من الداخل.
هذه ليست مجرد حيلة، إنها فلسفة لاستغلال الموارد المتاحة بأقصى طاقة.
لمن يبحث عن لمسة سحرية لتجديد تجربة حاسوبه:
[شاهد التفاصيل هنا]
https://youtu.be/ECkSO35h3QE
If you’re using Ubuntu and want to improve your system’s performance, especially on machines with limited RAM, ZRAM is a great solution, as it creates a compressed block device in RAM, which helps to manage memory more efficiently.
ZRAM is a Linux kernel module that allows you to create a compressed block device in RAM, that effectively increases the amount of usable memory on your system by compressing data stored in RAM, which can be especially useful for systems with limited physical memory, allowing them to run more applications simultaneously without slowing down.
And of course ZRAM works for any other Linux distro too. I’ve long been using it on my Manjaro Linux platform.
This guide will walk you through installing and configuring ZRAM on Ubuntu.
“Ποιος χρειάζεται Swap στην εποχή μας” θα έλεγε κάποιος. Δυστυχώς είμαστε μακρυά ακόμα από την μη χρήση του Swap. Παρόλα αυτά για αυτούς που δεν φτιάχνουν Swap Partition αλλά θέλουν την “ασφάλεια” του αλλά και να συνδυάσουν τα εκπληκτικά Zswap και ZRam υπάρχει το SystemD-Swap (more…)
Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
✓ Live Streaming✓ Interactive Chat✓ Private Shows✓ HD Quality
Anya is LIVE right now
FREE
Free to watch • No registration required • HD streaming
Guide to add zRAM on the Synology DiskStation DS212j
My Synology DiskStation DS212j has gotten slower over the years ever since I bought in 2012. DSM operating system security and software upgrades introduced feature bloat that required more memory and caused memory to page to disk. Wikipedia gives an amazing overview of why paging is bad and why zRAM is amazing for memory constrained PCs.
zram (also called zRAM and, initially, compcache) is a Linux kernel feature that provides a form of virtual memory compression. zram increases performance by avoiding paging to disk and using a compressed block device in RAM instead, inside which paging takes place until it is necessary to use the swap space on a hard disk drive. Since using zram is an alternative way to provide swapping on RAM, zram allows Linux to make a better use of RAM when swapping/paging is required, especially on older computers with less RAM installed.
Pretty cool, huh? The Android community often uses zRAM as a way to bring back older devices back to life and I figured I could do the same with my aging DiskStation that only came with 256MB of RAM compared to the more recent DS216 that comes with twice that at 512MB.
I successfully compiled and added the zRAM module to my DS212j and wanted to share the steps. My DS212j uses the Linux kernel 2.6.32 so this guide should be applicable to any Synology DS that uses the same kernel.
Setting up the DSM 6.1 Tool Chain
Synology has provided excellent documentation on how to compile kernel modules. You should follow their tutorial on how to setup the toolkit to compile the kernel.
You will need to follow the Synology documentation to compile kernel modules here in order to build the LZO kernel module. This is a dependent kernel module for zRAM.
Steps are roughly:
Download the kernel source for the closest branch that is currently deployed on your Synology: https://sourceforge.net/projects/dsgpl/files/Synology%20NAS%20GPL%20Source/
Extract the source to /toolkit/build_env/ds.x64-6.1/root/
Enter the tool chain chroot: chroot /toolkit/build_env/ds.x64-6.1 /bin/bash
Build LZO modules because they’re dependencies for zRAM.
Enter Cryptographic API to select LZO compression algorithm as a module. Exit and save.
make prepare
make modules
Copy lzo_compress.ko, lzo_decompress.ko, lzo.ko to your Synology
Compiling the Compcache Kernel Module
I have successfully compiled the Compcache 0.6.2 kernel module and gotten it to work with the stock 2.6.32 kernel. The latest version doesn’t seem to work so we’re going to stick with 0.6.2 where we will follow the Compcache documentation here.
Verify everything worked by checking dmesg for errors
nschimme@NilsDiskStation:~$ dmesg | grep -E "(ramzswap|lzo)" [ 100.500000] alg: No test for lzo (lzo-generic) [ 100.550000] ramzswap: num_devices not specified. Using default: 1 [ 100.550000] ramzswap: /dev/ramzswap0 initialized: disksize_kb=131072 [ 100.560000] ramzswap: Invalid ioctl 21297 [ 101.560000] Adding 131064k swap on /dev/ramzswap0. Priority:5 extents:1 across:131064k SS nschimme@NilsDiskStation:~$
Add above insmod/swapon commands to /etc/rc.local to make the changes permanent
zRAM Results
It’s super effective! I’ve noticed that there was roughly ~100MB of paged memory usually and I’ve managed to get it all to fit within ~30MB of compressed memory space rather than going down to the hard drive. Responsiveness in the DSM OS has greatly improved as a result.
nschimme@NilsDiskStation:~$ free -m total used free shared buff/cache available total used free shared buff/cache available Mem: 243 79 60 3 104 123 Swap: 2175 94 2081 nschimme@NilsDiskStation:~$ swapon NAME TYPE SIZE USED PRIO /dev/md1 partition 2G 0B -1 /dev/ramzswap0 partition 128M 94.9M 5 nschimme@NilsDiskStation:~$ sudo rzscontrol /dev/ramzswap0 --stats DiskSize: 131072 kB NumReads: 9890 NumWrites: 26730 FailedReads: 0 FailedWrites: 0 InvalidIO: 0 NotifyFree: 0 ZeroPages: 7231 GoodCompress: 78 % NoCompress: 2 % PagesStored: 19499 PagesUsed: 6640 OrigDataSize: 77996 kB ComprDataSize: 26200 kB MemUsedTotal: 26560 kB nschimme@NilsDiskStation:~$
Μνήμη RAM: Βελτίωση διαχείρησης με zram - zswap - zcache
Μνήμη RAM: Βελτίωση διαχείρησης με zram – zswap – zcache
Σε περίπτωση που διαθέτετε υπολογιστή με 2GB RAM και λιγότερο πολύ συχνά θα νιώσατε ότι παγώνουν τα πάντα και κάνουν 3 λεπτά να επανέλθουν. Σήμερα λοιπόν θα δούμε τι μπορούν το zram, zswap και zcache να μας προσφέρουν για αυτές τις περιπτώσεις. (more…)
I had missed an error: “Provides:” was on the same line as BEGIN INIT INFO. This was causing an insserv error on my debian >/=jessy systems but not on ubuntu. mybad