Ubuntu sound volume is 40% lower than in Windows

1,316

Solution 1

Open a terminal and try this command:

alsamixer 

This will open the ALSA mixer application, which should allow you to be able to increase the level of master volume sound.

Solution 2

I don't know if this will help you, but on my system (a Thinkpad T510) I have to open up the sound control panel (right-click on the sound icon in the notification panel and select "Sound settings...") and move the volume bar to 140% (or so, it doesn't actually change the displayed number) to get full volume. I don't know why this is and it's quite irritating since the volume keys on the laptop will only go up to 100% and I have to open the control panel several times a day to be able to hear anything. Just like in your case, this is not a problem with Windows where 100% really does mean 100% of the available hardware volume.

Share:
1,316

Related videos on Youtube

vegas2033
Author by

vegas2033

Updated on September 18, 2022

Comments

  • vegas2033
    vegas2033 over 1 year

    My question will probably sounds dumb to most of you but I have been struggling to find out the problem. I basically have a method and a view (created by right click-> Add View).

    This is my method:

    public ActionResult yearlyOverview(FormCollection values)
    {
        return View();
    }
    

    And this is my view:

    <%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<dynamic>" %>
    
    <asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
        yearlyOverview
    </asp:Content>
    
    <asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">    
        <h2>yearlyOverview</h2>
    </asp:Content>
    

    The error message that I get comes from the browser:

    Sys.ArgumentException: Sys.ArgumentException: Cannot deserialize. The data does not correspond to valid JSON. Parameter name: data

    This is the master page code:

        <%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage" %>
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title><asp:ContentPlaceHolder ID="TitleContent" runat="server" /></title>
        <link href="../../Content/Site.css" rel="stylesheet" type="text/css" />
        <link href="../../Content/css/fullcalendar.css" rel="stylesheet" type="text/css" />
    </head>
    
    <body>
        <div class="page">
    
            <div id="header">
                <div id="title">
                    <h1>PS Administration</h1>
                </div>
    
                <div id="logindisplay">
                </div> 
    
                <div id="menucontainer">
    
                    <ul id="menu">              
                        <li><%= Html.ActionLink("Home", "Index", "Home")%></li>
                        <li><%= Html.ActionLink("Notices", "Index", "Notice")%></li>
                        <li><%= Html.ActionLink("Job Positions", "Index", "JobPosition")%></li>
                    </ul>
                </div>
            </div>
    
            <div id="main">
                <asp:ContentPlaceHolder ID="MainContent" runat="server" />
    
                <div id="footer">
                </div>
            </div>
        </div>
    </body>
    </html>
    

    Has anybody already stumbled on this problem?

    • Alexei Levenkov
      Alexei Levenkov over 10 years
      Nothing wrong with view - you need to investigate more and update question. This error have nothing to adding new view, but rather what you render in your view... Seem to be an issue with some "data" object not properly created, possibly this information is needed by master page portion of the view.
    • Karl Anderson
      Karl Anderson over 10 years
      @AlexeiLevenkov - you can have Page directives in an ASP.NET MVC view? Or is it only valid if you are using the WebForms view engine? Razor would not understand those, right?
    • Joe Brunscheon
      Joe Brunscheon over 10 years
      @KarlAnderson Razor will not understand those page directives.
    • Karl Anderson
      Karl Anderson over 10 years
      Post your master page code.
    • R.C
      R.C over 10 years
      when you added a view using right clik, what option you selected for : View Data Class ?
    • vegas2033
      vegas2033 over 10 years
      When I added the view I selected ASPX (C#) as view Engine
    • ataravati
      ataravati over 10 years
      I wonder how your question has been up-voted. You are mixing asp.net mvc with classic asp.net.
    • Alexei Levenkov
      Alexei Levenkov over 10 years
      @KarlAnderson - with Razor you can get into similar issue ("some random requirements coming from master view") when your "_layout" page introduces requirements (like adding some script that requires particular object to be rendered by page's code).
  • ncomx
    ncomx over 11 years
    Yes I also did that a few times, but as you said, as soon as i use the keyboard to change the volume that gets reset. But, having the slider on "Sound settings" to the max (>100%) gives me still much lower volume than in Windows.