General :: VLC Offers To Multiply The Volume By 2 (200%), But It Isn't Enough?

Sep 20, 2010

I'm watching some movies on my laptop, but the sound is very low. The video was probably just recorded at a too low sound level. VLC offers to multiply the volume by 2 (200%), but it isn't enough. I'm not looking for quality, if improving the sound makes the quality less good. Can I do better than that, either with a video software or admin task (I'm using ubuntu) ?

View 4 Replies


ADVERTISEMENT

Server :: FSCK Multiply-claimed Blocks?

Mar 31, 2010

Fsck has been runningfor days. The problem seems to be multiply-claimed blocks. Example:

<filesystem metadata>
... (inode #365429022, mod time Wed Mar 24 08:48:23 2010)
Clone multiply-claimed blocks? yes

[code]....

View 1 Replies View Related

General :: Move / Copy A Logical Volume From One Volume Group To Another?

Dec 1, 2010

I'm rearranging a bunch of disks on my server at home and I find myself in the position of wanting to move a bunch of LVM logical volumes to another volume group. Is there a simple way to do this? I saw mention of a cplv command but this seems to be either old or not something that was ever available for linux.

View 2 Replies View Related

Ubuntu :: What Are "multiply-claimed Block(s)" When Running E2fsck

Apr 3, 2011

what are "multiply-claimed block(s)" when running e2fsck?And should I reply yes to questionCode:Clone multiply-claimed blocks(s)<y>?

View 5 Replies View Related

Ubuntu Installation :: Find Which Package Offers Gl.h?

May 29, 2010

how do i find which package offers gl.h?

View 1 Replies View Related

Fedora :: Adobe Offers Flash 11 64bit Plugin?

Jul 15, 2011

Adobe offers Flash 11 64bit plugin?[URL]...

View 11 Replies View Related

Ubuntu Servers :: Is There Anything Better That Offers Per-user Location Reporting?

May 23, 2010

I am trying to set up SARG to provide reporting from a squid proxy server.After installing Squid & SARG, I am a little confused as to how SARG has configured itself to run.Should this conflict? Or at least create a race condition? In any event SARG and sarg-reports looks like they have not been updated in a few years.is there anything better that offers per-user location reporting?

View 1 Replies View Related

Networking :: Get And Use DHCP Offers To Config The Wlan Connection?

May 12, 2011

I'm using the following in a script to connect to my house's wi-fi - it works perfectly for me - simple, and with a static IP:

Code:

modprobe zd1211rw #load the module needed by my wireless LAN adapter
ifconfig wlan0 up
iwconfig wlan0 essid my_network_name_at_home
ifconfig wlan0 10.0.0.8 netmask 255.255.255.0
route add default gw 10.0.0.2 wlan0
iwconfig wlan0 key key_comes_here

However, if I take my machine to the office, we've got DHCP assigned dynamic IPs. How can I modify the above script to NOT do

Code:

ifconfig wlan0 10.0.0.8 netmask 255.255.255.0
route add default gw 10.0.0.2 wlan0

but instead get them from the DHCP service running at work on the W-LAN?

View 2 Replies View Related

General :: Error - An Application Is Preventing The Volume "New Volume" From Being Unmounted

Feb 26, 2011

HP 210 Mini
Fedora 14 xfce
2.6.35.11-83.fc14.x86_64

I have inserted my handy drive. However, when I right click and select unmount I get the following message:

An application is preventing the volume "New Volume" from being unmounted

So I try from the command line:

umount /dev/sdb1

And I get the following message:

umount: /media/New Volume: device is busy.

All I have done is copied some files to my handy drive. So I am not sure what process is keeping my handy drive busy.Is there any command that I can use to see what process of anything else is using the handy drive?

View 1 Replies View Related

Ubuntu :: Dual Boot Computer No Longer Offers Windows?

Mar 29, 2011

I'm using a dual boot computer which originally had only windows XP, and I added Ubuntu to make it a dual boot. I now have Ubuntu 10.04 and windows XP

I installed PHP, MySql and Apache using this guide:

[URL]

It seemed to work perfectly.

My problem is that when I shut down and restart, I no longer have the option to choose windows. Must I blank out the disk and reinstall EVERYTHING from the start, or is there any way to save this? My Ubuntu setup is much simpler than my windows, and if I MUST sacrifice one, it has to be Ubuntu, because it will be much easier to duplicate my ubuntu work than my windows work.

View 6 Replies View Related

Ubuntu Networking :: No DHCP Offers Received After Modem Change?

Jul 5, 2011

I used to connect to the internet via a Linksys router using the following terminal commands (Network Manager has never worked for me on any Ubuntu install):

Code:

sudo ifconfig wlan0 down
sudo dhclient -r wlan0
sudo ifconfig wlan0 up

[code]....

However, I recently changed the old modem + router for a new wireless modem (a Thomson TG585v8 ). Now, the result of that last command is this:

Code:

amosupremo@amosupremo:~$ sudo dhclient wlan0
Internet Systems Consortium DHCP Client V3.1.3

[code]....

No working leases in persistent database-sleeping. I've tried to connect in Natty(both Ubuntu and Kubuntu) and it's not working either.I also purged Network Manager and installed wicd and I managed to get an intermittent, slow connection.

1 ) Machine Brand and Model (PC/Laptop): No brand. I built it with the following specs:

