April 2

Linux: Samba setup example

apt-get install samba swat #swat is a great tool for easy configuration.

Create user:
adduser smbuser

Create Samba Password
smbpasswd -a smbuser

Example configuration file:
/etc/smb.conf

[data]
path = /mnt/yourfolder
comment = Share Folder
username = smbuser
valid users = smbuser
admin users = smbuser
unix extensions = No
read only = No
create mask = 0777
directory mask = 0777

Restart smbd
service smbd restart

By: nighthawk

Category: Linux | Comments Off on Linux: Samba setup example
March 19

Linux: Send gmail from the command line

Install msmtp

The first step is to install the msmtp-mta package.
sudo apt-get install msmtp-mta

After the install is complete you’ll need to set up the defaults file with your Gmail account information. You need to create a file in your home directory called .msmtprc.
nano ~/.msmtprc

Paste the following into the file and edit the portions in bold to reflect your account information.

#Gmail account
defaults
logfile ~/msmtp.log

account gmail
auth on
host smtp.gmail.com
from [email protected]
auth on
tls on
tls_trust_file /usr/share/ca-certificates/mozilla/Equifax_Secure_CA.crt
user [email protected]
password your_gmail_password
port 587

account default : gmail

Save the file and exit the text editor. Since this file contains your account credentials, you’ll want to change the permissions to make the file readable only by you.
chmod 600 .msmtprc
Install mailx

Now that your computer is configured to talk to Gmail, you need a command line email program to handle writing your email. For this I’m going to use mailx from the heirloom-mailx package.
sudo apt-get install heirloom-mailx

Now you need to set up the defaults file so that mailx uses msmtp to send out the email. This file is called .mailrc.
nano ~/.mailrc

Now paste the following into the file and save it.
set sendmail=”/usr/bin/msmtp”
set message-sendmail-extra-arguments=”-a gmail”

You should now be able to send email from your terminal command line.
Sending email from the command line

Now you can send email from the command line like this:
mail -s “Subject” [email protected]

The cursor will go to a blank line. Enter your email message. When you’re done, hit <Enter> to go to a blank line and then hit <Ctrl>+D to end your message. You have just sent your email.

You can also use a message saved in a text file rather than entering it interactively. This is especially useful if you’re automating this process in a script. In this example, the email is saved in a file called message.txt.
mail -s “Subject” [email protected] < message.txt

By: Linerd and txtweaks

Category: Linux | Comments Off on Linux: Send gmail from the command line
March 18

Linux: Converting virtual machine types – VDI to VMDK

Virtual box has a powerful utility called vboxmanage that can be used to perform virtual machine “type” conversions.
Conversion types: VDI|VMDK|VHD|RAW

vboxmanage clonehd <file.vdi> <file.vmdk> –format VMDK

Category: Linux | Comments Off on Linux: Converting virtual machine types – VDI to VMDK
March 11

Linux: Adding a prefix or space to each line of a file

Using sed you can easily add a prefix for each line of a file.
This is a quick command line way to format your text

sed -i -e ‘s/^/prefix/’ filename.txt

The following will add a space infront of each line
sed -i -e ‘s/^/ /’ filename.txt

Category: Linux | Comments Off on Linux: Adding a prefix or space to each line of a file
January 7

Linux: Terminal Control Escape Sequences

 

[ Status | Setup |
Fonts | Cursor |
Scrolling | Tabs |
Erasing | Printing |
Keyboard | Colours ]

 


Many computer terminals and terminal emulators support colour and
cursor control through a system of escape sequences. One such standard
is commonly referred to as ANSI Colour. Several terminal
specifications are based on the ANSI colour standard, including VT100.

The following is a partial listing of the VT100 control set.

<ESC> represents the ASCII “escape”
character, 0x1B. Bracketed tags represent modifiable decimal
parameters; eg. {ROW} would be replaced by a row
number.


Device Status

The following codes are
used for reporting terminal/display settings, and vary depending on the
implementation:

