NEW Wiki replaces Help Manual online - Click here


Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 7,469
» Latest member: AdelineMaync
» Forum threads: 9,370
» Forum posts: 61,949

Full Statistics

Online Users
There are currently 1234 online users.
» 0 Member(s) | 1231 Guest(s)
Applebot, Bing, Google

Latest Threads
Set Home Folder
Forum: Installing Linux Lite
Last Post: LanceCorporal
Yesterday, 03:24 PM
» Replies: 2
» Views: 116
Updates Error Log - no re...
Forum: Updates
Last Post: Valtam
Yesterday, 04:57 AM
» Replies: 3
» Views: 173
NEW Wiki replaces Help Ma...
Forum: On Topic
Last Post: Valtam
08-19-2025, 11:12 AM
» Replies: 0
» Views: 77
New Website Design
Forum: On Topic
Last Post: Valtam
08-19-2025, 11:01 AM
» Replies: 11
» Views: 1,036
Install Error Log - No Pu...
Forum: Updates
Last Post: Valtam
08-14-2025, 11:18 AM
» Replies: 2
» Views: 430
Help me, please! - CDROM ...
Forum: Updates
Last Post: stevef
08-10-2025, 01:44 PM
» Replies: 26
» Views: 4,306
Linux Lite 7.6 RC1 Releas...
Forum: Release Announcements
Last Post: Valtam
08-09-2025, 11:05 AM
» Replies: 5
» Views: 1,852
Intel HD Graphics Not Wor...
Forum: Installing Linux Lite
Last Post: Abhi_245
08-08-2025, 06:44 PM
» Replies: 10
» Views: 1,413
installing 5.8 Lunix lite...
Forum: Installing Software
Last Post: Ren
08-01-2025, 03:34 PM
» Replies: 0
» Views: 338
VERY ODD install Issue
Forum: Installing Linux Lite
Last Post: Azoic
08-01-2025, 05:34 AM
» Replies: 0
» Views: 375

 
  The Complete Beginner's Guide to Linux - Linux.com
Posted by: Valtam - 08-15-2014, 09:05 PM - Forum: On Topic - Replies (2)

http://www.linux.com/learn/tutorials/784...e-to-linux

Print this item

  boot
Posted by: rogart - 08-15-2014, 06:16 PM - Forum: Installing Linux Lite - Replies (3)

Very new to Linux.

Installed Lite 2 and works fine . Desktop is great and stable. BUT when it boots ,apart from an inordinate long time , the opening screen are unreadable.

I'm not sure if it is my video card or the way the Lite was loaded ??

I'm using Lite as my full OS on a Dell 2200 desktop . The video card is on  the motherboard .

Would a PCI video help ?

Thanks

JFM

Print this item

  How to uninstall software
Posted by: anon222 - 08-15-2014, 04:35 PM - Forum: Tutorials - Replies (4)

Uninstalling software with synaptic package manager:
1. Open synaptic package manager
With menu (Install/Remove Software) or with this terminal command:

Code:
sudo synaptic
2. Search for software in the search box.
3. Right click each software you want to uninstall and mark them for removal. If you want to remove the software along with configuration files mark them for complete removal.
4. After marking for removal, click on Apply to start uninstalling all the marked applications.

Uninstalling applications with Terminal:
Before you start to uninstall applications, you must find out the exact package name of the application you are about to remove.
Check this tutorial to see how to use apt-cache and aptitude to find out the exact applications's package name:
https://www.linuxliteos.com/forums/index...opic=734.0

There are two ways to do this:
1. To remove package enter this command: (Replace package_name with the package name of the application you want to remove)
Code:
sudo apt-get remove package_name
2. To remove package along with all configuration files, enter:
Code:
sudo apt-get purge package_name

autoremove is used to remove packages that were automatically installed to satisfy dependencies for other packages and are now no longer needed.
Code:
sudo apt-get autoremove

How to remove PPA's:
Before you remove or disable PPA's you need to know a few things.
Make sure you only disable or remove PPA's you added, not any others that came with your distribution.
Disabling a PPA means you won't receive any updates from that PPA anymore, but it does not remove any installed / upgraded packages.
The advantage of disabling a PPA instead of removing it is that you can easily re-enable it.
If you remove them you will not receive any critical system updates and you will not be able to install any applications from that PPA.
Be careful about removing PPA's. If you remove a PPA and the application is not removed, you won't get updates for that application automatically (or at least not when you do sudo apt-get upgrade). You will not receive updates and security fixes, bug fixes, etc. You can do it, but is on your own risk.

