Operating system Archives - Techie Buzz https://techie-buzz.com/tag/operating-system/ The Ultimate Tech Guide Thu, 24 Nov 2022 09:42:29 +0000 en-US hourly 1 https://wordpress.org/?v=6.7.2 https://techie-buzz.com/wp-content/uploads/2022/08/cropped-techie-buzz-32x32.png Operating system Archives - Techie Buzz https://techie-buzz.com/tag/operating-system/ 32 32 Mac OS X 10.6.8 Now Available for Download https://techie-buzz.com/mac-os-x-10-6-8-for-download/ Thu, 24 Nov 2022 09:42:29 +0000 https://techie-buzz.com/?p=3709 It seems that we may be looking at the jagged teeth of the final update for Mac OS X 10.6 ... Read more

The post Mac OS X 10.6.8 Now Available for Download appeared first on Techie Buzz.

]]>
It seems that we may be looking at the jagged teeth of the final update for Mac OS X 10.6 Snow Leopard. Apple released a security update into the wild today, bringing the official version number of Snow Leopard to 10.6.8.

I ran the ‘Software Update’ application on my MacBook Pro, which was previously running 10.6.7. I hadn’t run it in a few days, but the update was around 475 MB. the combo updater, which is designed for multiple versions of OS X, is 1.01 GB to download.

If you want to see the full release notes, they are in the box below.

Source: youtube.com

The 10.6.8 update is recommended for all users running Mac OS X Snow Leopard and includes general operating system fixes that enhance the stability, compatibility, and security of your Mac, including fixes that:

  • Enhance the Mac App Store to get your Mac ready to upgrade to Mac OS X Lion
  • Resolve an issue that may cause Preview to unexpectedly quit
  • Improve support for IPv6
  • Improve VPN reliability
  • Identify and remove known variants of Mac Defender

I find the easiest way to get my update is to hit Command-Space and type ‘Software Update.’ Again, the update isn’t that big if you keep your Mac up to date. If you prefer to get the combo updater, you can grab that here.

Many analysts are looking at the first bullet in the changes list and seeing that this update means that OS X Snow Leopard is coming to a close. It wouldn’t be surprising if that were the case, however. OS X Lion is due out next month, and its time for Snow Leopard’s regin to end.

Another important update in this patch is the line regarding MacDefender. As the first major Mac security threat, its important for Apple to develop a good strategy for dealing with such threats. As a Mac user, I am happy to see them putting this update.

The post Mac OS X 10.6.8 Now Available for Download appeared first on Techie Buzz.

]]>
Ubuntu Linux: How to Enable or Disable Swap Partition https://techie-buzz.com/ubuntu-linux-how-to-enable-or-disable-swap-partition/ Fri, 14 Oct 2022 13:46:42 +0000 https://techie-buzz.com/?p=2696 In this post we shall discuss how to enable or disable swap partition in Ubuntu Linux. Ubuntu Linux or any ... Read more

The post Ubuntu Linux: How to Enable or Disable Swap Partition appeared first on Techie Buzz.

]]>
In this post we shall discuss how to enable or disable swap partition in Ubuntu Linux. Ubuntu Linux or any Linux operating system can use a swap partition for paging in case if it runs out of physical memory. The swap partition is not a mandatory requirement for using Linux but it is advisable that you have a swap partition setup to avoid memory bottleneck in case you run out of your physical memory.

The aim of this post is explorer the ways in which we can enable or disable swap partitions it is assumed that you have already swap partition created during the Ubuntu Linux installation.

Method 1:

Source: addictivetips.com

We can use Gparted partition manager to enable or disable a swap partition. If Gparted is not installed in your Ubuntu Linux then use the following command below to install it.

1: sudo apt-get install gparted

This will install the Gparted partition editor which you can access from System>>Administration>>Partition Editor

The Gparted will now display all the available partitions in the hard disk that is selected. In this case we have a 14.99GB hard disk that has got a swap partition of 682.42MB.

To enable the Swap partition:

To enable the swap partitions right click on the swap partition and then select the Swapon’ option to enable the swap partition.

To disable the Swap partition:

To disable the swap partitions right click on the swap partition and then select the Swapoff’ option to disable the swap partition.

Method 2:

Source: haydenjames.io

In this method we shall discuss the enabling and disabling swap partition from terminal.

To enable the Swap partition:

To enable all the swap partitions on your computer you can use the following command.

1: sudo swapon a

If you would like to enable the swap partition for a particular partition then you can use the following command:

1: sudo swapon U <uuid>

To find the UUID of all the partitions use this command:

1: sudo blkid

In our example the UUID of our swap partition is 39be8652-da3d-4ad0-b11a-adb6c2ba3586 so the command will look like:

1: sudo swapon U 39be8652-da3d-4ad0-b11a-adb6c2ba3586

To disable the Swap partition:

To disable all the swap partitions on your computer you can use the following command.

1: sudo swapoff

If you would like to disable the swap partition for a particular partition then you can use the following command:

1: sudo swapoff U <uuid&gt

In our example the UUID of our swap partition is 39be8652-da3d-4ad0-b11a-adb6c2ba3586 so the command will look like:

1: sudo swapoff U 39be8652-da3d-4ad0-b11a-adb6c2ba3586

That’s it you can enable or disable swap partition either using the Gparted GUI or using the command line.

The post Ubuntu Linux: How to Enable or Disable Swap Partition appeared first on Techie Buzz.

]]>