Showing posts with label Ubuntu. Show all posts
Showing posts with label Ubuntu. Show all posts

Saturday, December 15, 2012

How to install Nero Essential on Linux


ဒီဆုိဒ္တြင္ Post 500 ျပည့္တဲ့အထိမ္းအမွတ္နဲ႔။ Nero Essential ကုိ linux ေပၚမွာ တင္ခ်င္သူမ်ားအတြက္ ေရးေပးလုိက္ျပီ။ 32 bit ဖုိင္ပဲတင္ထားတာျဖစ္ေသာေၾကာင့္ 32 bit သမားေတြပဲ install လုပ္လုိ႔ရပါလိမ့္မယ္။ 64 bit ဖုိင္လုိခ်င္လွ်င္ shout box မွာ မွာယူႏုိင္ပါသည္။
ဖုိင္ဆုိဒ္မ်ားေသာေၾကာင့္ ဖုိင္ကုိ သုံးခုခြဲျပီးတင္ေပးလုိက္ပါတယ္။
nerorar. nerolinux-4000-x86deb

nerolinux-4000-x86rpm


Wednesday, December 12, 2012

Ubuntu IRC chat room

IRC chat room ကဘာေကာင္းလဲ။
သူက secure ပုိျဖစ္ပါသည္။ တကယ့္လွိဳ၀ွက္သတင္းေတြဆုိလွ်င္ IRC ထဲမွာသုံးသင့္ပါတယ္။ ေျပာခ်င္တဲ့ သူကုိ chatroom ထဲမွာ စကားေျပာႏုိင္သလုိ အားလုံးနဲ႔လည္း ေျပာႏုိင္ပါသည္။  ubuntuforums IRC

Sunday, November 18, 2012

Usefull Linux Commands to know…

date – Show the current date and time
cal – Show this month’s calendar
uptime – Show current uptime
w – Display who is online
whoami – Who you are logged in as
finger user – Display information about user
uname -a – Show kernel information
cat /proc/cpuinfo – CPU information
cat /proc/meminfo – Memory information
df – Show disk usage
du – Show directory space usage
free – Show memory and swap usage
Keyboard Shortcuts
Enter – Run the command
Up Arrow – Show the previous command
Ctrl + R – Allows you to type a part of the command you’re looking for and finds it
Ctrl + Z – Stops the current command, resume with fg in the foreground or bg in the background
Ctrl + C – Halts the current command, cancel the current operation and/or start with a fresh new line
Ctrl + L – Clear the screen
command | less – Allows the scrolling of the bash command window using Shift + Up Arrow and Shift + Down Arrow
!! – Repeats the last command
command !$ – Repeats the last argument of the previous command
Esc + . (a period) – Insert the last argument of the previous command on the fly, which enables you to edit it before executing the command
Ctrl + A – Return to the start of the command you’re typing
Ctrl + E – Go to the end of the command you’re typing
Ctrl + U – Cut everything before the cursor to a special clipboard, erases the whole line
Ctrl + K – Cut everything after the cursor to a special clipboard
Ctrl + Y – Paste from the special clipboard that Ctrl + U and Ctrl + K save their data to
Ctrl + T – Swap the two characters before the cursor (you can actually use this to transport a character from the left to the right, try it!)
Ctrl + W – Delete the word / argument left of the cursor in the current line
Ctrl + D – Log out of current session, similar to exit
Learn the Commands
apropos subject – List manual pages for subject
man -k keyword – Display man pages containing keyword
man command – Show the manual for command
man -t man | ps2pdf – > man.pdf – Make a pdf of a manual page
which command – Show full path name of command
time command – See how long a command takes
whereis app – Show possible locations of app
which app – Show which app will be run by default; it shows the full path
Searching
grep pattern files – Search for pattern in files

