Wednesday, September 13, 2017
Ubuntu Auto remove old kernels when you are running out of space
Ubuntu Auto remove old kernels when you are running out of space
If your root partition is running out of space, you can auto remove the old kernels with this command in the terminal:
dpkg -l linux-* | sed /^ii/!d;/"$(uname -r | sed "s/(.*)-([^0-9]+)/1/")"/d;s/^[^ ]* [^ ]* ([^ ]*).*/1/;/[0-9]/!d | xargs sudo apt-get -y purge
Source: https://help.ubuntu.com/community/Lubuntu/Documentation/RemoveOldKernels
download file now
Sunday, September 10, 2017
Unable to remove Office 365 Domain
Unable to remove Office 365 Domain
With Cloud on the �loose�, Microsoft has offered a very flexible platform which allows organizations to easily subscribe for trials or even register for a tenant on the fly. However, without a proper clean-up would create additional hassles and steps, especially if the Global Admin is no longer around or the login credential has been misplace � and this what happened to me in a recent Office 365 engagement.
In this implementation, we were supposed to activate the actual domain (Example: mydomain.com) to a new Ofifce 365 tenant. However, when attempting to associate the corporate domain into the Office 365 tenant, the portal had detected that our domain has been used and activated with another tenant � for Microsoft Power BI purposes, to make things complicated, nobody knows whom own the other domain.
To �regain control� of the corporate domain, we�d to create an automated generated TXT record to proof that we�re the actual and will be the Global Admin taking over the Power BI tenant. After which we�d to remove the corporate domain that has been configured with the Power BI tenant but were thrown with an error message:
Dependencies on domain. To remove this domain, you�ll have to remove the following dependencies first.
When expand, the alias and Skype addresses indicate the users which has been assigned within the tenant, although there wasn�t any Exchange Online and Skype for Business Online licenses are available. In the end, we�d to use PowerShell to remove the corporate domain:
- Connect-MsolService
- Remove-MsolDomain -DomainName $mydomain.com -Force
Refresh the Admin portal and we manage to remove the corporate domain that was initially assigned to the Power BI tenant and �migrated� it to the actual Office 365 domain.
Filed under: Cloud, Office 365
via Skype for Business News Aggregator Full Article
download file now
Wednesday, September 6, 2017
Trick to Hide Remove Your Last Name on Facebook
Trick to Hide Remove Your Last Name on Facebook
We all know that

Now just follow below steps:
1. Change your Firefox Browser Proxy Manually
Go To Tools > Option > Advanced > Network > Setting >Manual Proxy Configuration >
put any Of the bellow proxies
Proxy:
202.152.156.210
27.111.38.253
202.148.14.92



6. Switch back to English(US) language.
After doing all step remove proxy & switch to system proxy.
Now you have only single name account you can amaze your friends by this trick.

download file now
Thursday, August 24, 2017
Ubuntu 12 04 Remove Physical Drive From Volume Group
Ubuntu 12 04 Remove Physical Drive From Volume Group
In this tutorial I am going to show you how to remove a drive from your logical volume group without losing any files by first moving all of its contents onto the other drives. This means that you do not have to take a full backup to another set of drives. I did this today because I wanted to replace a laptop drive that I had temporarily added as emergency "extension". Using the drive had noticeably decreased the performance of my volume group when writing new files and reading from those files later on.




References
- Removing a Disk from a Logical Volume
download file now