Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Dan

Pages: 1 [2]
16
Tips and Tricks / How to Install Mintstick (USB Formatter and USB Writer)
« on: October 28, 2015, 03:36:59 AM »
If you would like an alternative to Unetbootin for making USBs, Mintstick is a good choice. It's actually my preferred method. To me, it's the quickest and easiest to use. I've used it countless times, and it has always worked.

If you're unfamiliar with it, when you add it to your system, it comes as two separate apps. It won't be called Mintstick in your menu. The first app you'll want to use is the USB Stick Formatter...use it to format your USB before you write anything to it.

The second app is called the USB Image Writer. Use it to write your image to the USB after formatting.

Edited: Don't use the PPA. I'll explain in the following post.

1. You can add the PPA and install it through the terminal by entering the following commands...

sudo add-apt-repository ppa:tsvetko.tsvetkov/trusty-backports

sudo apt-get update

sudo apt-get install mintstick


2. You can directly install it (with the GDebi Package Installer) by downloading it from the link below. The latest build will be the last "all.deb" on the list.

http://packages.linuxmint.com/pool/main/m/mintstick/

Either method will place it in your menu's Accessories category.

17
Tips and Tricks / How to disable your touchpad
« on: October 23, 2015, 11:02:07 AM »
I originally installed wattOS on an older desktop computer...I liked it so much, that I just recently installed it on a newer laptop that I have too.  ;)   :D

Of course, that brought up the need to disable the touchpad while typing. This can be fixed in a couple of ways.

1. If you prefer a GUI tool for this, you can install GPointing Device Settings. It's available through the Synaptic Package Manager, or you can install it with the terminal with the following command...

sudo apt-get install gpointing-device-settings

This works well, but be aware...you will have to mark your settings again each time you reboot or log out of your computer.

2. Instead of a GUI tool, simply add a command to the autostart file. That way, it's permanent.  ;)

First, you need to find the right file. Open your file manager, click View in the tool bar, and click on Show Hidden. Now follow this file path...

.config>lxsession>LXDE>autostart

Now...if you want to simply disable your touchpad while typing, add the following line to the autostart file...

@syndaemon -i 1.0 -d

This is set for a 1 second delay; hence, the 1.0 in the command. That number can be varied to your preference, and can be adjusted by tenths. Such as 1.1, 1.7, 2.5, etc...

However, if you're like me, and you don't want to use your touchpad at all, you can completely disable it by adding this command instead...

@synclient TouchpadOff=1

3. Close the autostart file, and tell it to save the changes. Now log out and log back in to your computer, and your settings will be permanently saved.  ;)

18
Tips and Tricks / How to install a VPN on your system
« on: October 17, 2015, 04:52:40 PM »
THESE DIRECTIONS ARE OLD. USERS CAN NOW EASILY INSTALL BITMASK INSTEAD.

https://bitmask.net/

If you'd like to increase your security and privacy while online, adding a VPN is a great option. If you've never tried a VPN, this will hopefully make adding one to your system a little easier. To make it simpler, I will focus on one VPN in particular. Also, this is a free VPN, so it's a good place to start if you're new to this.

Alright...let's get started. This will be a little lengthy, but I'll try to make it as easy to follow as possible.  :)

1. Open your terminal and enter (or copy and paste) the following command...

        sudo apt-get install network-manager-openvpn

That will install what's necessary to have a VPN on your network manager. You can close the terminal after it's installed.

2.  Go to the following website to get your free OpenVPN bundle. Don't worry, you don't have to give any information!

http://www.vpnbook.com/

When the website opens, click on the Free VPN tab at the top of the page. To download a VPN bundle, click on one of the bundles in the right column (under the Free OpenVPN heading). I chose the US1 OpenVPN Certificate Bundle. To make this simple, all instructions will be related to this bundle. Also, the username and password are shown at the bottom of the list. Write them down, because you will need them later!

3.  Create a new Folder to extract the downloaded bundle into your File Manager.

I created a folder in opt and named it VPN, but you can create it where you prefer.