AMD Athlon II X4 2.6GHz
2 HD: 100GB Sata (Ubuntu and XP64 install) / 80GB IDE (XP)
4GB RAM
Gigabyte Motherboard

2 ) Wireless Brand, Model and Wireless Chipset:

Code:

amosupremo@amosupremo:~$ lsusb
Bus 002 Device 005: ID 0ace:1201 ZyDAS 802.11b
Bus 002 Device 004: ID 049f:000e Compaq Computer Corp. Internet Keyboard

[code]....

3 ) check interface:

Code:

amosupremo@amosupremo:~$ ifconfig wlan0
wlan0 Link encap:Ethernet HWaddr 00:02:72:04:d0:04

[code]...

I am also attaching the wicd log. It contains a session where I got the intermittent connection. I stopped that connection and restarted it (with the same results) two times.

View 9 Replies View Related

Networking :: DHCP Offers Not Being Limiting To Specified Vlan Interface On Debian?

Jun 25, 2010

I have configured dhcp3-server on my debian box and I'm wanting to offer dhcp on one of the vlan interfaces. The dhcp is functioning but when I test applying it to a different vlan, the original PC can still get an IP. For example: eth1 has vlan100 and vlan200. Our managed switch has the ports configured such the pc1 is on vlan100 and pc2 is on vlan2. This works fine and I can inter-route between vlans with static IPs. Our dhcp config is currently set as:

ping-check true;
ddns-update-style none;
default-lease-time 21600;
max-lease-time 86400;
INTERFACES="vlan100";
authoritative;

[code]....

View 2 Replies View Related

Ubuntu Installation :: Can't Avoid Boot Time Offers Of Broken Systems ?

Jun 9, 2010

After a disastrous attempt to upgrade Ubuntu 8.04 to 8.10 (system would not boot), I partitioned the disk in two and installed 9.10 on the new partition.

The old data was still available so I copied my old home directory on top of my new one thus:

I have managed to re-install all my software, but a few problems remain.

Here is one of them:

In spite on marking (with Palimpsest Disk Utility) the old partition (with 8.04/8.10 on it) as not bootable, at boot time I get offered three versions of Ubuntu 8.10 as well as 9.10 and the corresponding recovery mode boots etc. Any idea how to get rid of these options without formatting the partition?

View 9 Replies View Related

Ubuntu Multimedia :: ATI Radeon 4670 Only Offers Stereo Sound Through HDMI

Sep 9, 2010

I bought this Radeon 4670 [URL] to improve my video. Although the description on ATI-AMD webpage [URL] specifies that this card can output up to 7.1 audio through HDMI, Sound Controls only shows the stereo and off option. ATI Catalyst does not have any controls for audio. Is there a way to get 5.1 audio enabled? Using 10.04.

View 8 Replies View Related

Ubuntu Multimedia :: Adobe Air Update Manager Offers Older Version?

Jan 21, 2011

Using: Ubuntu Lucid The Update Manager has placed me with an odd dilemma, it says that: "adobeair (version 2.5.1.17730) will be upgraded to version 1:2.0.4.13090-1lucid1"

So 'updating' version 2.5 with version 1.2 I think this has happened because Adobe Air updates itself (asking permission first of course) using it's own dialog box from time to time when I run BBC iPlayer Desktop. What should I do, update or not?

View 2 Replies View Related

Ubuntu Installation :: Can't Make A Distro Of That Offers To Users The Files And Apps For Use With Mono?

Mar 11, 2011

I would like to see when installing ubuntu a choice for users to choose what they want installed on their system or not. I know for a fact that there are some like myself that does not want mono runtime files or mono apps on their linux box and when we try to uninstall all the files or apps that link with mono ends up breaking the linux box.

My question is why can't ubuntu make a distro of ubuntu that offers to users the files and apps for use with mono and a choice for those users to install ubuntu with out the mono files or apps. There are somne of us that think mono is as bad as .net and some of us want a linux box that runs linux and not window files or apps unless they can be written as pure linux code and not C# crap. I feel that C or C++ is the real way to write linux code and anything written in C# is windows and always will be windows. If they want to put more windows stuff on ubuntu, then they shouldn't be calling it linux..

View 1 Replies View Related

Slackware :: Unknown Plugin (application/x-shockwave-flash), But Adobe Only Offers Binaries?