grep -r pattern dir – Search recursively for pattern in dir
command | grep pattern – Search for pattern in the output of command
locate file – Find all instances of file
find / -name filename – Starting with the root directory, look for the file called filename
find / -name ”*filename*” – Starting with the root directory, look for the file containing the string filename
locate filename – Find a file called filename using the locate command; this assumes you have already used the command updatedb (see next)
updatedb – Create or update the database of files on all file systems attached to the Linux root directory
which filename – Show the subdirectory containing the executable file called filename
grep TextStringToFind /dir – Starting with the directory called dir, look for and list all files containing TextStringToFind
File Permissions
chmod octal file – Change the permissions of file to octal, which can be found separately for user, group, and world by adding: 4 – read (r), 2 – write (w), 1 – execute (x)
Examples:
chmod 777 – read, write, execute for all
chmod 755 – rwx for owner, rx for group and world
For more options, see man chmod.
File Commands
ls – Directory listing
ls -l – List files in current directory using long format
ls -laC – List all files in current directory in long format and display in columns
ls -F – List files in current directory and indicate the file type
ls -al – Formatted listing with hidden files
cd dir – Change directory to dir
cd – Change to home
mkdir dir – Create a directory dir
pwd – Show current directory
rm name – Remove a file or directory called name
rm -r dir – Delete directory dir
rm -f file – Force remove file
rm -rf dir – Force remove an entire directory dir and all it’s included files and subdirectories (use with extreme caution)
cp file1 file2 – Copy file1 to file2
cp -r dir1 dir2 – Copy dir1 to dir2; create dir2 if it doesn’t exist
cp file /home/dirname – Copy the file called filename to the /home/dirname directory
mv file /home/dirname – Move the file called filename to the /home/dirname directory
mv file1 file2 – Rename or move file1 to file2; if file2 is an existing directory, moves file1 into directory file2
ln -s file link – Create symbolic link link to file
touch file – Create or update file
cat > file – Places standard input into file
cat file – Display the file called file
more file – Display the file called file one page at a time, proceed to next page using the spacebar
head file – Output the first 10 lines of file
head -20 file – Display the first 20 lines of the file called file
tail file – Output the last 10 lines of file
tail -20 file – Display the last 20 lines of the file called file
tail -f file – Output the contents of file as it grows, starting with the last 10 lines
Compression
tar cf file.tar files – Create a tar named file.tar containing files
tar xf file.tar – Extract the files from file.tar
tar czf file.tar.gz files – Create a tar with Gzip compression
tar xzf file.tar.gz – Extract a tar using Gzip
tar cjf file.tar.bz2 – Create a tar with Bzip2 compression
tar xjf file.tar.bz2 – Extract a tar using Bzip2
gzip file – Compresses file and renames it to file.gz
gzip -d file.gz – Decompresses file.gz back to file
Printing
/etc/rc.d/init.d/lpd start – Start the print daemon
/etc/rc.d/init.d/lpd stop – Stop the print daemon
/etc/rc.d/init.d/lpd status – Display status of the print daemon
lpq – Display jobs in print queue
lprm – Remove jobs from queue
lpr – Print a file
lpc – Printer control tool
man subject | lpr – Print the manual page called subject as plain text
man -t subject | lpr – Print the manual page called subject as Postscript output
printtool – Start X printer setup interface
Network
ifconfig – List IP addresses for all devices on the local machine
ping host – Ping host and output results
whois domain – Get whois information for domain
dig domain – Get DNS information for domain
dig -x host – Reverse lookup host
wget file – Download file
wget -c file – Continue a stopped download
SSH
ssh user@host – Connect to host as user
ssh -p port user@host – Connect to host on port port as user
ssh-copy-id user@host – Add your key to host for user to enable a keyed or passwordless login
User Administration
adduser accountname – Create a new user call accountname
passwd accountname – Give accountname a new password
su – Log in as superuser from current login
exit – Stop being superuser and revert to normal user
Process Management
ps – Display your currently active processes
top – Display all running processes
kill pid – Kill process id pid
killall proc – Kill all processes named proc (use with extreme caution)
bg – Lists stopped or background jobs; resume a stopped job in the background
fg – Brings the most recent job to foreground
fg n – Brings job n to the foreground
Installation from source
./configure
make
make install
dpkg -i pkg.deb – install a DEB package (Debian / Ubuntu / Linux Mint)
rpm -Uvh pkg.rpm – install a RPM package (Red Hat / Fedora)
Stopping & Starting
shutdown -h now – Shutdown the system now and do not reboot
halt – Stop all processes – same as above
shutdown -r 5 – Shutdown the system in 5 minutes and reboot
shutdown -r now – Shutdown the system now and reboot
reboot – Stop all processes and then reboot – same as above
startx – Start the X system

credit to uploader

Tuesday, November 13, 2012

Ubuntu မွ အင္တာနက္ သီခ်င္း သိမ္းဆည္းျခင္း ၀န္ေဆာင္မႈကို ၆လ အခမဲ့ေပးမည္