There are two ways to do this:
1. Using the graphical user interface:
Run this command to start Software & Updates GUI
Code:
software-properties-gtk --open-tab=1
Now you can disable or remove PPA's.
To disable a PPA, uncheck the box next to the PPA you want to disable.
Remember to disable both lines: the main and the source code line.
In the same way you can also re-enable a PPA.
To remove a PPA, select the ones you want to remove and click on Remove.
2. Removing PPA from the command line:
To remove PPA's use the --remove flag, similar to how the PPA was added:
Code:
sudo add-apt-repository --remove ppa:owner/ppa
Optionally, you can delete the .list files from /etc/apt/sources.list.d directory. Not recommended for beginers!
Code:
ls /etc/apt/sources.list.d
Then when you have noted the name of that PPA (e.g. targetppa.list), you can enter:
Code:
sudo rm -i /etc/apt/sources.list.d/targetppa.list

To find out the PPA to which a package belongs to, enter:
Code:
apt-cache policy package_name
For example:
Code:
apt-cache policy umplayer
Output
-------------------------------------------------------------------------------------------------------------------
umplayer:
  Installed: 0.98-1~trusty~NoobsLab.com
  Candidate: 0.98-1~trusty~NoobsLab.com
  Version table:
    0.98-1~trusty~NoobsLab.com 0
        500 http://ppa.launchpad.net/noobslab/apps/ubuntu/ trusty/main i386 Packages
------------------------------------------------------------------------------------------------------------------
From this we can see that the ppa is ppa:noobslab/apps
If it is missing you have probably installed it using .deb method or from source or you removed/disabled the PPA.

How to purge a PPA
If it's not installed, first you must install ppa-purge.
Code:
sudo apt-get install ppa-purge
Purging a PPA means not only to disable the PPA, but also to downgrade any packages you've upgraded from that PPA, to the version available in the official distribution's repositories.
If there are no such packages in the distribution's repositories they will be removed.
In order to purge a PPA type the folowing command, just change the owner/ppa to whatewer you need.
Code:
sudo ppa-purge ppa:owner/ppa
You can downgrade/remove all the packages from a repository with this command:
Code:
sudo ppa-purge -i ppa:owner/ppa

How to uninstall software you installed from source code:
cd into the directory you compiled the application an then enter:
Code:
make uninstall
or
Code:
sudo make uninstall
If the app was installed as root.
But this will work only if the developer of the package has taken care of making a good uninstall rule.

In the future to avoid that kind of problems try to use checkinstall instead of make install when you compile an aplication whenever possible.
It will create and install a deb file that you can then uninstall using your favorite package manager.
To install checkinstall, enter:
Code:
sudo apt-get install checkinstall
Instead of
Code:
sudo make install
you will use
Code:
sudo checkinstall
The installed package can then also easily be removed via Synaptic or via Terminal.

Print this item

  Video Card Driver issues
Posted by: Cobra! - 08-15-2014, 01:49 PM - Forum: Games Support - Replies (9)

I'm having some problems with my Linux Lite, whenever I watch a Youtube video above 480p, the video is delayed and skips to catch up with the audio. Direct* Wine games only show grey screens for a few seconds, then they crash to the desktop, OpenGL games also seem to run slowly. Only Glide games work as they should be on my PC. I'm using latest version (1.7.24) of wine, by the way, and run games through PlayOnLinux, but the same problem occur when I install/run games without it.

All of these issues seem to relate to my graphics card (AMD E-300), and that I don't have a Linux driver for it. I did a little research,and found this, but when I downloaded it and attempted to install it, it asked me to reboot, so I did, and it completely messed up the OS! It was showing the Ubuntu splash/loading screen and just hung there. I has to completely reinstall Linux Lite to fix the problem!

So what do I do now? Where/how can I get a working Linux driver for my graphics card installed?

Print this item

  Goamins frae Scotland!
Posted by: Cobra! - 08-15-2014, 12:24 PM - Forum: Introductions - Replies (10)

Hello, I am new to Linux, and I recently installed Linux Lite on my old laptop, which has Windows 7 installed on it, and Linux Lite blows Windows 7 out of the water! it's so much faster and more reliable than Windows 7! It makes my 3-4 year old laptop feel brand new again!

