| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 7,706
» Latest member: jeffq888
» Forum threads: 9,422
» Forum posts: 62,167
Full Statistics
|
| Online Users |
There are currently 1888 online users. » 0 Member(s) | 1884 Guest(s) Applebot, Baidu, Bing, Google
|
| Latest Threads |
time synchronization
Forum: Other
Last Post: LL-user
Today, 12:18 AM
» Replies: 1
» Views: 120
|
Series to Series Upgrade ...
Forum: Linux Lite Software Development
Last Post: berrywhitetiger
11-07-2025, 05:43 AM
» Replies: 4
» Views: 4,008
|
Problem updating lite 7.6...
Forum: Updates
Last Post: valtam
11-06-2025, 10:11 PM
» Replies: 3
» Views: 226
|
Regarding the minimum sys...
Forum: Installing Linux Lite
Last Post: valtam
11-02-2025, 11:41 PM
» Replies: 3
» Views: 337
|
Can't test LinuxLite 7.6 ...
Forum: Installing Linux Lite
Last Post: valtam
11-02-2025, 05:51 AM
» Replies: 23
» Views: 6,863
|
My worries
Forum: Installing Linux Lite
Last Post: stevef
11-01-2025, 03:44 PM
» Replies: 1
» Views: 184
|
nstall Updates - Could n...
Forum: Updates
Last Post: stevef
10-30-2025, 10:21 PM
» Replies: 5
» Views: 393
|
grub-efi-amd64-signed pac...
Forum: Security & Bug Fixes
Last Post: stevef
10-30-2025, 10:54 AM
» Replies: 12
» Views: 8,194
|
Series 8 development News...
Forum: On Topic
Last Post: valtam
10-30-2025, 05:40 AM
» Replies: 0
» Views: 170
|
error while trying to upd...
Forum: Updates
Last Post: stevef
10-29-2025, 02:05 PM
» Replies: 1
» Views: 226
|
|
|
| Adding keyboard shortcuts for Thunar custom actions |
|
Posted by: anon222 - 08-23-2014, 11:28 AM - Forum: Tutorials
- No Replies
|
 |
1. First open the Thunar file manager, select a folder or a file and try to use a keyboard key combination.
This way you will make sure it doesn't conflict with any other keyboard shortcut.
2. Open this folder ~/.config/Thunar
There you'll see two files
accels.scm
uca.xml
3. Make a backup of these two files, Right-click > Create backup copy
4. Open both files with Leafpad and move the windows so you can see both file contents.
5. In the file uca.xml you will find all the info (name and unique-id).
In this file you will se this
<action>
<icon>utilities-terminal</icon>
<name>Open Terminal Here</name>
<unique-id>1399556281403860-1</unique-id>
<command>x-terminal-emulator -t "Command Line"</command>
<description>Open Terminal Here</description>
<patterns>*</patterns>
<startup-notify/>
<directories/>
</action>
Find the Thunar custom action name For example Open Terminal Here.
Look for unique-id in this example 1399556281403860-1, but you might have a different value.
6. In the file accels.scm search for that id
You will find the id in this line:
Code: ; (gtk_accel_path "<Actions>/ThunarActions/uca-action-1399556281403860-1" "")
uca means it's a custom action.
Change it to something like this:
Code: (gtk_accel_path "<Actions>/ThunarActions/uca-action-1399556281403860-1" "<Alt>t")
Note that you have to uncoment ';'
More usefull info:
<Primary> is Ctrl
<Alt>
<Shift>
F keys F1, F2...
7. Save the file and log out and back in.
Another example:
|
|
|
| A simple way to move files |
|
Posted by: anon222 - 08-23-2014, 01:27 AM - Forum: Tutorials
- Replies (3)
|
 |
