Showing posts with label linux tips and tricks. Show all posts
Showing posts with label linux tips and tricks. Show all posts
Saturday, September 8, 2012
Saturday, August 4, 2012
How to split large files in small parts?
If you are tired of uploading very large files and sometimes connection goes down then reuploading is very problematic so Here the solution to divide large files into various parts easily and efficiently.
HJSplit is the tool for dividing large files into small parts and vice versa if you have make parts using this tool.
HJSplit is freeware and Cross-platform means it is available for all operating systems like windows,mac and linux.
Download HJSplit from here for perticular operating system.
HJSplit for Windows
HJSplit for MAC
HJSplit for Linux
HJSplit is the tool for dividing large files into small parts and vice versa if you have make parts using this tool.
HJSplit is freeware and Cross-platform means it is available for all operating systems like windows,mac and linux.
Download HJSplit from here for perticular operating system.
HJSplit for Windows
HJSplit for MAC
HJSplit for Linux
Saturday, July 28, 2012
Add broadcom wireless support in Ubuntu
When you install, or upgrade to, Ubuntu 11.04 you may notice that you can not use your Broadcom Wireless adapter. Many people have left Ubuntu and/or Linux for this reason. Yes, you can look online for a way to install the driver, but I’m going to show you how to quickly install the driver. The way I’m going to show you works in all Ubuntu derivatives.
First, open a Terminal, and enter:
sudo apt-get firmware-b43-installer
First, open a Terminal, and enter:
sudo apt-get firmware-b43-installer
It will ask you for your password which you should enter. When the program has been successfully installed go back to your terminal and type in:
sudo apt-get install b43-fwcutter
sudo apt-get install b43-fwcutter
Again, typing in your password.If you don’t wont to use the terminal you can open your package manager and search for bcm. Make sure you uninstall the bcmw1-
kernal-source package. Search for firmware-b43-installer and install
it, then search for b43-fwcutter and install that. Your wireless should
now work.. Remember, you need to have a wired network connection to do the
steps above!
kernal-source package. Search for firmware-b43-installer and install
it, then search for b43-fwcutter and install that. Your wireless should
now work.. Remember, you need to have a wired network connection to do the
steps above!
Getting started with Ubuntu 12.04
Hello,every one.
Ubuntu manual project has just released new version of manual named as "Getting started with Ubuntu 12.04" which very nice formatted with images.
It is very useful to linux newbies/geeks to surf over Ubuntu 12.04 to get the new features like Unity ,New dashboard and many things.
Im always heavy user of Ubuntu so i support it personally.
This guide is freely available at Ubuntu Manual Site.
Download it and Free yourself with Ubuntu 12.04.
Open K-menu on Window key press event
Many KDE-users want to open their K-menu(default right side menu bar) when windows key(super key) is pressed.
Here is the best solution.
Steps:
- Find the scancode for SuperKey.
Open a terminal and type:
xev
- Press your SuperKey (Windows Key) and watch the scan code returned (mine is 133)
- Map that scan code to a 'phantom key (F13)'
With this test--type:
xmodmap -e "keycode 133=F13"
You should get returned to a prompt with no message. Then, right-click on the KDE menu, choose Launcher Settings, Keyboard Shortcut, then click the wrench symbol. Press your SuperKey and F13 should appear. Click Apply.
Test the menu by pressing the SuperKey--it should now appear.
- Automatically create mapping on startup
If the above worked, you now need to automate the key mapping on each startup. From the terminal window type:
cat << EOT >> ~/.kde/Autostart/xmod.sh
#!/bin/bash
xmodmap -e "keycode 133=F13"
EOT
sudo chmod 755 ~/.kde/Autostart/xmod.sh
Thats it..Bingo...You are KDE-Power-User..
Tuesday, July 24, 2012
Solve brightness problem in Ubuntu on Acer/Gateway
If you are facing brightness adjustment problem on you laptop like you can not adjust your laptop brightness using fn keys then try following one...
It will work on all ubuntu versions uptill now and you may try it on other gnu/linux oprating sytems that is derived from ubuntu or debian like mint,zorin,kubuntu,etc...
This problem occurres mainly in acer and gateway laptops but you may try on your laptop if have this type of problem.
Steps:
1. In a terminal window, ype in:
Code:
gedit ./backlight_d.sh
2. Copy and paste the following into the mousepad application that just opened:
Quote:
| #!/bin/bash old_b=9; declare -i curr_b=240; declare -i target_b=240; while : ; do b=`cat /sys/class/backlight/acpi_video0/brightness`; delay="0.5" if [ $old_b != $b ]; then old_b=$b let "target_b=$b * 20 + 12" #printf "Target: %10d\n" $target_b fi hex_b="."; if [ "$curr_b" -lt "$target_b" ] ; then let "curr_b=$curr_b + 2" if [ "$curr_b" -gt "$target_b" ] ; then let "curr_b=$target_b" fi hex_b="-" elif [ "$curr_b" -gt "$target_b" ] ; then let "curr_b=$curr_b - 2" if [ "$curr_b" -lt "$target_b" ] ; then let "curr_b=$target_b" fi hex_b="-" fi if [ $hex_b != "." ] ; then hex_b=`printf "%02X" $curr_b` delay="0.005" setpci -s 00:02.0 F4.B=$hex_b fi sleep $delay done |
Code:
File->Save(save it through closing it)
Code:
sudo cp ./backlight_d.sh /etc/ && sudo chmod +x /etc/backlight_d.sh
5. Enter the following into the terminal window:
Code:
sudo mousepad /etc/rc.local
Code:
nohup /etc/backlight_d.sh &
Quote:
| nohup /etc/backlight_d.sh & exit 0 |
Keyboard shortcuts for Bash(Linux terminal)
| Ctrl + A | Go to the beginning of the line you are currently typing on |
| Ctrl + E | Go to the end of the line you are currently typing on |
| Ctrl + L | Clears the Screen, similar to the clear command |
| Ctrl + U | Clears the line before the cursor position. If you are at the end of the line, clears the entire line. |
| Ctrl + H | Same as backspace |
| Ctrl + R | Let’s you search through previously used commands |
| Ctrl + C | Kill whatever you are running |
| Ctrl + D | Exit the current shell |
| Ctrl + Z | Puts whatever you are running into a suspended background process. fg restores it. |
| Ctrl + W | Delete the word before the cursor |
| Ctrl + K | Clear the line after the cursor |
| Ctrl + T | Swap the last two characters before the cursor |
| Esc + T | Swap the last two words before the cursor |
| Alt + F | Move cursor forward one word on the current line |
| Alt + B | Move cursor backward one word on the current line |
| Tab | Auto-complete files and folder names |
Linux with fun: Text based console browser
Hey,friends…
Lets do fun with Linux terminal.Here I want to share one Linux console utility called ELINKS.
Basically elinks was developed for UNIX systems as browser.
To download it,put this command in terminal.
sudo apt-get install elinks
After downloading this put “elinks” in terminal to open text based console browser.you can open multiple terminals for multiple tabs.
It will be very faster because there no image and other media downloading so only text with links can be seen.
Screenshot:
Subscribe to:
Posts (Atom)







