peanutismint wrote:Secondly, I've installed these apps (via command prompt via SSH) and now would like to run them under Raspbian - where would I find them? Can I create 'shortcuts' to the apps on my desktop like I would under Windows/Mac?
I'm not an expert at this so am fumbling too, but I'll tell you what I know!
I too use a command line via SSH from my PC. One useful app is Midnight Commander, known as mc, which is a file manager.
- Code: Select all
sudo apt-get install mc
To run it from a command line just type
- Code: Select all
sudo mc
It will come up in your /home/pi directory. This is where *some* of your apps will be installed, but others in seemingly secret places.... But typing the name of the app on the command line will usually run it.
To put an app on your desktop with an icon and its name below it, you have to create a file in the /home/pi/Desktop directory. I made one recently for Chromium. This is what I did. From the command line I went into the /Desktop directory using
- Code: Select all
cd Desktop
Note that upper and lower case matters!
I then used the nano text editor to create a file called chromium.desktop
- Code: Select all
sudo nano chromium.desktop
In this file I then entered the following (from googling, I didn't make it up off the top of my head!)
- Code: Select all
[Desktop Entry]
Encoding=UTF-8
Version=1.0
Type=Application
Exec=chromium -disable-ipv6 %f
Icon=/home/pi/google.png
Terminal=false
Name=Chromium
I presume the Exec line for other apps need just have the name, and the system will find it, somewhere! Now you know all I do about this! Save this file by doing a CTRL-X in nano. Then reboot. Then fingers crossed.
sudo apt-get is useful for a few things, try
- Code: Select all
sudo apt-get update
sudo apt-get upgrade
every few days.
- Code: Select all
df -k
is useful too.
Hope this helps!
Unh.