I am trying to add a menu item that will run a script from the terminal. However after adding it, it does not open a terminal, and it does not run the script.
The menu item is simply to start a minecraft server. It works fine running the command via command line, but I can't get the menu item to work. Is there a way to set the directory path to run the script from (so it will find all the files it needs to run)? And also why does it not open the terminal window, when I have that option checked (using main menu).
Thanks
I am looking for a text and video review of LL 2.0 for a possible new Linux user. I have looked for appropriate reviews for an XP user who did not even know what an OS was much less what he was using. Hopefully, he will figure out how to view a video although I do not think he has ever watched one on his computer. Some of the reviews of older versions look better that those for 2.0 but it may be difficult to explain why 2.0 doesn't look exactly the same as the older versions.
I have been looking at videos and text reviews that I have bookmarked but most seem to at least start off for someone with more computer knowledge than he appears to have. He will probably have to have one of his adult children install for him because he lives over 500 miles away from where I live.
Recommendations of reviews will be much appreciated.
All,
I'm using latest download of LinuxLite under vmware (64bit). Got it loaded fine and am able to use it so far with the exception of being able to save a file with LibreOfiice. It gives a generic message that it had an error saving the file, write error. Any ideas?
Thanks,
Jeff
Hi,
FYI
I found that my hardware produces some odd behaviour regarding WiFi, I have observed this with LL2 & Mint 17
It will connect to my WiFi 100% from a power on, or boot Live usb stick,
But once installed, if I just do a re-start it will only re-connect 10% of the time.!!!, WLan Card in some odd state/Driver/Timing issue.??
HP Laptop with:
dave@hp-laptop:~$ inxi -c 5 -b
System: Host: hp-laptop Kernel: 3.13.0-24-generic x86_64 (64 bit) Desktop: Xfce 4.11.6 Distro: Ubuntu 14.04 trusty
Machine: System: Hewlett-Packard product: HP Pavilion TS 14 Notebook PC version: 0881100000305E00000620100
Mobo: Hewlett-Packard model: 2161 version: 29.42 Bios: Insyde version: F.62 date: 03/06/2014
CPU: Dual core Intel Core i5-4200U CPU (-HT-MCP-) clocked at 759.00 MHz
Graphics: Card: Intel Haswell-ULT Integrated Graphics Controller
X.Org: 1.15.1 drivers: intel (unloaded: fbdev,vesa) Resolution: [email protected]
GLX Renderer: Mesa DRI Intel Haswell Mobile GLX Version: 3.0 Mesa 10.2.2
Network: Card-1: Realtek RTL8101E/RTL8102E PCI Express Fast Ethernet controller driver: r8169
Card-2: Realtek RTL8188EE Wireless Network Adapter driver: rtl8188ee
Drives: HDD Total Size: 256.1GB (1.9% used)
Info: Processes: 206 Uptime: 1:27 Memory: 962.4/15825.5MB Client: Shell (bash) inxi: 1.9.17dave@hp-laptop:~$ inxi -n
Network: Card-1: Realtek RTL8101E/RTL8102E PCI Express Fast Ethernet controller driver: r8169
IF: em1 state: down mac: a0:48::xx:xx:xx:xx
Card-2: Realtek RTL8188EE Wireless Network Adapter driver: rtl8188ee
IF: wlan0 state: up mac: 70:18:xx:xx:xx:xxMaybe of interest, in case you suspect you have issues.??
Dave
Installing software with synaptic package manager:
1. Open synaptic package manager
With menu (Install/Remove Software) or with this terminal command:
sudo synaptic3. Search for software in the search box.
4. Right click each software you want to install and mark them for installation.This will mark additional dependencies automatically.
5. After marking for installation, click on Apply to start downloading an installing all the marked applications.
PPA method:
1. Search for PPA's with google. Type something like "ppa for app"
For example: ppa for qmplay2, ppa for firefox
2. Open the terminal and add PPA address
sudo add-apt-repository ppa:whatever_the_address_ issudo apt-get updateMake sure those PPA's are trusted. For example if some sites recomend them. You don't want to install software from an untrusted source.
Also make sure to add only stable version of a PPA.
Another way to add PPA's is with GUI tool, enter:
software-properties-gtk --open-tab=1Installing applications with Terminal:
1. Open the terminal and type in
sudo apt-get updatesudo apt-get install nameIf you know a certain aplication's name but you don't know the exact package name of that application so you can install it,
you can find the exact package name with apt-cache or aptitude:
apt-cache
The apt-cache command line tool is used for searching apt software package cache.
If you haven't done this allready, open your terminal and type:
sudo apt-get updateapt-cache pkgnamesapt-cache pkgnames | lessapt-cache pkgnames | moreTo find out the package name and it's description, use the "search" flag.
For example, you can search for gnome-mines.
apt-cache search gnome-minesgnome-mines - popular minesweeper puzzle game for GNOME
gnomine - popular minesweeper puzzle game for GNOME (transitional package)
To display all packages starting with word "fire" ( you can use whatever) type:
apt-cache pkgnames fire
...
firefox
firefox-locale-zh-hant
firefox-locale-csb
firefox-locale-zu
firefox-mozsymbols
firebird2.5-super-dbg
firedns
firebird2.5-common
firehol
firefox-globalmenu
firefox-locale-ast
firebird2.5-examplesapt-cache show firefoxapt-cache showpkg firefoxapt-cache statsaptitude
You can use ncurses interface (menu-like command line interface) or search through cli (command line interface).
To run aptitude with ncurses interface:
aptitudeIf you don't know what you are doing don't use aptitude with NCURSES interface!
Seaching with CLI method:
This lists all avaiable packages.
aptitude search ~T | lessc -the package was deleted but its configuration files remain on the system
i -installed packages
v -virtual packages
A -package was automatically installed
This lists installed packages:
aptitude search ~i | lessaptitude search ~v | lessaptitude search ~U | lessaptitude search firefox | lessaptitude search fire | lessaptitude search ~ifire | lessaptitude show firefoxInstalling .deb packages:
If you downloaded .deb package from the internet there are two methods available to install software.
1. Find the .deb package double click .on it,(or type gdebi-gtk in the terminal and open the file with gdebi package manager) and click install.
2. Open the terminal,
cd path_to_the_directory_that_contains_the_.deb_fileThis will list all .deb files in the directory, it will help you with the next step because you will need .deb file's name.
ls *.debsudo dpkg -i filename.debInstalling .run files
cd path_to_the_directory_that_contains_the_.run_filechmod +x filename.run./filename.runsudo ./filename.runInstalling .sh files
cd path_to_the_directory_that_contains_the_.sh_filechmod +x filename.sh ./filename.shsudo ./filename.shInstalling from source code
If you downloaded .tar .tar.bz tar.bz2 or even .zip archive from the internet these archives contain source code,
and you will have to compile that source code in order to install that software.
First install build-essential
sudo apt-get updatesudo apt-get install build-essentialcd path_to_the_archivetar -xzvf filename.tar.gztar -xjvf filename.tar.bz22. Enter the extracted directory, it will be the same as the archive filename.
cd filename./configuresudo apt-get install whatever_it_tells_youRepeat ./configure, and if it fails again install dependencies, and so on untill ./configure completes successfully.
4. Once ./configure completes successfully, you’re ready to compile.
Compile:
make5. Use this command to install it to your system:
sudo make installit’s a good idea to stick with distribution’s official packages or the ppa.
is there a step by step guide on installing sketchup?
thanks,
When I run:
sudo apt-get update && sudo apt-get upgradethe kernel and LibreOffice are never updated:
![[Image: Kfoama3.png]](http://i.imgur.com/Kfoama3.png)
As a result LL kernel is still 3.13.0-24, while Xubuntu on another partition is running on kernel 3.13.0.32. At the same time LL's underlying Ubuntu version has apparently been upgraded from 14.04 to 14.04.1. Is this by design or do I have some settings mixed up?
![[Image: POz6E8Q.png]](http://i.imgur.com/POz6E8Q.png)
Here are my repository settings:
1) http://i.imgur.com/hbrC2n6.png
2)
![[Image: uZ7SG7w.png]](http://i.imgur.com/uZ7SG7w.png)
I downloaded the latest Seamonkey but it complains about a missing file when trying to start it:
error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directoryI installed libstdc++6 (and the dev files just in case) but the error remains. I can't find the specified file on my system and can't find a fix via Google.... any suggestions please?
Paul
Just a quick way to add a google search without first opening a browser.
Right-click main menu button and choose 'Properties'
Select the 'Search Actions' tab
Click the '+' button marked '1' in the screenshot
Fill in the details at '2' in the screenshot.
The last line is only partly visible, in full it should read:
exo-open --launch WebBrowser http://www.google.com/#q=%uTo use this search function open your menu and type %g followed by your search term and hit enter. You can add a space for clarity after %g if you like, for example:
%g linux litePaul
[attachment deleted by admin, more than 25 days old]
Wikipedia search works fine but I can't get '#' man pages or '!' run in terminal to work. I've tried using various terminal 'names' instead of Terminal Emulator, removing the string that gets passed, enclosing various parts in single/double quotes and passing the -e option for execute.
Do these searches work for other people? If so any chance you can post your command string just to check against mine?
Paul