Query Device Code	<ESC>[c
  • Requests a Report Device Code response from
    the device.
Report Device Code	<ESC>[{code}0c
  • Generated by the device in response to Query Device
    Code
    request.
Query Device Status	<ESC>[5n
  • Requests a Report Device Status response
    from the device.
Report Device OK	<ESC>[0n
  • Generated by the device in response to a Query Device
    Status
    request; indicates that device is functioning
    correctly.
Report Device Failure	<ESC>[3n
  • Generated by the device in response to a Query Device
    Status
    request; indicates that device is functioning
    improperly.
Query Cursor Position	<ESC>[6n
  • Requests a Report Cursor Position response
    from the device.
Report Cursor Position	<ESC>[{ROW};{COLUMN}R
  • Generated by the device in response to a Query Cursor
    Position
    request; reports current cursor position.

Terminal Setup

The
h and l codes are used for
setting terminal/display mode, and vary depending on the implementation.
Line Wrap is one of the few setup codes that tend to be used
consistently:

Reset Device		<ESC>c
  • Reset all terminal settings to default.
Enable Line Wrap	<ESC>[7h
  • Text wraps to next line if longer than the length of the display
    area.
Disable Line Wrap	<ESC>[7l
  • Disables line wrapping.

Fonts

Some terminals support multiple
fonts: normal/bold, swiss/italic, etc. There are a variety of special
codes for certain terminals; the following are fairly standard:

Font Set G0		<ESC>(
  • Set default font.
Font Set G1		<ESC>)
  • Set alternate font.

Cursor Control

Cursor Home 		<ESC>[{ROW};{COLUMN}H
  • Sets the cursor position where subsequent text will begin. If no
    row/column parameters are provided (ie. <ESC>[H),
    the cursor will move to the home position, at the upper left
    of the screen.
Cursor Up		<ESC>[{COUNT}A
  • Moves the cursor up by COUNT rows; the default count is
    1.
Cursor Down		<ESC>[{COUNT}B
  • Moves the cursor down by COUNT rows; the default count is
    1.
Cursor Forward		<ESC>[{COUNT}C
  • Moves the cursor forward by COUNT columns; the
    default count is 1.
Cursor Backward		<ESC>[{COUNT}D
  • Moves the cursor backward by COUNT columns; the
    default count is 1.
Force Cursor Position	<ESC>[{ROW};{COLUMN}f
  • Identical to Cursor Home.
Save Cursor		<ESC>[s
  • Save current cursor position.
Unsave Cursor		<ESC>[u
  • Restores cursor position after a Save Cursor.
Save Cursor & Attrs	<ESC>7
  • Save current cursor position.
Restore Cursor & Attrs	<ESC>8
  • Restores cursor position after a Save Cursor.

Scrolling

Scroll Screen		<ESC>[r
  • Enable scrolling for entire display.
Scroll Screen		<ESC>[{start};{end}r
  • Enable scrolling from row {start} to row
    {end}.
Scroll Down		<ESC>D
  • Scroll display down one line.
Scroll Up		<ESC>M
  • Scroll display up one line.

Tab Control

Set Tab 		<ESC>H
  • Sets a tab at the current position.
Clear Tab 		<ESC>[g
  • Clears tab at the current position.
Clear All Tabs 		<ESC>[3g
  • Clears all tabs.

Erasing Text

Erase End of Line	<ESC>[K
  • Erases from the current cursor position to the end of the current
    line.
Erase Start of Line	<ESC>[1K
  • Erases from the current cursor position to the start of the
    current line.
Erase Line		<ESC>[2K
  • Erases the entire current line.
Erase Down		<ESC>[J
  • Erases the screen from the current line down to the bottom of the
    screen.
Erase Up		<ESC>[1J
  • Erases the screen from the current line up to the top of the
    screen.
Erase Screen		<ESC>[2J
  • Erases the screen with the background colour and moves the cursor
    to home.

Printing

Some terminals support local
printing:

Print Screen		<ESC>[i
  • Print the current screen.
Print Line		<ESC>[1i
  • Print the current line.
Stop Print Log		<ESC>[4i
  • Disable log.
Start Print Log		<ESC>[5i
  • Start log; all received text is echoed to a printer.

Define Key

Set Key Definition	<ESC>[{key};"{string}"p
  • Associates a string of text to a keyboard key. {key}
    indicates the key by its ASCII value in decimal.

Set Display Attributes

Set Attribute Mode	<ESC>[{attr1};...;{attrn}m
  • Sets multiple display attribute settings. The following lists
    standard attributes:

    0	Reset all attributes
    1	Bright
    2	Dim
    4	Underscore
    5	Blink
    7	Reverse
    8	Hidden
    
    	Foreground Colours
    30	Black
    31	Red
    32	Green
    33	Yellow
    34	Blue
    35	Magenta
    36	Cyan
    37	White
    
    	Background Colours
    40	Black
    41	Red
    42	Green
    43	Yellow
    44	Blue
    45	Magenta
    46	Cyan
    47	White

[ Top | Status |
Setup | Fonts |
Cursor | Scrolling |
Tabs | Erasing |
Printing | Keyboard |
Colours ]

-By: John


Category: Linux | Comments Off on Linux: Terminal Control Escape Sequences