1. Open the Thunar file manager
2. Click on Edit and then on Configure custom actions
3. Add A new custom action by clicking on a '+' button
4. Enter this in the text boxes:
Name: Move files
Description: Move files.
Command:
Code: mv %F `zenity --file-selection --directory`
Icon: You can skip this or choose the icon of your choice.
5. Click on Appearance Conditions tab
6. In the File pattern enter:
7. Check all the boxes and confirm by clicking on OK.
To use this to move the files from the Desktop you will have to log out and back in.
Now you can right-click on any file and move it to another location.
You can select multiple files if you hold Ctrl.
|
|
|
| Losing menu items |
|
Posted by: Orioa - 08-22-2014, 05:39 PM - Forum: On Topic
- Replies (2)
|
 |
Ive been using linux lite for about six months maybe more i did fresh install of linux lite 2.0..im having issues with losing items in menu..the only thing i changed was making the menu apllications come up with right click only any help would be greatley appreciated..btw sorry if this is a repost did search but found no results.
thank you
|
|
|
| Beware when re-installing Linux in dual boot system! |
|
Posted by: frank4360 - 08-22-2014, 06:10 AM - Forum: Installing Linux Lite
- Replies (3)
|
 |
Just a warning - I am not sure if this is the right place.
I tried to dual boot LinuxLite with Windows 8.1, but had problems with the Grub loader.
I re-installed version 2 of LL, and the installer realised I had another LL already loaded, and asked if I wanted to
1. install using the entire disk (no, as I had W8 already installed),
2. install alongside the earlier version (no, as I wanted to replace the LL version)
3. install over the earlier LL (yes, I mistakenly thought)
or 4. something else (which would have given me control over disk usage).
I chose 3, and the install took the entire disk, wiping out W8 (not a great problem for me, as I have other computers), but could be a problem for others.
So, a word of warning - be very careful when upgrading dual boot systems!
This will be a general problem for all Ubuntu derived systems, I assume, not just LinuxLite.
I
|
|
|
| Will Linux Lite work with university software? |
|
Posted by: Floydcat2 - 08-22-2014, 03:10 AM - Forum: Other
- Replies (7)
|
 |
Hello All,
I may go back to school to get another degree. My laptop is about 6 years old (a Lenovo R61) and I am wondering if anyone has used Linux Lite with university programs. Most places will either require a Mac or a Windows based laptop, and they usually utilize some kind of software such as Blackboard. Has anyone gone back to school with Linux Lite? I don't want to buy another laptop if I can help it, but I don't want to start a semester with "the wrong stuff" as that will put me behind in my studies.
Thanks!
|
|
|
| How to hide files and directories |
|
Posted by: anon222 - 08-21-2014, 09:51 PM - Forum: Tutorials
- No Replies
|
 |
There are two ways to do this:
One is to rename your file or folder and add a dot as the first character in the file/folder new name.
Example:
file -- .file
folder -- .folder
You can do it by right-clicking on the file/folder and then on Rename. I mostly use the F2 key to rename files and folders.
If you want to use the command line:
Code: mv file-name .file-name
Code: mv folder-name .folder-name
The other way is better because you don't have to rename a file or a folder.
All you need to do is to create a file .hidden in that folder where you want to hide your files or folders and type in the file or folder name you want to hide.
Here is an example:
You want to hide these folders Documents, Pictures, Videos, and this file bootfloppy.img. All of these are in the /home/user/
1. Open a file manager, go to /home/user/ and show all hidden files. Click on View and when menu pops out on Show Hidden Files. Instead of this you can use a keyboard shortcut Ctrl+H to show/hide hidden files.
2. Right click on an empty space inside a folder and when the floating menu appears go to Create Document > Empty File.
3. Name the new file .hidden and open it. Double click on it or open that file with Leafpad.
4. In the file .hidden you will save file/folder names you want to hide. In this case the folders and a file.
Here is the .hidden file content:
Code: Documents
Pictures
Videos
bootfloppy.img
As you can see, one file/folder per line.
5. Save it and hide all the hidden files and folders (Ctrl+H).
6. Now all you have to do is to "Refresh" the view. You can do this by clicking on Trash or Desktop and then just go back to the folder, or just close and open the file manager again.
|
|
|
| [SOLVED] Problems with installing/playing native Linux games |
|
Posted by: Cobra! - 08-21-2014, 03:42 PM - Forum: Games Support
- Replies (13)
|
 |