ကမာၻေပၚမွာ linux platform မ်ားကို ထုတ္လုပ္ေနေသာ နာမည္ၾကီး vendor တစ္ခုျဖစ္သည့္ ubuntu သည္ ယခုအခါ online music ၀န္ေဆာင္မႈကိုပါ ထပ္မံတိုးခ်ဲ႕လိုက္ျပီျဖစ္သည္။
ယခင္ Apple ၏ itunes music store က စတင္ ၀န္ေဆာင္မႈေပးျပီး မ်ားမၾကာမီတြင္
 ထြက္ေပၚလာခဲ့ျခင္းျဖစ္ေသာ္လည္း ယခုအခါ အခမဲ့ 20GB ကို စတင္ေပးခဲ့ျခင္း ျဖစ္သည္။ ေနာက္ပိုင္း တြင္ တစ္လကို ၃ ဒသမ ၉၉ ေဒၚလာျဖင့္ အသံုးျပဳရမည္ျဖစ္ျပီး android, iphone နွင့္ အျခားေသာ smart phone မ်ားတြင္ အသံုးျပဳႏိုင္မည္ျဖစ္သည္။ ubuntu သည္ top 10 Linux Distribution ၏ ပထမေနရာတြင္ ႏွစ္အတန္ၾကာေနရာယူထားႏိုင္ခဲ့ျပီး plugins မ်ားႏွင့္ ထပ္တိုးပစၥည္းအေပၚမ်ားဆံုး distribution တစ္ခုလည္းျဖစ္သည္။ သို႔အတြက္ေၾကာင့္ Online music store ျဖစ္သည့္ ubuntu one ကို အသက္သြင္းျခင္းသည္ ubuntu ၏ ေနာက္ထပ္ အဆင့္တိုးျမင့္မႈတစ္ခုျဖစ္ႏိုင္ မျဖစ္ႏိုင္၊ သို႔တည္းမဟုတ္ အျခားေသာ distro မ်ားႏွင့္ ေပါင္းစည္းမည္ေလာ ဆိုသည္မွာ ေစာင့္ၾကည့္ရမည့္အေနအထားျဖစ္ပါသည္။

source: http://www.lwinmaungmaung.com

Thursday, September 20, 2012

How to connect Internet Access by using android ph on ubunu


ubuntu နဲ႔ အင္တာနက္ခ်ိတ္မယ္ဆုိလွ်င္ အရင္ဆုံး android ph ရဲ့ plug ၾကဳိးကုိ ကြန္ပ်ဴတာတြင္ထုိးပါ။
android ဖုန္းတြင္ အင္တာနက္ခ်ိတ္တဲ့ settingမ်ား ခိ်န္ထားပါ။ ၾကဳိးနဲ႔ထုိးလွ်င္ ကြန္ပ်ဴတာနဲ႔ connect ျဖစ္သြားပါျပီ ဒါဆုိလွ်င္ configure လုပ္လုိ႔ရသြားပါျပီ။ edit connections ကုိသြားပါ။
ျပီးလွ်င္ ပုံတြင္ျပထားသည့္အတုိင္း အဆင့္ဆင့္လုပ္ေဆာင္ပါ။ window မွာလုိပဲ မခက္ပါဘူး။
ပုံမျမင္ရသူမ်ား double click ႏွိပ္ျပီး အၾကီးခ်ဲ႕ႏုိင္ပါတယ္။







Shortcut key on Ubuntu














သူငယ္ခ်င္းတစ္ေယာက္က shortcut ေတြလုိခ်င္လုိ႔ဆုိလုိ႔ တင္ေပးလုိက္ပါတယ္။ ပုံမွာျပထားသည့္အတုိင္း system>keyboard>shortcut ထဲ၀င္ျပီး shortcut ကီးမ်ားကုိ

 Ubuntu မွာေလ့လာႏုိင္ပါတယ္။ အာလုံးအဆင္ေျပၾကပါေစ။

 


Tuesday, September 18, 2012

How to install vlc player on ubuntu

















ကြ်န္ေတာ္တစ္ညလုံး ရွာလုိက္ရတဲ့ဗ်ာ စာဖတ္မွားသြားတာ
ပထမဦးဆုံး  terminal မွာဒါသြားရုိက္လုိက္တယ္။
% sudo apt-get update
% sudo apt-get install vlc vlc-plugin-pulse mozilla-plugin-vlc

install  လုပ္ျပီးေတာ့ vlc player ဘာမွမေပၚလာပဲ black screen ၾကီးေပၚလာတယ္။
ပာုိလူလုိက္ေမးဒီလူကုိလုိက္ေမးနဲ႔ေပါ့ ဒါေပမယ့္ ေသခ်ာတဲ့ အေျဖမရပါဘူး။
အဂၤလိပ္လုိေရးထားတာေလးေသခ်ာျပန္ဖတ္ၾကည့္ေတာ့မွ



Graphical way Open Synaptic application
Click on System -> Administration -> Synaptic Package Manager.
In Settings -> Repositories, make sure you have an universe repository activated.
Search for vlc and install it, as well as vlc-plugin-pulse. You may also want to install mozilla-plugin-vlc.
If you are interested in streaming or transcoding, you should additionnally install libavcodec-extra-52from a multiverse repository.