Jun 27, 2011

every here and there i enter a page where a box pops up:Additional plugins are required to display all the media on this page . After a number of steps I am at a page by Adobe, and I download what seems to be a generic package (Ubuntu will of course be there).But its instalation has never proved helpful. Still the same pop-up. Are there binaries for Slack or a way to get the sources?

View 12 Replies View Related

CentOS 5 Networking :: Error: No Dhcp Offers Received - Using Systemimager To Autoinstall System Images On Pc's Connected In Lan

Mar 10, 2009

i want to resolve the above error. I'm using systemimager to autoinstall system images on pc's connected in lan. while doing this i got the error No DHCPOFFERS received. Also at the time of booting my pc it shows the message No dhcp and/or proxyDHCP offers recieved. But i've started the dhcpd deamon on my pc. Also the systemimager rsync deamon is running. The two pc's are also connected in lan properly.

Still while autoinstalling the image on client it fails showing the error message... No DHCPOFFERS recieved. what do i do in order to make my autoinstall work properly? How do i come to know whether the dhcp server is running or not? What will be the exact problem in autoinstalling?

View 1 Replies View Related

Debian Multimedia :: How To Have Volume Buttons On Laptop Change 'pcm' Channel Volume Rather Than 'master'?

Jun 13, 2010

I'm running squeeze (last updated today), and everything has been working great. There is only thing that would simplify my life minutely..Anybody know how can I have the volume buttons on my laptop change the "pcm" channel volume rather than "master"? If they could control pcm, then I could adjust the volume coming out of my headphones or my computer speaker (both controlled by pcm, but not master...seems strange to me) with just one click.I tried to find this info online, but all results seem to refer to an older version. The simple "click here, set this" solution no longer is possible.

View 2 Replies View Related

Debian Multimedia :: Laptop Volume Buttons And GNOME Volume Are Not Synchronized

Feb 27, 2011

Debian Squeeze 6.0.0 on a Thinkpad T43, sound volume is not synchronized between the laptop volume buttons and GNOME's Volume Applet. So if I turn the volume all the way down with the physical buttons, the volume applet may still indicate 75%.I did not have this problem in Debian Lenny. Pressing the volume buttons used to show a volume bar on the screen, as did pressing the mute button.

View 8 Replies View Related

Ubuntu :: Default Volume To 100% In Terminal With Gnome-volume-control-applet?

Jul 17, 2010

Is there a way to default volume to 100% in the terminal with gnome-volume-control-applet or any other program? I am setting up a dedicated Zsnes machine which boots into Fluxbox but the volume is muted by default. There isn't a man page for gnome-volume-control-applet.

When I log into Gnome the volume is set to 100%, but Fluxbox is always set to mute.

View 1 Replies View Related

Ubuntu Multimedia :: USB Soundcard Volume Controls With Laptop Volume Keys?

Oct 29, 2010

I've got my xubuntu 10.10 install just about perfect on a little acer aspire d250, apart from a small sound useability issue: In the interests of simplicity and resource usage I removed pulseaudio. After a bit of fiddling I got it so that my USB soundcard (ProDac) is recognized and automatically set as the default soundcard when plugged in. Any sound applications automatically use the USB sound if it present, no need to around with pulse. The only problem is that my netbook's volume control keys still only control the master volume of the inbuilt soundcard, and have no effect on the usb sound. Does anyone know of a way to change which sound device these keys actually effect? I'd like to write a little script so that when the usb device is detected the keys are remapped.

View 1 Replies View Related

Ubuntu Multimedia :: PCM Volume Not Affected By Master Volume Control With Alsa

Mar 7, 2011

I'm running Kubuntu 10.10 32 bit on an old DFI KT600AL motherboard based system using the onboard VIA 3058 AC97 audio (because it supports front panel audio connections and none of the add-in PCI soundcards I have do). I have an old Gateway/STB TVPCI TV tuner card (mainly wanted the FM radio part to work) hooked up to the cd audio connector on the motherboard because the digital audio over the pci bus apparently isn't supported for this card (neither is the onboard analog mixer on the tv tuner card, I had to hack a CD-ROM audio cable and solder it to the audio outputs of the tv tuner module on the TV tuner card). When I use the master channel as the master channel (selected in Kmix) then as one would expect it affects the output volume of all other audio playing on the system except that which is being handled by the PCM channel. On Windows the PCM channel was also affected by the "Volume Control" slider such that ALL volume levels were reduced when moving the slider. I'm hoping someone can help me figure out how to make it work like this on Kubuntu.

