Why does mtab show /dev/root rather than the partition mounted on /

Sorry if I have missed something I should have read, but can anybody explain please why my mtab no longer contains a reference to the actual partition which is mounted as root.  I have:
/dev/root / ext3 rw,relatime,errors=continue,data=writeback
but no reference to the partition.
TIA

It's related to this by the looks of it (see the links in post #6).  /etc/mtab is created by copying what's in /proc/mounts.
https://bbs.archlinux.org/viewtopic.php?id=99417

Similar Messages

  • Why use Protected Overide Sub OnPaint rather than the standard Paint_Event ?

    I notice many good programmers use this following method rather than the usual Paint_Event when painting to the form.
    Protected Overrides Sub OnPaint(e As PaintEventArgs)
    Dim g As Graphics = e.Graphics
    g.SmoothingMode = Drawing2D.SmoothingMode.HighQuality
    g.InterpolationMode = Drawing2D.InterpolationMode.HighQualityBicubic
    MyBase.OnPaint(e)
    End Sub
    Can anybody share the reasons why? Thanks 
    Top Tip: Toothache? Cut paper towel to 2"square. Smear with olive oil. Sprinkle on Cayenne Pepper. Fold over few times to form small wad. Tuck in between wall of mouth and gum. Leave 1 - 2 hrs. You will thank me!

    OK Crazypennie, maybe you are right. I tend to rant on a bit sometimes.
    Also, maybe the jumpy graphics is made worse because the animation output is not synced with the video hardware refresh rate. We can get around that slightly by using a very high fps. 
    Hi Leon,
    I tried modifying your code using a GraphicsFrame class that I wrote a little while back, the class utilizes the bufferedcontext/bufferedgraphics, instead of using the forms graphics directly. In theory, all objects should be rendered to the buffer before
    the forms graphics object. Is this less glitchy/faster on your pc? It seemed less glitchy/faster on mine..., and previous benchmarks show that using buffered graphics in this manner improved render time.
    You can read the discussion on
    this thread.
    Option Strict On
    Option Explicit On
    Option Infer Off
    Public Class Form11 ' drawing Code by Paul Ishak Apr 2015 A spinning pie chart. My timing code.
    Private Angle As Single = 100
    Private NextIncrement As Single = 1
    Private Randomizer As New Random(Now.Millisecond)
    Private SliceColors As New List(Of Color)
    Private SlicesOnWheel As Integer = 24
    Private Velocity As Single = 0
    Private WheelRadius As Integer = 300
    Private WheelLocation As New Point(50, 50)
    Private SW As New Stopwatch
    Private SFlag As Boolean ' wheel is currently spinning
    Private CntMS As Integer ' count the milliseconds
    Protected Overrides Sub OnPaint(e As PaintEventArgs)
    Dim gFrame As New GraphicsFrame(e.Graphics, Me.ClientRectangle.Size)
    Dim g As Graphics = gFrame.Graphics
    g.SmoothingMode = Drawing2D.SmoothingMode.HighQuality
    g.InterpolationMode = Drawing2D.InterpolationMode.HighQualityBicubic
    g.Clear(Me.BackColor)
    Dim sliceAngle As Single = CSng(360 / SlicesOnWheel)
    Dim rect As New Rectangle(WheelLocation, New Size(WheelRadius, WheelRadius))
    Dim curveWidth As Integer = CInt(WheelRadius - (WheelRadius / (2.0! * 0.9)))
    Dim rect2 As New Rectangle(rect.Left + curveWidth, rect.Top + curveWidth, rect.Width - curveWidth * 2, rect.Height - curveWidth * 2)
    Dim inc As UInteger = UInteger.MaxValue \ 360
    For I As Single = 0 To 359 Step sliceAngle
    g.FillPie(New SolidBrush(SliceColors(CInt(I / sliceAngle))), rect, I + NormalizeAngle(Angle), sliceAngle)
    g.DrawPie(Pens.White, rect, I + NormalizeAngle(Angle), sliceAngle)
    Next
    g.FillEllipse(Brushes.Black, rect2)
    g.DrawEllipse(Pens.White, rect2)
    g.DrawEllipse(Pens.White, rect)
    MyBase.OnPaint(e)
    If SFlag Then
    If Me.Text = " " Then Me.Text = "" Else Me.Text = " "
    End If
    gFrame.Render()
    gFrame.Dispose()
    MyBase.OnPaint(e)
    End Sub
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles btnSpin.Click
    If Not SFlag Then
    Velocity = Randomizer.Next(3, 5)
    NextIncrement = Velocity
    SFlag = True
    CntMS = 0 : SW.Reset() : SW.Start()
    If Me.Text = " " Then Me.Text = "" Else Me.Text = " "
    End If
    End Sub
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Me.DoubleBuffered = True
    SliceColors.Add(Color.Black)
    SliceColors.Add(Color.LightBlue)
    SliceColors.Add(Color.SeaGreen)
    SliceColors.Add(Color.Yellow)
    SliceColors.Add(Color.Red)
    SliceColors.Add(Color.LightBlue)
    SliceColors.Add(Color.Orange)
    SliceColors.Add(Color.Violet)
    SliceColors.Add(Color.Yellow)
    SliceColors.Add(Color.Black)
    SliceColors.Add(Color.Green)
    SliceColors.Add(Color.Black)
    SliceColors.Add(Color.Green)
    SliceColors.Add(Color.Red)
    SliceColors.Add(Color.Blue)
    SliceColors.Add(Color.SeaGreen)
    SliceColors.Add(Color.Pink)
    SliceColors.Add(Color.Black)
    SliceColors.Add(Color.Purple)
    SliceColors.Add(Color.SkyBlue)
    SliceColors.Add(Color.Aqua)
    SliceColors.Add(Color.White)
    SliceColors.Add(Color.Red)
    SliceColors.Add(Color.Blue)
    SliceColors.Add(Color.Pink)
    SliceColors.Add(Color.SeaGreen)
    SliceColors.Add(Color.Orange)
    ClientSize = New Size(375, 375)
    Me.Show()
    btnSpin.Refresh()
    End Sub
    Public Function NormalizeAngle(value As Single) As Single
    Return value Mod 360.0!
    End Function
    Private Sub Form11_TextChanged(sender As Object, e As EventArgs) Handles Me.TextChanged
    If Not SFlag Then Exit Sub
    Angle = NormalizeAngle(Angle + NextIncrement)
    NextIncrement = CSng(NextIncrement - 0.0033)
    If NextIncrement <= 0.0033 Then
    SFlag = False : SW.Stop() : Exit Sub
    End If
    Invalidate()
    CntMS += 5 ' <<< set timer interval here <<<
    Do Until SW.ElapsedMilliseconds > CntMS
    Loop
    End Sub
    End Class
    Public Class GraphicsFrame
    Implements IDisposable
    Private disposedValue As Boolean
    Private BackBuffer As System.Drawing.BufferedGraphics = Nothing
    Public ReadOnly Property Graphics() As System.Drawing.Graphics
    Get
    Return Me.BackBuffer.Graphics
    End Get
    End Property
    Public Sub New(ByVal canvas As System.Windows.Forms.Control)
    BufferedGraphicsManager.Current.MaximumBuffer = New Size(canvas.ClientRectangle.Width + 1, canvas.ClientRectangle.Height + 1)
    Me.BackBuffer = BufferedGraphicsManager.Current.Allocate(canvas.CreateGraphics, New Rectangle(0, 0, canvas.ClientRectangle.Width, canvas.ClientRectangle.Height))
    End Sub
    Public Sub New(ByVal canvasGraphics As Graphics, maximumBuffer As Size)
    BufferedGraphicsManager.Current.MaximumBuffer = New Size(maximumBuffer.Width + 1, maximumBuffer.Height + 1)
    Me.BackBuffer = BufferedGraphicsManager.Current.Allocate(canvasGraphics, New Rectangle(0, 0, maximumBuffer.Width, maximumBuffer.Height))
    End Sub
    Public Sub New(ByVal handle As IntPtr, maximumBuffer As Size)
    BufferedGraphicsManager.Current.MaximumBuffer = New Size(maximumBuffer.Width + 1, maximumBuffer.Height + 1)
    Me.BackBuffer = BufferedGraphicsManager.Current.Allocate(Graphics.FromHwnd(handle), New Rectangle(0, 0, maximumBuffer.Width, maximumBuffer.Height))
    End Sub
    Public Sub New(ByVal canvas As Image)
    BufferedGraphicsManager.Current.MaximumBuffer = New Size(canvas.Width + 1, canvas.Height + 1)
    Me.BackBuffer = BufferedGraphicsManager.Current.Allocate(Graphics.FromImage(canvas), New Rectangle(0, 0, canvas.Width, canvas.Height))
    End Sub
    Public Sub New(ByVal canvas As Bitmap)
    BufferedGraphicsManager.Current.MaximumBuffer = New Size(canvas.Size.Width + 1, canvas.Size.Height + 1)
    Me.BackBuffer = BufferedGraphicsManager.Current.Allocate(Graphics.FromImage(canvas), New Rectangle(0, 0, canvas.Width, canvas.Height))
    End Sub
    Public Sub Render()
    If Not BackBuffer Is Nothing Then BackBuffer.Render()
    End Sub
    Protected Overridable Sub Dispose(disposing As Boolean)
    If Not Me.disposedValue Then
    If disposing Then
    Me.BackBuffer = Nothing
    GC.Collect()
    End If
    End If
    Me.disposedValue = True
    End Sub
    Public Sub Dispose() Implements IDisposable.Dispose
    Dispose(True)
    GC.SuppressFinalize(Me)
    End Sub
    End Class
    Don't forget to vote for Helpful Posts and
    Mark Answers!
    *This post does not reflect the opinion of Microsoft, or its employees.

  • I purchased an episode but it is only showing 30 seconds rather than the full 42 minutes. How do I get it to play the full episode as I can't seem to download it again?

    I downloaded a tv epsiode, but it doesn't show the entire 42 minutes. All I get is a clip of 30 seconds, rather than the entire 42 minute episode. I have tried to download the episode again, but it wont allow me to and I have also tried to download the series, but if I do that it wont deliver the epsiode that I already have suposedly downloaded. Anyone have any idea how to help?
    Thanks,

    Hi JAM147,
    Welcome to the Support Communities!
    The following information should help you with this:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    http://support.apple.com/kb/HT1933?viewlocale=en_US
    Cheers,
    Judy

  • Why does browser download a file rather than displaying it?

    I am using a Nexus 7 device. I have a website locally on the device together with all of the data files. When I use the browser to select a file it does not need to download it. I want it to call up a list of the programs that can display the file so that I can select which app to use. When I leave that app then I expect it to go back to the browser and the HTML web page I was previou. sly viewing. It has done that at various times but has stopped now. How do I get it to resume displaying the files rather than downloading them onto the same device?

    I am using a Nexus 7 device. I have a website locally on the device together with all of the data files. When I use the browser to select a file it does not need to download it. I want it to call up a list of the programs that can display the file so that I can select which app to use. When I leave that app then I expect it to go back to the browser and the HTML web page I was previou. sly viewing. It has done that at various times but has stopped now. How do I get it to resume displaying the files rather than downloading them onto the same device?

  • Why does it show a user more than once in Users On...

    At times I see that the same forum id is shown logged in twice on the Users Online
    Is this just me going mad?
    -+-No longer a forum member-+-

    Hi DS,
    That happens when the site's related cookies (viewable under options in your browser) have not cleared and the timeout session has not been registered. It doesn't affect your minutes online so you can either delete your cookies or just let it be. It has no negative effect so no need to worry.
    Thanks.

  • Why does Firefox show a little triangle in the form field ?

    I setup a form and my client wants rounded corners and a background-image for the fields.
    It looks well in IE, but with Firefox i get a little white triangle in the left bottom corner of the fields.
    I looked at all the CSS for the field for conflicting settings, but could not find any.
    Can you help me with this ?

    It looks that there is some problem with the CSS code for the bottom of those fields and that the bottom right corner is shown in that position.
    Maybe you can post a minimized code example that shows this issue.
    *http://pastebin.mozilla.org
    *http://pastebin.com/
    You can also try to check for CSS issues in the Inspector.
    *https://developer.mozilla.org/Tools/Page_Inspector

  • Why does it show a download circle beside the songs that i just transferred from my phone to my computer?

    It shows a download circle and also the songs can't play

    you have to pay to get a program like CopyTrans here is the link: http://www.copytrans.net/download.php

  • Why does LOADING show as an error in the lower right hand corner everytime I try to email?

    '' locking as a duplicate - https://support.mozilla.com/en-US/questions/782855''
    Here are the messages I receive which slows my email to a halt: transferred from bl149w.blu149.mail.live.com and javascript:void (0) and transferring explore.live and Folder ID 0000 20349554 and inboxlight.aspx

    If you want to add a padlock icon to the location bar, you can use the Padlock add-on - https://addons.mozilla.org/firefox/addon/padlock-icon/

  • When I click on a website in my reading list, why does top sites open rather than the site I've clicked on?

    When I click on a website in my Reader list in Safari, why does Top Sites open rather than the website I've clicked on?

    Go step by step and test.
    Reset Safari.
    Click Safari in the menu bar.
    From the drop down select "Reset Safari".
    Click "Reset".
    Delete Cookies
    Safari > Preferences > Privacy > Cookies and other website data:
    Click “Remove All Website Data”.
    Empty Caches
    Safari > Preference > Advanced
    Checkmark the box for "Show Develop menu in menu bar".
    Develop menu will appear in the Safari menu bar.
    Click Develop and select "Empty Caches" from the dropdown.
    Turn off Extensions if any, and launch Safari.
    Safari > Preferences > Extensions

  • Why does Firefox 5 open external (internet, SMTP) e-mail in the browser rather than the Lotus Notes Client?

    Using Lotus Notes as the system's primary mail client, '''some''' users experience external mail being opened in the browser rather than the the client. When they revert back to using an older version as the OS default browser, or indeed a different browser altogether, this does not happen.
    Again, this does not happen with all installations of 5.0 - just a few.

    go to "preferences" in Lotus Notes and enable "disable embodded browser for MIME mail" and it shoudn't open the browser anymore

  • How can I make ringtones show in my Tones tab rather than the Music tab?

    I just bought my first iPhone 4 and uploaded a bunch of music ringtone files to iTunes and changed the default preference to display the Tones tab. However, the ringtones all got added to the Music tab rather than the Tones tab. I have a number of questions:
    I'm used to other phones where any music file can be set as a ringtone for a particular contact. Is this the case for iPhones too?
    If so, how can I set a ringtone for a contact from these music files?
    If not, how can I get the ringtones to appear in the Tones tab? I assume that I would have to do that to sync ringtones to my iPhone ringtone "folder".
    Is there another alternative? I read on the forum something about dragging ringtone files to the iPhone. Not sure I understood that! Does this mean I can drag a music file from the Music tab to the iPhone icon and have that file end up in the iPhone ringtone "folder"? If it ends up in the Music "folder", how do I access it to set it as a contact ringtone?
    Thank you for any light you can shed on this.

    It would be good if this was made a user-defined Option (Tools -> Options -> Tabs) in the next update of Firefox rather than having to install an add-on. I currently keep Firefox open to view my Accuweather.com add-on running or because I know that I will be returning to Firefox in short order. (I do close Firefox if I have visited a sensitive or secure site to ensure better security.) Every time I want to go to a bookmark, I must open a new "(Untitled)" tab before selecting my bookmark using the keyboard (I'm a dedicated keystroker; it's much faster for me). This way, when I close the website, I have an "(Untitled)" tab displaying so that Firefox doesn't close. Why can't I set an Option parameter that will result in me not having to go through this? Alternatively, allow users to set an option to keep Firefox loaded and open in the event only one tab is open and maybe if only one Firefox application window is running (I avoid having more than one Firefox window open as much as possible). I've addressed this last issue in the past but have seen no change when one closes the last tab in a Firefox window. As general practice, I would think that Firefox would run better if options, like I have described above, were part of the Firefox application code and not given to needing an add-on which may cause instability in Firefox as they have in the past, even with author verification and certification.

  • Can you set live bookmarks to show topic replies rather than new topics (or is that a setting of the site/forum)?

    I have live bookmarks for some forums, blogs, and news pages on my bookmarks toolbar and only one site shows topic replies rather than new topics in the dropdown bar. Can I configure the forum ones to show topic replies or is that a setting configured by the website itself?

    Nope. This is a common request, for some form of preview, typically as Outlook does it. Almost equally common are requests to have absolutely no preview whatsoever in case something nasty happens.
    Many of us think the Message Pane below the thread list is perfectly adequate for a quick scan of message content.

  • Cell calculations showing header text rather than data

    This has to be simple, but I am stumped.
    I have added header text to a SS.  Now when I attempt to add a calculation to a cell in the SS Numbers is showing the text in the calculation rather than the cell data or cell location.
    How do I stop this?  Just want to see something like this:  =F13-(E13*4)
    but I get this
    =On Hand Now test line-(Monthly Average test line*Cal. 212 West Jackson Street)
    Numbers does put the the correct numeric result in the proper cell but I don't want to see the above.
    Tim

    select the menu item "Numbers > Preferences" then uncheck the box "Use header cell names as references":

  • Why does iPhoto (9.0/11) not retain the Event name when exporting more than one event? (using File - Export - Album name with number).

    Why does iPhoto (9.0/11) not retain the Event name when exporting more than one event? (using File -> Export -> Album name with number).
    Exporting a single Event retains the Event name which is what I'd expect. But highlighting more than one event and exporting it renames the images to Events 001.JPG, Event 002.JPG etc.
    I was recently on holidays and had all my events nicely split on Dad's computer but when I went to export it I couldn't retain any of this information. Now I have to replicate this all again on my computer.
    It wasn't possible to export the entire library as the external drive was fat32 format an I didn't want all of it. It would be nice to export a bunch of events to someone and have it retain the name.
    Does anyone have a work around or will this be fixed at some point by Apple?

    Why does iPhoto (9.0/11) not retain the Event name when exporting more than one event? (using File -> Export -> Album name with number).
    Exporting a single Event retains the Event name which is what I'd expect. But highlighting more than one event and exporting it renames the images to Events 001.JPG, Event 002.JPG etc.
    I was recently on holidays and had all my events nicely split on Dad's computer but when I went to export it I couldn't retain any of this information. Now I have to replicate this all again on my computer.
    It wasn't possible to export the entire library as the external drive was fat32 format an I didn't want all of it. It would be nice to export a bunch of events to someone and have it retain the name.
    Does anyone have a work around or will this be fixed at some point by Apple?

  • Why does firefox show up as a plugin on volume mixer?

    Why does firefox show up as a plugin on volume mixer? After updating a flash plugin into firefox (when it had requested me to update it), it no longer shows up as firefox in volume mixer. It now shows up as some plugin icon. I really don't understand this, and wish it to be the firefox icon again. What is going on and what happened? It names itself "Plugin Container For Firefox" What does that mean? It has been this way ever since, and nothing I have done has fixed this. Restarting, refreshing, reinstalling, clearing cache, etc. Can anyone think of something please? :(
    == This happened ==
    Every time Firefox opened
    == This happened just a couple days ago (june 25, 2010 exactly)

    I have this, but my volume on firefox doesnt work at all

Maybe you are looking for

  • Oracle php connectivity

    HI, I already told about my pblm. Another one issue is oracle is in one login which is not root. But apache ,php is in root login. Whether these things cause errors.

  • Pass parameter with fscommand exec

    Hi, I am writing a text file with batch file and this batch file which is called from fscommand. I need to pass a parameter from fscommand. Is is possible ? Following is flash and batch file code. Flash Source import flash.events.Event; bt.addEventLi

  • Select - execution time strange behaviour

    hi all, when i executed an SQL - select (with joins and so on) - I have observed the following behaviour: Query execution times are like: - for 1000 records - 4 sec 5000 records - 10 sec 10000 records - 7 sec 25000 records - 16 sec 50000 records - 33

  • User authentication error with Proxy Java Calling web Service in XI

    Hello, I have deploy a Web Service in SAP XI 3.0. within a SOAP sender adapter. I have also created the Proxy Java Class to access the webservice in the Developer Studio and a Plain Java Class (only with a method main) which uses the proxy classes to

  • HT200040 I'm a still photographer who is using Motion5 for presentation of my work.

    I'm a still photographer who is using Motion5 for presentation of my work. I'm exporting images out of Photoshop at 4000, 3840 or 1380 pixels wide at 72 DPI I;m trying to see which file size will render me the best sharpiness for my images. I'm havin