Exploring ever
Smile, You are not owning the entire world's problems :-)
Saturday, March 22, 2025
Saturday, April 23, 2022
How to delete more than 50 emails in Gmail in one shot ? - Cleanup Gmail
Gmail regular-user account provides maximum 15 GB storage, by default. It is usually not sufficient for this information explosive age. We may need to bulk delete multiple old/spam emails from a sender in one shot to quickly save storage.
Gmail provides a way to create a new Filter to find all these emails from a sender and then delete it. Unfortunately, creating a new filter rule everytime may be an overhead and here I show how we can find all these emails and delete it without creating rules.
For example, Here, I am going to delete all the emails I received from "(noreply+feedproxy@google.com)".
1.) Find all the emails by searching them in the search box, from:(noreply+feedproxy@google.com).
Friday, July 31, 2020
How to move OneNote Note book to OneDrive ?
To move a notebook using OneNote 2010:Open the notebook that you want to move, and then click File > Info > Share on Web or Network.Follow the on-screen instructions to finish moving your notebook to OneDrive or SharePoint.
Tuesday, June 30, 2020
Backup files in MicroSoft OneDrive without loosing existing folder structure
Problem:
To backup files/folders in OneDrive, you need to move the files/folders under "OneDrive" cloud folder.
This can be painful if you already have applications/links referring to this source folder.
Moving your folder to 'OneDrive' cloud folder is disruptive here.
Alas! Those applications will break, and it is not easy to fix the links to new locations one by one.
Solution:
- Move the files/folders to 'OneDrive' cloud folder as you do normally.
- Create a link to the new folder under 'OneDrive' from previous location using mklink' utility. This is explained here: How to take advantage of symbolic links in Windows 10
Example:
a.) Win + R, "CMD", Ctrl + Shift + Enter to enter Administrator mode.
b.) C:\Users\Saravanan\Desktop> mklink /D C:\Users\Saravanan\Desktop\Step_One "C:\Users\Saravanan\OneDrive - My corportation\Step_One"
Here, I moved my "Step_One" folder from Desktop to OneDrive, and then I created a link in Desktop to new location of this folder under OneDrive.
This will make transparent redirect of file pointers to new locations for your applications, and make your OneDrive transition easy :-)
Friday, July 31, 2015
Enabling debugging in OpenSSH client and server
1.) Linux Debian based configuration files are used. (OpenSSH_5.5p1 Debian-6+squeeze5)
SSH Server :
1.) Update the /etc/init.d/ssh file to include debug option.
-d'
|
Debug mode. The server sends verbose debug
output to the system log, and does not put itself in the background. The
server also will not fork and will only process one connection. This option
is only intended for debugging for the server. Multiple -d options increase the debugging level.
Maximum is 3.
|
NAME
ssh â OpenSSH SSH client (remote login program)
SYNOPSIS
ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec] [-D [bind_address:]port] [-e escape_char] [-F configfile] [-I pkcs11]
[-i identity_file] [-L [bind_address:]port:host:hostport] [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port] [-R
[bind_address:]port:host:hostport] [-S ctl_path] [-W host:port] [-w local_tun[:remote_tun]] [user@]hostname [command]
-v Verbose mode. Causes ssh to print debugging messages about its progress. This is helpful in debugging connection, authentication, and configuraâ
tion problems. Multiple -v options increase the verbosity. The maximum is 3.