Thanks to antville.org
Which Linux?

If you're a Linux expert, Fedora is for you. If you just want a good, general-purpose desktop for home or work, then openSUSE is your best pick. And if you're new to Linux, and your computer gets along well with Ubuntu, Ubuntu is still a good choice.
Knoppix if you want to use Linux off a live CD and puppy linux is for everyone!!

... Link (0 comments) ... Comment


Killing processes

You can enter the "kill" command in a terminal if a process hangs.
kill ID
kill -9 ID
pkill firefox

You can switch to a virtual terminal using Ctrl + Alt + F1 if the user interface does not allow you to start the terminal.
This should hopefully restore some sanity to your computer and you can switch back to the GUI using Ctrl + Alt + F7

... Link (0 comments) ... Comment


vim syntax

behave mswin - Copy and Paste with Ctrl+C CtrlV
set laststatus=2 - grey status bar at the bottom
syntax on - syntax highlighting
set autoindent - auto indenting
set number - line numbers
set showcmd - show command in status line
set showmatch - show matching brackets
set ignorecase - do case insensitive matching
set hlsearch - highlight what you search for

... Link (0 comments) ... Comment


Easy SSH

HashKnownHosts no
Add the above line in your ssh_config file that can be found here....
/etc/ssh/ssh_config

... Link (0 comments) ... Comment


Overwriting files

output redirection using n> usually overwrites existing files. You can control this with the noclobber option of the set builtin. If it has been set, you can override it using n>|

$ set -o noclobber
$ ls x* z* >stdout.txt 2>stderr.txt
-bash: stdout.txt: cannot overwrite existing file
$ ls x* z* >|stdout.txt 2>|stderr.txt
$ set +o noclobber

... Link (0 comments) ... Comment


send messages across network

The following command can be used to send messages to remote servers.

ssh -X root@123.123.123.123 'DISPLAY=:0 notify-send "TEST MESSAGE."'

The command that actually sends the message is...
notify-send "hi vandana"

... Link (0 comments) ... Comment


power of wget

wget is really a very powerful utility. Here is an example.

wget -mk http://oksoft.antville.org

I can download all the pages linked from my blog. And it is so easy!

-m (--mirror) Turn on options suitable for mirroring. This option turns on recursion and time-stamping, sets infinite recursion depth and keeps FTP directory list‐ings. It is currently equivalent to -r -N -l inf --no-remove-listing.

-k (--convert-links) After the download is complete, convert the links in the document to make them suitable for local viewing.

... Link (0 comments) ... Comment


sed can make you sad!

Changing the -e to -i in the following can be disastrous. It will replace the character "g" from all text files found in current directory as well as subfolder.

$ find . -name "*.txt" -exec sed -e 's/g//g' {} \;

Be careful with sed's -i option

___

It can also be very useful to change a string across all files...

select.worldpay.com/wcc/purchase

replace this with the new string

select.wp3.rbsworldpay.com/wcc/purchase/

The command would be...
grep 'select.worldpay.com/wcc/purchase' . -Rl | xargs sed -i 's/select.worldpay.com\/wcc\/purchase/select.wp3.rbsworldpay.com\/wcc\/purchase/g'

... Link (0 comments) ... Comment


Finding in Linux

I was looking for the file translate.html from my backup drives, e: and f:
Since it was taking some time on Windows system, I stared the live session of Ubuntu and used the following command after touching both the drives from "Places" menu.

find /media/ -name translate.html

Very fast and accurate results!

... Link (0 comments) ... Comment


awk power

$ cat salaries
Yvette van der Hoff 100000
Sarack Abama 400000
Bernie Madoff 0
John Q. Public 20000

$ awk '{print $NF, $0}' salaries | sort -nr -k1,1 | cut -d" " -f2-
Sarack Abama 400000
Yvette van der Hoff 100000
John Q. Public 20000
Bernie Madoff 0

$ awk -F '\t' -v 'OFS=\t' '{print $4, $3, $5, $2, $1}' data.txt
POP. COUNTY GOVT. CITY STATE
123 Gila Mayor Ely AZ
345 Lolo Sheriff Alma CA
22 El Paso Bubba Leroy TX

... Link (0 comments) ... Comment