I'm trying to get the Linux ports of Medal of Honor: Allied Assault and Return to Castle Wolfenstein on Linux Lite.
I'm following these instructions for RTCW, and I'm using the UK installer from here for MOH:AA.
I had no issues with installing RTCW, although I don't seem to have pak0.pk3, from my wine installed windows version.
I'm guessing because of this, it won't run, here's what I'm getting from the terminal:
Code: Wolf 1.41 linux-i386 Dec 4 2002
----- FS_Startup -----
Current search path:
/home/cobradabest/.wolf/main
/usr/local/games/wolfenstein/main/sp_pak3.pk3 (14 files)
/usr/local/games/wolfenstein/main/sp_pak2.pk3 (232 files)
/usr/local/games/wolfenstein/main/sp_pak1.pk3 (1342 files)
/usr/local/games/wolfenstein/main
----------------------
1588 files in pk3 files
----- CL_Shutdown -----
-----------------------
----- CL_Shutdown -----
-----------------------
Sys_Error: Couldn't load default.cfg
I can't seem to install MOH:AA at all, I've installed my game using wine, and patched it to 1.11, but the Linux installer still won't run, I'm getting this error:
Code: /home/cobradabest/.setup17309: error while loading shared libraries: libgtk-1.2.so.0: cannot open shared object file: No such file or directory
Before anybody asks, neither of these games work on wine for me, so after finding out both games have Linux versions, I wanted to try them.
How do I fix these issues?
|
|
|
| Windows mgr and/or thunar problem. Windows chopped non functional |
|
Posted by: mountainhick - 08-21-2014, 03:17 PM - Forum: Other
- Replies (13)
|
 |
Not sure what part of the OS or packages are malfunctioning here. Running LL1.0.8
All windows are chopped off such that the right side of the window is gone. This includes the maximize, minimize and close buttons. This is happening on all windows. File mgr, terminal Tbird, firefox, filezilla... everything. I can not access menu functions on R side of windows like the mozilla stuff.
I tried starting in recovery mode and ran repair packages. Didn't work. I tried a system update didn't work. I am wondering if uninstalling and reinstalling windows mgr and or thunar might do the trick, but I don't know the commands to do this.
I also though about reinstalling the OS and ugrading to ver 2, but I don;t know if I have to backup files, which is a problem because I can't see the files that would be displaying on the right side of the file mgr windows.
Please help! I have work to do today and can't
Thanks
|
|
|
| Dual boot w/Win7...Help removing Xubuntu to install Linux Lite 2.0 |
|
Posted by: modeltweaker - 08-21-2014, 03:44 AM - Forum: Installing Linux Lite
- Replies (2)
|
 |
My laptop is dual boot with Win7 and Xubuntu. I would like to remove Xubuntu and install LL2. Not sure what to do. I don't want to mess up the Win7 system as my daughter needs Office and Photoshop for school.
When I installed Xubuntu I had 30gb free in Win7. I told the Xubuntu installer to use 12gb. When it finished Win7 had 8gb free and it used 22gb. Win7 is now a pain with very little free space. So...Could I allocate less space for Linux Lite and grow the Win7 partition a little? Is there a way to uninstall Xubuntu? What happens to the boot loader in all these changes?
My drive layout is below. Any advice would be appreciated.
Thanks
sda1 ntfs 47.2 win7 Boot
sda3 extended 22.2
sda7 ext4 11.0 Xubuntu
sda5 ext4 9.2 Xubuntu
sda6 linux-swap2.0
sda2 fat32 5.0 IBM diagnostic
|
|
|
|