Command line way

You need to check that a universe mirror is listed in your /etc/apt/sources.list file.
% sudo apt-get update
% sudo apt-get install vlc vlc-plugin-pulse mozilla-plugin-vlc
ဒီေတာ့မွကြ်န္ေတာ္ synaptic ကုိ အင္စေတာမလုပ္ရေသးမွန္းသိခဲ့တယ္။ေနာက္ဒီ apt-get install synaptic command ေလးကုိသုံးလုိက္မွအဆင္ေျပသြားတာ တစ္ခ်ဳိ႕program ေတြကုိ install လုပ္ႏုိင္ဖုိ႔အတြက္ သုံးရက္ေလာက္ၾကာခဲ့ဘူးတယ္။ အားေပးတာ ပာဲပာဲ

command မ်ား

apt-get install synaptic

 sudo apt-get update
sudo apt-get install vlc vlc-plugin-pulse mozilla-plugin-vlc

Wednesday, September 12, 2012

How to install Zawgyi-one font on Ubuntu 12.04


ေဒါင္းလုိ႔ရတဲ့ေဆာ့၀ဲလ္ကုိ အရင္ဆုံး Desktop ေပၚမွာတင္လုိက္ပါ။
ျပီးရင္ Ctrl+Alt+T နုိပ္လုိက္ပါ။












Terminal box က်လာလိမ့္မယ္။ျပီးသြားရင္
Terminal ဒီcommand ေလးေတြရုိက္ထည့္ပါ။
sudo -s
ရုိက္လုိက္လွ်င္ password ေတာင္းပါမယ္ ကုိယ့္ password ရုိက္ေပးလုိက္ပါ။
မွတ္ခ်က္ blank ေပၚေနလည္းကိစၥမရွိပါ ဆက္ရုိက္ပါ။ keyboard ပ်က္လုိ႔မပာုတ္ပါ။
cd Desktop
Desktop ထဲကုိ၀င္ပါမယ္။
tar xzf zawgyi-keyboard-ubuntu.tar.gz
tar.gz ကုိ ျဖည္ပါမယ္။ ဒါဆုိရင္ Zawgyi ဆုိတဲ့ဖုိဒါေလး Desktop မွာထြက္လာပါလိမ့္မယ္။
ဒီေနရာမွာသတိထားေစခ်င္တာက ဖြန္႔က zawgyi-keyboard-ubuntu.tar.gz ျဖစ္လုိ႔ ဒီနံမည္ထည့္ထားတာပါ။ rename ေျပာင္းျပီး လြယ္ကူတဲ့ name ကုိအစားထုိးမည္ဆုိလည္းရပါတယ္။



cd zawgyi   
 zawgyi   ထဲကုိ၀င္ပါမယ္။
 Install zawgyi keyboard
sudo sh install.sh
အင္စေတာ လုပ္ပါမယ္။ 1 နုိပ္ေပးလုိက္ပါ
Install complete ဆုိရင္ အားလုံးျပီးသြားပါျပီ။
font ကုိ setting change ဖုိ႔အပုိင္းပဲက်န္ေတာ့ပါတယ္။


keyboard က win ခလုတ္ေလးကုိ နုိပ္လုိက္ျပီး keyborad လုိစာရုိက္ထည့္လုိက္ပါ ပုံေပၚလာလွ်င္ keyboard layout ကုိ နုိပ္လုိက္ပါ။













အေပါင္းပုံစံေလးကုိ နုိပ္လုိက္ျပီး burmese ကုိ ေရြးေပးပါ။ ျပီးရင္ option ကုိ နုိပ္ပါ။















Alt+Shift ကုိအမွတ္ျခစ္ေပးပါ။ ဒီသေဘာက font ေျပာင္းရင္ ဘယ္ခလုတ္နဲ႔ေျပာင္းမလဲဆုိတာကုိ
ေျပာတာပါ။ ၾကဳိက္တာေရြးလုိ႔ရပါတယ္။ ေအာက္က gedit (notepad) ထဲမွာ ျမန္မာဖြန္႔ကုိ ခ်ိန္းခ်င္ရင္
Alt+Shift နုိပ္လုိက္ပါ။ ဒါဆုိရင္ ျမန္မာ font သုံးလုိ႔ရပါျပီ ခင္ဗ်ာ။
















mmfont ကုိေတာ့ ေအာက္မွာေပးထားပါတယ္။
author : ကုိစန္းပြင့္သူ
ေဒါင္းရန္

ေဆာ့၀ဲလ္
internet access မရွိသူမ်ားအတြက္
စာအုပ္