| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 7,818
» Latest member: longpond
» Forum threads: 9,442
» Forum posts: 62,276
Full Statistics
|
| Online Users |
There are currently 1294 online users. » 0 Member(s) | 1290 Guest(s) Applebot, Baidu, Bing, Google
|
| Latest Threads |
trouble updating os
Forum: Updates
Last Post: longpond
1 hour ago
» Replies: 0
» Views: 3
|
Linux Lite 7.8 RC1 Releas...
Forum: Release Announcements
Last Post: trinidad
6 hours ago
» Replies: 1
» Views: 280
|
why that change in system...
Forum: Installing Linux Lite
Last Post: Rosika
12-31-2025, 04:55 PM
» Replies: 0
» Views: 50
|
Error when trying to inst...
Forum: Updates
Last Post: stevef
12-27-2025, 09:07 PM
» Replies: 1
» Views: 132
|
Little icons problem with...
Forum: Installing Linux Lite
Last Post: LostSoul
12-27-2025, 08:52 AM
» Replies: 4
» Views: 448
|
LL7.6 on Macbook (Mid 200...
Forum: Network
Last Post: oldgaz
12-26-2025, 11:50 PM
» Replies: 7
» Views: 551
|
No sound on Acer Chromebo...
Forum: Sound
Last Post: blancv02
12-21-2025, 06:47 AM
» Replies: 2
» Views: 7,008
|
Som
Forum: Sound
Last Post: blancv02
12-21-2025, 06:29 AM
» Replies: 2
» Views: 3,075
|
Sem som quando reinicia
Forum: Other
Last Post: di0lh0
12-16-2025, 04:29 PM
» Replies: 24
» Views: 3,424
|
Epson WF-4830 Install
Forum: Printing and Scanning
Last Post: valtam
12-10-2025, 07:21 AM
» Replies: 8
» Views: 1,130
|
|
|
| Atheros AR928x wireless network adaptor for LL2.0 ? |
|
Posted by: m654321 - 11-30-2014, 09:22 AM - Forum: Network
- Replies (1)
|
 |
I have a 64bit Win 7 - LL2 dual boot set-up on my Asus X71Q laptop.
Within Win 7, downloading the Atheros AR928x wireless network adaptor increased my internet connection speed from 150 Mb/s to 300 Mb/s, which makes a significant difference when downloading larger files. However, on LL2.0, my connection speed is only 150 Mb/s. Is there an Ubuntu version of the AR928x adaptor, that I can download for LL2.0, that will hopefully boost my internet connection speed to around 300 Mb/s? Many thanks for any help.
Kind regards
Mike
|
|
|
| How to have default terminal open at specific size and location? |
|
Posted by: CuriousGuy - 11-30-2014, 06:09 AM - Forum: Other
- Replies (2)
|
 |
I believe the default Terminal that comes with LL 2.0 is LXTerminal. I've got the color settings I want (from Edit -> Preferences -> Style). But I can't figure out how to have the window always open at a given size and at a given location. I read somewhere that almost all stuff like that is handled by conf files but I couldn't find one for the terminal.
Is there an easy way a noob can edit the configuration file to have LXTerminal open at a given size and location?
Thanks in advance for any suggestions/links/etc you can provide. Any and all help is appreciated.
|
|
|
| Whisker Menu Keyboard Shortcut |
|
Posted by: Mike - 11-30-2014, 01:01 AM - Forum: Suggestions and Feedback
- Replies (11)
|
 |
While easy to add it on my own, I'd recommend adding a default Whisker Menu shortcut in the distro.
For others interested, I went to Keyboard settings and in the Applications Shortcuts tab I set the Super key to the command xfce4-popup-whiskermenu. Now I can quickly press Super and begin typing an application name.
|
|
|
| VLC does not support the audio or video format undf |
|
Posted by: john9159 - 11-29-2014, 09:28 PM - Forum: Sound
- Replies (35)
|
 |
Almost daily I encounter a new problem with Linux Lite.
Today I decide to play Christmas music saved on my external hard drive and get the following message:
No suitable decoder module: VLC does not support the audio or video format "undf". Unfortunately there is no way for you to fix this.
|
|
|
| Get-iplayer - Update Version 2.90 |
|
Posted by: newtusmaximus - 11-29-2014, 09:00 PM - Forum: Installing Software
- Replies (3)
|
 |
Currently installer only gives option for V2.83. This apparently no longer works with IPlayer. It says Version 2.90 is the new version to use. Is there a way to download and install this version with all the necessary dependencies. Tks.
|
|
|
| USB drive Storage Summary |
|
Posted by: anon222 - 11-29-2014, 08:37 AM - Forum: Scripting and Bash
- Replies (2)
|
 |
I've been working on this for some time.
This script will calculate USB drive Storage Summary
it's convinient for the USB sticks
It will display what type of files you have on your drive/stick and their size in KB and KiB
Save it anywhere you like, make executable, insert your USB Flash drive or drives and wait until they get auto-mounted.
Then start the script.
Code: #!/bin/bash
# store the devices list
list=/tmp/devices
# get a list of devices
devs=`ls -al /dev/disk/by-path/*usb*part* 2>/dev/null | awk '{print($11)}'`
if [[ ${?} != 0 || -z ${devs} ]]
then
zenity --warning --text "No USB Mounted!"
exit
fi
# Check with user to make sure they mounted usb stick, no use wasting time
zenity --question --title="REMEMBER" --text="Make sure your usb disk is mounted\nDo you want to continue?" --ok-label="Yes" || exit
# Initialize list and make sure it is empty
>$list
# Now get the info about our devices and put it in a list
for dev in $devs; do dev="${dev##*\/}";
echo "FALSE" >> $list;
echo -n "$dev" >> $list;
echo " " >> $list;
echo `cat /sys/block/${dev:0:3}/device/vendor 2>/dev/null` >> $list;
echo `cat /sys/block/${dev:0:3}/device/model 2>/dev/null` >> $list;
echo `lsblk 2>/dev/null | grep \`echo -E ${dev}\` |awk '{print($4)}' `B >> $list;
echo `lsblk 2>/dev/null | grep \`echo -E ${dev}\` |cut -c 38- ` >> $list;
echo `lsblk -o NAME,FSTYPE 2>/dev/null | grep \`echo -E ${dev}\`| awk '{print($2)}' ` >> $list;
echo `ls -l /dev/disk/by-uuid/ 2>/dev/null | grep \`echo -E ${dev}\`| awk '{print($9)}' ` >> $list;
done
# clear our array
devfs=()
# read in the array using a line tmp variable. This let's zenity see it line by line
while read -r line
do
devfs+=("$line")
done < /tmp/devices
#Display the main dialog
disktmp=$(zenity --list --text="Select your USB drive from the list and click OK to begin.\nThis will calculate what file types you have on the drive and how much space do they consume.\nThe speed of this process depends on the drive size and on the number of files." --radiolist --width=650 --height=350 --column="Pick" --column="Dev" --column="Vendor" --column="Model" --column="Size" --column="Mount" --column="FS" --column="UUID" "${devfs[@]}" --separator=":")
#Test for cancellation
if [[ ${?} != 0 || -z ${disktmp} ]]
then
exit 0
fi
# Extract device
disk=${disktmp:0:4}
# Start calculating file sizes and convert bytes to human readable
{
echo "#Please wait, this my take a while"
find "$(echo `lsblk 2>/dev/null | grep \`echo -E ${disk}\` |cut -c 38- `)" -type f -exec file -b '{}' \; -printf '%s\n' | awk -F , 'NR%2 {i=$1} NR%2==0 {a[i]+=$1} END {for (i in a) printf("%12u %s\n",a[i],i)}' | sed -e 's/^[ \t]*//' > ~/usbinform
echo "#Calculating File size"
awk '{print $1}' ~/usbinform | awk '{ sum=$1 ; hum[1024**3]="GiB";hum[1024**2]="MiB";hum[1024]="KiB"; for (x=1024**3; x>=1024; x/=1024){ if (sum>=x) { printf "%.2f %s\n",sum/x,hum[x];break } if (sum<1024) {printf sum" bytes\n";break } }}' > ~/usbinform1
awk '{print $1}' ~/usbinform | awk '{ sum=$1 ; hum[1000**3]="GB";hum[1000**2]="MB";hum[1000]="KB"; for (x=1000**3; x>=1000; x/=1000){ if (sum>=x) { printf "%.2f %s\n",sum/x,hum[x];break } if (sum<1000) {printf sum" bytes\n";break } }}' > ~/usbinform2
sed -i 's/\w*.//' ~/usbinform
} | zenity --progress --pulsate --auto-close || exit
# Display results
paste -d'\n' ~/usbinform2 ~/usbinform1 ~/usbinform|zenity --list --title="${disk}" --column="Size" --column="Size KiB" --column="Description" --width=800 --height=650 --ok-label="Save" --cancel-label="OK" --text="Drive ${disk} Storage Summary\n1KB=1000 bytes, 1KiB=1024 bytes"
#Test for cancellation
if [[ ${?} != 0 ]]
then
rm ~/usbinform
rm ~/usbinform1
rm ~/usbinform2
exit 0
fi
#Ask where to save our file
zNewData=$(paste -d'\t' ~/usbinform2 ~/usbinform1 ~/usbinform)
zSavePath=$(echo -n "$(zenity --file-selection --save --confirm-overwrite --filename="USBdrive_summary.txt" --title="Save USB drive info")")
#Test for cancellation
f [[ ${?} != 0 ]]
then
rm ~/usbinform
rm ~/usbinform1
rm ~/usbinform2
exit 0
fi
#save
echo -n "$zNewData" > "$zSavePath"
# Remove temp files
rm ~/usbinform
rm ~/usbinform1
rm ~/usbinform2
exit
|
|
|
| TiddlyWiki |
|
Posted by: Mike - 11-29-2014, 02:10 AM - Forum: Off Topic
- Replies (3)
|
 |
Not sure what everyone uses to keep notes but TiddlyWiki 5 is looking pretty nice. I've been using it for a while now - works great. I was a bit obsessed about finding the perfect notes app for a while and stuck with this for a few reasons:
- Single file is easy to backup
- TW has built-in encryption if you wish to use it
- Almost every OS has a browser so the file is always accessible
|
|
|
|