Online for 8125 days
Last modified: 10/13/24, 10:18 AM
Status
Youre not logged in ... Login
Menu
... Home
... Tags

Search
Calendar
November 2024
SunMonTueWedThuFriSat
12
3456789
10111213141516
17181920212223
24252627282930
October
Recent updates
Extract words Extract all incorrect
words in first.txt file and all correct ones in second.txt...
by shantanuo (10/13/24, 10:18 AM)
Remove hyperlink in LO writer
1) Select "Internet Link" from Character styles. 2) Right click...
by shantanuo (10/9/24, 8:09 AM)
Templates in LO writer 1)
File > Templates > Save as Template 2) Give it...
by shantanuo (10/9/24, 8:07 AM)
discretize continuous features You can
"discretize" or "bin" continuous features into categorical features. from sklearn.preprocessing...
by shantanuo (4/24/24, 9:33 AM)
User Defined Property You
can create User Defined Property in libreoffice writer. File – Properties...
by shantanuo (1/9/23, 8:52 AM)
Arranging Chapters in the Navigator
To use a custom paragraph style for a heading, choose...
by shantanuo (1/4/23, 8:26 AM)
Use focus mode using Android
phones Settings > Digital Wellbeing and parental controls. Tap your...
by shantanuo (1/1/23, 3:59 AM)
Embed Fonts in document If
you use a font that the recipient is unlike to...
by shantanuo (12/18/22, 10:07 AM)
Using Navigator in Writer To
open the Navigator, select View > Navigator, or press the...
by shantanuo (12/18/22, 10:06 AM)
More about hyphenation The settings
for Tools > Options > Language Settings > Writing Aids...
by shantanuo (12/18/22, 10:04 AM)
link or unlink template If
you are using Libre office then template changer extension is...
by shantanuo (12/16/22, 5:27 AM)
Finding Styles you can select
Edit > Find and Replace > Other Options > Paragraph...
by shantanuo (12/14/22, 7:17 AM)
regex in clac In LibreOffice
Calc, you can use function REGEX for e.g. Begins with...
by shantanuo (12/14/22, 4:40 AM)
Libre Calc tips Turn Off
Grid Lines If you want to turn off grid lines...
by shantanuo (12/13/22, 8:14 AM)
More about Styles You can
goto View - Styles and change "All Styles" to "Applied...
by shantanuo (12/13/22, 7:49 AM)
Page Break Before Every Chapter
If your chapter titles are using the "Heading 2" Style:...
by shantanuo (12/13/22, 6:36 AM)
View and print in different
color Displaying Color in LO but Printing as White Page...
by shantanuo (12/13/22, 6:26 AM)
Change Normal Template in Libreoffice
Writer 1) Open a new file and set your font;...
by shantanuo (12/12/22, 8:45 AM)
Short english words in Devanagari
The list of short english words written in Devanagari. #...
by shantanuo (10/5/22, 9:05 AM)
Card issuing banks CITI
Standard Chartered HSBC American Express HDFC ICICI AXIS INDUS IND Kotak...
by shantanuo (7/16/22, 4:46 AM)
Activate IAM Access To activate
the Activate IAM Access setting, you must log in to...
by shantanuo (7/12/22, 5:52 AM)
use cheat instead of man
wget https://github.com/cheat/cheat/releases/download/4.2.3/cheat-linux-arm64.gz gunzip cheat-linux-arm64.gz chmod 770 cheat-linux-arm64 ./cheat-linux-arm64 mv cheat-linux-arm64...
by shantanuo (7/4/22, 8:53 AM)
python module itertools list of
useful methods of itertools module. permutations combinations combinations_with_replacement zip_longest count...
by shantanuo (9/8/21, 7:50 AM)
wikipedia tools 1) Collection of
useful utilities https://wikipediatools.appspot.com/ 2) all history of a user https://xtools.wmflabs.org/ec/mr.wikisource.org/Shantanuo...
by shantanuo (8/20/21, 6:36 AM)
Duration/Term of Copyright In the
case of original literary, dramatic, musical and artistic works, the...
by shantanuo (8/20/21, 6:26 AM)

RSS feed

Made with Antville
Helma Object Publisher