4.  Now find your downloaded bundle in your Downloads folder.

 - Right-click the zip file and open with Xarchiver.
 - Click the Extract icon.
 - In the window that pops up, navigate to the new folder you just created for your VPN. Then click Extract at the bottom of the window.

5.  Go to (and open) the new VPN folder that you created in your file manager. There should be files in the folder now.

6.  Create 3 empty text files in the new VPN folder.

This is done by right-clicking on any empty space in the folder and choosing Create New > Empty File.

 - Name the first one ca.crt and click Ok.
 - Name the second one certificate.crt and click Ok.
 - Name the third one key.key and click Ok.

7.  Open one of the .ovpn folders. There are 4 to choose from. To make this simple, I chose the file named vpnbook-us1-tcp443.ovpn. All remaining instructions will apply to this file, but you can adapt them to others.

 - Copy all of the text between the <ca> </ca> tags and paste it into ca.crt file that you made.
 - Copy all of the text between the <cert> </cert> tags and paste into certificate.crt file that you made.
 - Copy all of the text between the <key> </key> tags and paste into key.key file that you made.

Okay...the hard part is over!  :D

8.  Click the Network icon on your panel.

 - Hover your pointer over VPN Connections
 - Click Configure VPN
 - In the window that pops up, click Add
 - In the window that pops up, choose OpenVPN from the drop-down list.
 - Click Create

9. The editing window for your VPN will pop up. Fill in the following information...

 - Connection name: leave it as is or name it what you'd like.
 - Gateway: enter the IP address found in the .ovpn file.

When you open the .ovpn file, it will be the fourth line down. For example, the fourth line will read...remote 198.7.62.204 443
Just copy and paste the numbers (highlighted in yellow) with their periods for the Gateway...don't include the word remote.


 - Type: Password with Certificates (TLS)
 - Username: enter the username given from the website.
 - Password: enter the password given from the website.
 - User Certificate: choose the certificate.crt file that you made.
 - CA Certificate: choose the ca.crt file that you made.
 - Private Certificate: choose the key.key file that you made.
 - Private Key Password: leave it empty.

10. Click on Advanced...

In the Advanced window, fill in and put checkmarks in the following...

 - Use custom gateway port: 443 (Hint: 443 was in my .ovpn file name.)
 - Use LZO data compression
 - Use a TCP connection

Now, click the Security tab, and fill in the following...

 - Cipher: AES-128-CBC

 - Click OK to close the Advanced window.
 - Click Save to close the VPN editing window.

Now, if everything went right, you're ready to connect to your VPN...

11. Click the Network icon on your panel.

 - Hover your pointer over VPN Connections.
 - Your VPN should show up by whatever name you gave it...click on it.

You should see activity on the Network Manager icon. It may take a few moments, but if the connection is established, a lock should appear on your Network Manager icon.

 ;)

19
Tips and Tricks / How to change the default mouse cursor
« on: September 18, 2015, 02:17:54 PM »
If you would like to have a different mouse cursor, it's easily changed...or perhaps you've installed a different cursor, but you've noticed that the cursor will revert back to the black default cursor on certain windows/borders...

1. Install the cursor theme of your choice. You can search for cursors in the Synaptic Package Manager or install the cursors with the Terminal if you prefer that method. 

2. After installing the cursors, go to "Customize Look and Feel" in the Preferences category of the menu. Click on the Mouse Cursor tab, and click the new cursor that you want to use. Close the Look and Feel window.

Now, let's make it the default cursor...so that it shows up on all windows and borders.

3. Open your Terminal, and enter this command...

Code: [Select]
sudo update-alternatives --config x-cursor-theme
You will see a list that shows all of your available cursors. To the left of each one is a number. Enter the number that coincides with the cursor that you want to use, hit Enter, and exit the Terminal.

4. Log out of your computer, and log back in...your cursor will now be the default cursor.  :)

20
Introductions / Hi folks!
« on: September 11, 2015, 01:32:17 PM »
Hi everyone! I'm Dan, and I've just began using WattOS...love it!


Pages: 1 [2]