I'm going to build a new PC in a month or so, with the highest end specs possible, and having it dual-boot multiple OSes, and it's looking very likely that Linux Lite will be it's main OS! I'll get myself the DVD and Case badge from the LL store when I get to doing that!
Which raises the question, what Graphics Cards have drivers that support Linux? Preferably AMD ones, after hearing about an apparent scandal Nvidia were doing with publishers to lie/exaggerate about game requirements, I'm not buying another Nvidia card if I can help it! Does there exist a list of cards that support Linux?

It isn't perfect, however, I have a few issues, which I might end up making a new topic for, unless it's fine to post them here?

Print this item

  Linux Lite Welcome Screen
Posted by: Coastie - 08-14-2014, 05:59 PM - Forum: Suggestions and Feedback - No Replies

The Linux Lite Welcome Screen is a great addition and will be very helpful to new Linux users!  8)

Print this item

  LL2 not booting if one extended partition is formatted to FAT 32
Posted by: arunp - 08-14-2014, 10:08 AM - Forum: Installing Linux Lite - Replies (31)

Dear LL Team,

I have been successfully been installing LL2 in my USB & USB HDD and its working fine, except following issue;

1.When installed in USB HDD i configured one of the extended partition as FAT32 and gave the mount point as Windows the software installs and at reboot the grub runs and displays the standard LL boot options and then once booted to LL2 it goes blank further OS doesn't get loaded.

2.I reinstalled the same with all extended partitions as ext4 format it works fine.

I tried this n number of times the above 2 options the result was same, right now i working with the option 2, but i want to configure one of the partitions as FAT32.

Pl help me in this 

Arun

Print this item

  Support & Documentation in French?
Posted by: frank4360 - 08-14-2014, 05:27 AM - Forum: On Topic - Replies (2)

I use LinuxLite on 2 systems and love it!

I am helping a French friend to move from Windows, and I would like to be able to point him to any and all support and documentation in French.

I know of "ubuntu-fr.org", and I know that Linux Mint is headed by a Frenchman and has pretty good support, but I wondered if there is any LinuxLite specific help available for French speakers?

All help gratefully accepted!

Print this item

  How to install mintstick in LL 2.0
Posted by: anon222 - 08-13-2014, 11:11 PM - Forum: Tutorials - Replies (3)

Mintstick is a GUI to write .img or .iso files to a USB Key. It can also format them.
[Image: rc72xtf.png]
Here is how to install it. You will have to use the command line (because the word Terminal is, apparently, scary for some people  Smile)
1. Download the package file

Code:
wget 'http://packages.linuxmint.com/pool/main/m/mintstick/mintstick_1.2.1_all.deb'
2. Check if the output of the folowing command is f0116fa08ec827df80f677c02831d02d
Code:
md5sum mintstick_1.2.1_all.deb
If it is go to the next step.
If it's not go to step 4 and then go to step 1
MD5sum: f0116fa08ec827df80f677c02831d02d
3. Install the package
Code:
sudo gdebi 'mintstick_1.2.1_all.deb'
4. Remove the package file
Code:
rm mintstick_1.2.1_all.deb
That's it. Now open the whisker menu > accessories and you'll see USB Stick Formatter and USB Image Writer.

You can also setup a custom action in Thunar for the USB image writer.
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: Write to usb
Description: Selects .iso or .img file for writing to the usb drive.
Command:
Code:
mintstick -m iso -i %n
Icon: You can skip this or choose your the icon of your choice.
5. Click on Appearance Conditions tab
6. In the File pattern enter:
Code:
*.iso;*.ISO;*.img;*.IMG
7. Check 'Other files' and confirm by clicking on OK.
To use this to write files from the Desktop you will have to log out and back in.
Now you can right-click on any .iso or .img file and then write that file to usb drive.

Print this item

  Graphics drivers
Posted by: TeemarkTh0mas - 08-13-2014, 11:07 PM - Forum: Video Cards - Replies (5)

new install of LL2.0 i did a terminal  sudo lshw -C display  which shows my Ati HD4850 card  BUT when i "update drivers" i get no drivers found. soo? what should i do?? i have updated the OS.. 
description: VGA compatible controller
      product: RV770 [Radeon HD 4850]
      vendor: Advanced Micro Devices, Inc. [AMD/ATI]
      physical id: 0
      bus info: pci@0000:01:00.0
      version: 00
      width: 64 bits
      clock: 33MHz
      capabilities: pm pciexpress msi vga_controller bus_master cap_list rom
      configuration: driver=radeon latency=0
      resources: irq:45 memory:d0000000-dfffffff memory:fd9e0000-fd9effff ioport:be00(size=256) memory:fd900000-fd91ffff

Print this item