First off I should warn you that I (like many users of older hardware that is not properly supported under PulseAudio) have uninstalled PulseAudio (because it's garbage) and am using Alsa to manage my audio hardware. I would think that there would be some way to do this using the 'amixer' application to add the PCM channel as a component of the 'Master' channel so that when the volume is turned down using the 'Master' channel control it will affect the PCM channel too (at least the output to the speaker jack, not necessarily the capture or mix volume though), but I'm not really any good at doing things from a terminal window and the options for the amixer command kind of confused me.

View 1 Replies View Related

Ubuntu Multimedia :: High Volume - System Sets Volume To Maximum Value?

Mar 24, 2011

I used Ubuntu 10.10 (64 bit) on IMac i7. As far as, I remember, after installing Pulse-Audio Equalizer, for each restart of the system, after login screen, system sets volume to maximum value. What can I do?

View 1 Replies View Related

Ubuntu Multimedia :: Usb Headset - Cannot Regulate The Volume Of The Phones (output) Anymore With Gnome-volume-control

Jun 12, 2010

since using 10.04 I have a big problem with my usb headset (freetalk everyman)

1. Problem: I cannot regulate the volume of the phones (output) anymore with gnome-volume-control. By default the volume is set to 100% which is way too loud. When I set it under 100% there is no sound at all. Values over 100% work.

2. Problem: The X server is freezing iregulary when I connect the headset and disconnect it, Magic SysRq works. I checked Xorg.0.log and found out that it recognizes the usb headset as keyboard:

[Code]...

View 6 Replies View Related

Fedora :: Dumb Lvm - Volume Group And Volume Names Are Gone From View

Jan 22, 2011

I don't know much about lvm and I've managed to screw up a drive. I had a 500GB drive with FC14 on it and I wanted to copy over a load of data to my new 1TB that was replacing it. I set up my new install the same way as the old...including the same volume names (error number 1 I think) I successfully mounted the old/500GB drive (using vgscan and vgchange -a y etc.) using a laptop (running FC13) and an external hdd cradle. I could access the files I wanted but this wasn't the machine I wanted to copy them to (I was doing this while waiting for the install to finish on the new drive).

When I tried the same process on the new install I found that having two lvm with the same name meant I couldn't mount the external one. So I opened the disk utility (palimsest) and was going to change the name of the old volume group but it wouldn't let me do that. I then thought maybe I could get away with just changing the name of the partition where the files were and maybe I could add it to the mounted group or something so I changed it to lv_home2. This changed the name of my new/1TB lv_home to lv_home2 as well. So thinking that wasn't the answer I just changed the name of the new lv_home2 back to lv_home.

From that point on I haven't been able to see the old drives partitions (the new volume group still works so far). I has a physical volume but the volume group and volume names are gone from view. When I try to vgscan on my main computer or the laptop I had it working on earlier I get:

[Code]....

View 3 Replies View Related

Ubuntu :: Volume Control - Volume Slider Moves Up Even If Try To Slide It Down

Sep 9, 2010

I'm using 10.04 now and it runs ok, except one strange thing in the Volume control applet. Sometimes, when I click on the volume slider, it moves up. Even if I try to slide it down, it moves up on every click. The same when I click left of it - it keeps moving up! This is very annoying at night when the music gets loud and wakes everybody. It happens with or without Compiz turned on

View 3 Replies View Related

Ubuntu Multimedia :: Volume Control Can Only Do Mute Or Full Volume?

Oct 31, 2010

I am struggling with a problem with the volume control... when i try to adjust the volume with the sliding bar i can not do it. If i put the scrollbar to the 0 position, it is muted. when i move it to anywhere else, i get the full volume. From other programs like vlc, i can adjust the volume with no problem.

View 2 Replies View Related

Ubuntu Multimedia :: Very Little Control Over Volume Using Master Volume Level?

Apr 10, 2011

My volume control seems to have only three settings: TOO LOUD, VERY QUIET, OFF. If I adjust the Master volume slider from the Panel, only about the right 1/8th has any effect and if I slide it past about the 95% mark, I get no sound at all. At the far-right end of the volume control, I get total volume. It's basically like the slider only has any impact in the top 5% of it's space. Below 95% of the slide, there is zero volume.

It's so drastic, that one tap down of the volume button on my keyboard kills the sound (because it nudges the slider past that 95% mark). This happens in the Audio settings, etc., system-wide. If I adjust the volume for an individual app from within the app (MPlayer, for example) it behaves exactly as expected (that is, app volume works smoothly, it's just master volume that has this issue). I have run through most of the "obvious" things-- I'm wondering if I broke something by installing the extra KDE packages to get Amarok to work.

View 3 Replies View Related

Server :: Server Offers PHP File For Download On HTTP But Is Fine On HTTPS

Mar 8, 2011

I have a debian box running Apache2 and PHP5.2.6 lenny.

When a request is made via https, php displays the content fine. If the request is made over HTTP the file is offered for download, rather than displaying it.

I know its probably something trivial but I've never seen this issue.

The plot thickens, I can display PHP over HTTP in some directories but not others (which offer the file for download)?

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved