Skip to content
SumGuy's Ramblings

SumGuy's Ramblings

SumGuy's Ramblings
SumGuy's Ramblings

shell

Windows clean up multiple partitions via CLI
shell | Windows

Windows clean up multiple partitions via CLI

BySumGuy 2013-09-152016-05-12

I had to install a new copy of windows, sadly the USB drive at hand had about 11 small partitions on it due to some earlier work. When I tried formatting it, it formatted only one part of it and was annoying in general… when I checked disk management, I was only able to delete…

Read More Windows clean up multiple partitions via CLIContinue

Bash for loops sequential counting
Linux | shell

Bash for loops sequential counting

BySumGuy 2013-09-142016-05-12

  Bash for loops are very useful in everyday life. I am going to post some simple examples where I combine bash for loops with other simple techniques like bash stepping etc. Want to count from 1 – 100 and list each number sequentially? for i in {1..100}; do echo $i; done Same as above but…

Read More Bash for loops sequential countingContinue

Adding extra Swap to Linux
Linux | shell

Adding extra Swap to Linux

BySumGuy 2013-07-282016-05-12

On one of my servers I needed extra swap space because the datacenter screwed up the partitioning and I didn’t have time to reimage the machine. so an easy way to add swap after partitioning is just to add it via a new file on any partition. lets say you want to add 8GB of…

Read More Adding extra Swap to LinuxContinue

Yum install dependencies for a local RPM
Linux | shell

Yum install dependencies for a local RPM

BySumGuy 2013-07-132016-05-12

Got an RPM laying about you need to install but it has a bunch of dependencies? well let yum do the heavy lifting. yum –nogpgcheck localinstall SomeApp.noarch.rpm  

Read More Yum install dependencies for a local RPMContinue

Remove all old installed but unused kernels
Linux | shell | tuts

Remove all old installed but unused kernels

BySumGuy 2013-07-122016-05-12

I just noticed I had 8 kernels installed on a machine. dont need but one…. so I rebooted to make sure I was using the newest, and removed all the old ones via these simple commands :   Ubuntu / Debian / dpkg / Apt: dpkg -l ‘linux-*’ | sed ‘/^ii/!d;/'”$(uname -r | sed “s/\(.*\)-\([^0-9]\+\)/\1/”)”‘/d;s/^[^…

Read More Remove all old installed but unused kernelsContinue

Generate file of fixed size via CLI
Linux | shell

Generate file of fixed size via CLI

BySumGuy 2013-07-062016-05-12

We recently moved a hosting to a new data center and wanted to test speeds, so I needed fixed size files to see what kind of speeds people could achieve while downloading them. I decided on the arbitrary numbers of 100MB and 500MB. Heres how I generated fixes size files via bash. for 500 MB…

Read More Generate file of fixed size via CLIContinue

Page navigation

Previous PagePrevious 1 2 3 4 5 6 Next PageNext
  1. SumGuy on Geforce now errors on Tmobile home internet2023-09-21

    Pfft what's even real any more! And yeah something is weird about it, but for now the vpn works.

  2. Cisco on Geforce now errors on Tmobile home internet2023-09-21

    Get a real PC bro! jk. I wonder if Tmo is trying to limit your "unlimited" data. regards!

  3. Linda Sherratt on Enable WebGL on Chrome or Firefox2023-09-21

    the instructions are too difficult for me to comprehend

  4. gst on Proxmox iso upload method2023-09-21

    I was trying to get an ISO through mounted USB but your guide is a straight-forward. Thanks a lot SumGuy!

  • Linux Bash Tips and Tricks pt1
  • Set the Timezone in Ubuntu with timedatectl
  • mogrify examples
    Understanding the Mogrify Tool in Linux: A Guide to Image Manipulation
  • Creating Image Slideshows with Voiceovers using FFMPEG
  • Machine Learning models (AI)
  • Wiki.js for your documentation in docker

android app apt automation bash caddy centos cli compress debian docker doxygen error games gaming google graphviz imagemagick images kernel linux media mount mysql netsec nocodb php proxmox redis resize security shell sqlite ssh ssl tips tutorial ubuntu virtualization vpn web webserver windows xz zsh

© 2023 SumGuy's Ramblings

Scroll to top
Go to mobile version
Search