id
stringlengths
1
7
postTypeId
stringclasses
1 value
acceptedAnswerId
stringlengths
1
7
creationDate
stringdate
2009-01-08 07:47:55
2024-03-31 23:33:05
score
stringclasses
504 values
viewCount
stringlengths
1
7
body
stringlengths
24
34.3k
ownerUserId
stringlengths
1
7
lastEditorUserId
stringlengths
1
7
lastEditDate
stringdate
2010-07-28 20:43:11
2024-04-07 06:16:28
lastActivityDate
stringdate
2010-07-29 14:11:46
2024-04-07 06:16:28
title
stringlengths
13
150
tags
listlengths
1
5
answerCount
stringclasses
45 values
commentCount
stringclasses
47 values
contentLicense
stringclasses
3 values
comments
listlengths
0
56
acceptedAnswer
dict
answers
listlengths
0
82
communityOwnedDate
stringclasses
232 values
favoriteCount
stringclasses
2 values
closedDate
stringlengths
23
23
lastEditorDisplayName
stringclasses
890 values
ownerDisplayName
stringlengths
2
28
5069
1
5072
2010-10-02T14:40:27.343
12
18711
<p>I remember that I was able to run a Linux .exe that was placed on an NTFS partition earlier before I installed 10.10 RC. But if I try to run it now, I can't run it as it hasn't the execution permission. The bad part is that I can't change the permissions too. I'm <code>chmod</code>-ding <code>+x</code> but no change at all with its permissions.</p> <p>So this seems to be a bug? Any help? </p> <p>Though when I put it on ext4 partition, I can set the permission. But I want to do this as I did before, right from its default NTFS location.</p>
2538
74307
2012-08-23T12:43:11.860
2012-11-14T04:26:20.607
Can't set permissions for files on an NTFS partition
[ "10.10", "filesystem", "permissions" ]
3
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>NTFS doesn't support the execute permission because it's designed for Windows, which doesn't have the same concept of \"executable\" files as Linux does. If you're trying to run Windows .exe files in Wine, it should still work if you run wine explicitly, like this:</p>\n\n<pre><code>wine /path/to/executable.exe\n</code></pre>\n\n<p>If you do need to execute files directly, you can set the permissions that will be applied to <em>all</em> files with the <code>fmask</code> option in <code>/etc/fstab</code>. You may also need to add the <code>exec</code> option if that's not the default for NTFS (I don't have a drive handy to check right now). The value for <code>fmask</code> tells the driver which bits to turn off, so, for example, to allow read, write, and execute for all users, you should have something like this:</p>\n\n<pre><code>/dev/hda1 /mnt/windows ntfs-3g defaults,exec,fmask=000 0 0\n</code></pre>\n\n<p>If there's already an <code>fmask</code> option, the simplest way to turn on the execute bit is to subtract 1 from any digit that's odd.</p>\n\n<p>If you don't know how permission masking works, the basic idea is that the read, write, and execute permissions are represented by the values 4, 2, and 1 respectively. You can add them together to combine permissions so, for example, reading + writing would be 6. The permission mask is a combination of three digits that apply to the owner, group, and \"others\" (everyone else).</p>\n\n<p>Just remember that <code>fmask</code> (also, <code>umask</code> and <code>dmask</code>) in fstab are the permissions you want to <strong>turn off</strong>.</p>\n\n<p>As a slightly more interesting example, this would set the permissions to \"rwx\" for the owner, \"rx\" for the group, and \"r\" for everyone else:</p>\n\n<pre><code>/dev/hda1 /mnt/windows ntfs-3g defaults,exec,fmask=023 0 0\n</code></pre>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-10-02T17:29:30.550", "id": "5168", "postId": "5072", "score": "0", "text": "thanks matthew... that fstab entry holds the key to my problem... as i recently installed the ubuntu RC,so i didnt included the fstab entry for auto mounting of the ntfs drives... which i had in my earlier OS... so the exec flag is the key..which i believe isnt included while mounting manually by \"double clicking\" on the drives in the my computer view.. thanks. :)", "userDisplayName": null, "userId": "2538" }, { "creationDate": "2010-12-07T23:39:59.623", "id": "17611", "postId": "5072", "score": "0", "text": "This is what I had to do to change permissions for things on my second drive.", "userDisplayName": null, "userId": "6647" }, { "creationDate": "2015-08-12T12:41:03.707", "id": "951051", "postId": "5072", "score": "0", "text": "\"Contrary to what most people believe, NTFS is a POSIX-compatible¹ filesystem, and it is possible to use permissions on NTFS\" http://askubuntu.com/a/74851/253474 https://technet.microsoft.com/en-us/library/cc976809.aspx", "userDisplayName": null, "userId": "253474" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-02T16:52:17.383", "id": "5072", "lastActivityDate": "2010-10-02T16:52:17.383", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "30", "parentId": "5069", "postTypeId": "2", "score": "12" }
[ { "accepted": true, "body": "<p>NTFS doesn't support the execute permission because it's designed for Windows, which doesn't have the same concept of \"executable\" files as Linux does. If you're trying to run Windows .exe files in Wine, it should still work if you run wine explicitly, like this:</p>\n\n<pr...
null
null
null
null
null
5071
1
null
2010-10-02T15:20:30.647
2
696
<p>I am having both gnome and kde on my system. My Gnome desktop is working perfectly but in KDE here is no sound being generated.</p> <p>output of apley -l and lspci commands is as follows..</p> <pre><code>neha@neha-laptop:~$ aplay -l **** List of PLAYBACK Hardware Devices **** card 0: Intel [HDA Intel], device 0: STAC92xx Analog [STAC92xx Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 card 0: Intel [HDA Intel], device 3: INTEL HDMI [INTEL HDMI] Subdevices: 1/1 Subdevice #0: subdevice #0 and output of lspci command is: neha@neha-laptop:~$ lspci 00:00.0 Host bridge: Intel Corporation Mobile PM965/GM965/GL960 Memory Controller Hub (rev 0c) 00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (rev 0c) 00:02.1 Display controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (rev 0c) 00:1a.0 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #4 (rev 02) 00:1a.1 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #5 (rev 02) 00:1a.7 USB Controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #2 (rev 02) 00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 02) 00:1c.0 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 1 (rev 02) 00:1c.1 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 2 (rev 02) 00:1c.4 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 5 (rev 02) 00:1d.0 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #1 (rev 02) 00:1d.1 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #2 (rev 02) 00:1d.2 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #3 (rev 02) 00:1d.7 USB Controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #1 (rev 02) 00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev f2) 00:1f.0 ISA bridge: Intel Corporation 82801HEM (ICH8M) LPC Interface Controller (rev 02) 00:1f.1 IDE interface: Intel Corporation 82801HBM/HEM (ICH8M/ICH8M-E) IDE Controller (rev 02) 00:1f.2 SATA controller: Intel Corporation 82801HBM/HEM (ICH8M/ICH8M-E) SATA AHCI Controller (rev 02) 00:1f.3 SMBus: Intel Corporation 82801H (ICH8 Family) SMBus Controller (rev 02) 02:09.0 FireWire (IEEE 1394): Ricoh Co Ltd R5C832 IEEE 1394 Controller (rev 05) 02:09.1 SD Host controller: Ricoh Co Ltd R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter (rev 22) 02:09.2 System peripheral: Ricoh Co Ltd R5C843 MMC Host Controller (rev 12) 02:09.3 System peripheral: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter (rev 12) 02:09.4 System peripheral: Ricoh Co Ltd xD-Picture Card Controller (rev ff) 09:00.0 Ethernet controller: Marvell Technology Group Ltd. 88E8040 PCI-E Fast Ethernet Controller (rev 12) 0b:00.0 Network controller: Broadcom Corporation BCM4312 802.11a/b/g (rev 01) </code></pre> <p>What could be the problem?</p>
2610
4
2011-02-04T17:03:56.437
2011-02-04T17:03:56.437
No volume in kubuntu 10.04
[ "sound", "kubuntu" ]
3
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>maybe your kde system volume is turned down. I would check the audio settings of kde</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-02T23:50:03.197", "id": "5093", ...
null
null
null
null
null
5075
1
null
2010-10-02T17:13:25.467
7
2787
<p>We have set up a Ubuntu workstation with accounts for all the group members.</p> <p>Nxserver from nomachine seems to be what we need, but it is restricted to two users. FreeNx isn't easily installable and doesn't seem very reliable. VNC seems to be usable for log in to an existing open session, but not for remote logins on a single workstation.</p> <p>To be clear, we need a solution to log in on a workstation. Desktop maintenance isn't necessary at all.</p>
2612
10883
2018-07-28T12:59:03.080
2018-07-28T12:59:03.080
Best way to remote login on a Ubuntu machine from Ubuntu/Windows and OS X
[ "10.04", "remote-desktop", "freenx" ]
4
2
CC BY-SA 4.0
[ { "creationDate": "2010-10-03T07:31:25.457", "id": "1356555", "postId": "5075", "score": "0", "text": "[TeamViewer](http://www.teamviewer.com) should work I think,they have recently released a linux client.", "userDisplayName": null, "userId": "305" }, { "creationDate": "2010-10-...
null
[ { "accepted": null, "body": "<p>In the old days you started xdm on the machine, and it provided remote X logins to X servers started with \"-broadcast\" or \"-remote\" (if I recall correctly).</p>\n\n<p>I believe I have seen that Ubuntu can enable this X display manager, so I would recommend you have a look...
null
null
null
null
null
5077
1
5128
2010-10-02T17:43:38.587
1
2300
<p>I have a Zebra TLP thermal printer (LPT-attached) and a proprietary business web application using an ActiveX element to print on it. Is there a way to make it work on Linux?</p> <p>If there was, then I could probably extinguish Windows in my company!</p>
2390
null
null
2010-10-03T16:37:36.597
Is it possible to setup/emulate a special Windows printer driver for ActiveX elements in IE ob Wine?
[ "wine", "ie", "printing" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>For the web application, your best bet is to try running Internet Explorer in Wine using the method here: <a href=\"http://yokozar.org/blog/archives/236\" rel=\"nofollow\">http://yokozar.org/blog/archives/236</a></p>\n\n<p>Wine prints using ordinary Linux printing system (cups), so you'll need to get the printer working \"normally\" as well. However if I'm reading your post right it seems like the printer requires a special Windows driver. If the printer doesn't just work, you may be in for some difficulty, however all may not be lost.</p>\n\n<p><a href=\"http://wiki.winehq.org/Printing\" rel=\"nofollow\">http://wiki.winehq.org/Printing</a> mentions a project to get Windows Printer drivers to work via Wine; this morphed into the ddiwrapper project. ddiwrapper has the potential to make Windows XP printer drivers work in Ubuntu, however it is not packaged for Ubuntu at this point and I am unsure of the project's current state (it started as a Novell thing some years ago).</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-03T16:37:36.597", "id": "5128", "lastActivityDate": "2010-10-03T16:37:36.597", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2558", "parentId": "5077", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>For the web application, your best bet is to try running Internet Explorer in Wine using the method here: <a href=\"http://yokozar.org/blog/archives/236\" rel=\"nofollow\">http://yokozar.org/blog/archives/236</a></p>\n\n<p>Wine prints using ordinary Linux printing system (cup...
null
null
null
null
null
5078
1
10591
2010-10-02T18:27:00.100
3
790
<p>Most applications, including the gnomevfs headers themselves, expect the files to be under <code>/usr/include/libgnomevfs</code>, <strong>but</strong> Ubuntu has them under <code>/usr/include/gnome-vfs-2.0/libgnomevfs</code>.</p> <p>Why? The package I'm referring to is called <a href="http://packages.ubuntu.com/lucid/libgnomevfs2-dev" rel="nofollow">libgnomevfs2</a>.</p> <p>Inside /usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs.h` we find:</p> <pre><code>#include &lt;libgnomevfs/gnome-vfs-acl.h&gt; #include &lt;libgnomevfs/gnome-vfs-address.h&gt; #include &lt;libgnomevfs/gnome-vfs-async-ops.h&gt; #include &lt;libgnomevfs/gnome-vfs-cancellation.h&gt; ... </code></pre> <p>Meaning that even the headers themselves expect the files to be in that location - and nothing that includes this file will work.</p> <p>Am I missing something, or is this a glitch?</p>
5
235
2011-01-03T15:09:33.543
2011-01-03T15:09:33.543
Why is 'libgnomevfs' files under /usr/include/gnome-vfs-2.0?
[ "compiling", "paths", "gnomevfs" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The package is installed in <code>/usr/include/gnome-vfs-2.0</code> so that it can coexist with other versions of gnome-vfs (e.g. imagine also having <code>/usr/include/gnome-vfs-1.0</code> available). When a package needs to build against a version of gnome-vfs, it should query <code>pkg-config</code> to find the installation location. (This is normally done during <code>configure</code> for the to-be-compiled software.) For example:</p>\n\n<pre><code>pkg-config --cflags gnome-vfs-2.0\n-pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include \n</code></pre>\n\n<p>Note the use of all the <code>-I</code> flags, including <code>-I/usr/include/gnome-vfs-2.0</code>. The output of the <code>pkg-config --cflags</code> call would normally be added to the <code>CFLAGS</code> environment variable of the build. Given the <code>-I</code> part, the compiler will be able to find the full path to the headers, since it will start looking in <code>/usr/include/gnome-vfs-2.0</code> and then tack on the header path <code>libgnomevfs/gnome-vfs-acl.h</code>, which will resolve the correct full file path: <code>/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-acl.h</code>.</p>\n\n<p>So, if the software does not already use <code>pkg-config</code>, you can try to pass the variables (<code>cflags</code> and <code>libs</code>) into the <code>configure</code> call:</p>\n\n<pre><code>CFLAGS=`pkg-config --cflags gnome-vfs-2.0` LDFLAGS=`pkg-config --libs gnome-vfs-2.0` ./configure\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-31T17:12:40.510", "id": "10591", "lastActivityDate": "2010-10-31T17:12:40.510", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "721", "parentId": "5078", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>Applications should not expect the headers and libs to be in a fixed directory but use <em>pkg-config</em> to get the needed parameters, e.g.: <code>pkg-config --cflags gnome-vfs-2.0</code></p>\n", "commentCount": "2", "comments": [ { "creationDate": "20...
null
null
null
null
null
5080
1
5081
2010-10-02T20:54:49.857
10
4957
<p>I recently upgrade to Ubuntu 10.04 and I noticed that I'm no longer able to add a volume control to my desktop panels. When I right click the panel and choose "Add to panel" there is no longer a volume control in the list.</p> <p>How do I add a volume control to my desktop panel?</p>
1202
235
2010-10-03T01:29:41.440
2015-09-30T18:01:13.640
Add volume control to desktop panel indicator?
[ "10.04", "gnome", "indicator" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You want the the option from the list to add an \"Indicator Applet\".</p>\n\n<p>This is because from Ubuntu 10.04 there has been a push for panel items to use a new system for panel items.</p>\n\n<p>If adding the \"Indicator Applet\" appears to make no difference, you should try to install the package <code>indicator-sound</code> which contains the sound indicator.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2010-10-03T01:14:45.833", "id": "5180", "postId": "5081", "score": "1", "text": "The package name is indicator-sound if you want to add that to your answer.", "userDisplayName": null, "userId": "235" }, { "creationDate": "2010-10-03T21:57:21.227", "id": "5232", "postId": "5081", "score": "3", "text": "The \"Indicator Applet\" seems to give me a sound volume control but it also gives me a email control. I don't even use desktop email... When I try install \"indicator-sound\" it says I already have the latest package but I can't find it individually in the list.", "userDisplayName": null, "userId": "1202" }, { "creationDate": "2010-10-04T15:54:08.650", "id": "5261", "postId": "5081", "score": "1", "text": "The \"Indicator Applet\" includes all your installed indicators (it is arguably a bug that you can't customise which indicators are shown more easily, I've certainly found this frustrating!). If you don't want the email control remove the `indicator-messages` package.", "userDisplayName": null, "userId": "866" }, { "creationDate": "2010-10-15T03:00:55.540", "id": "7231", "postId": "5081", "score": "0", "text": "Thanks a lot fluteflute and Jorge Castro. I was also unable to see my Volume Indicator and installing the indicator-sound package brought it back. I certainly agree that it should be easier to customize the indicator applet.", "userDisplayName": null, "userId": "87" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-02T21:10:25.370", "id": "5081", "lastActivityDate": "2010-10-03T07:05:16.847", "lastEditDate": "2010-10-03T07:05:16.847", "lastEditorDisplayName": null, "lastEditorUserId": "866", "ownerDisplayName": null, "ownerUserId": "866", "parentId": "5080", "postTypeId": "2", "score": "9" }
[ { "accepted": true, "body": "<p>You want the the option from the list to add an \"Indicator Applet\".</p>\n\n<p>This is because from Ubuntu 10.04 there has been a push for panel items to use a new system for panel items.</p>\n\n<p>If adding the \"Indicator Applet\" appears to make no difference, you should ...
null
null
null
null
null
5082
1
null
2010-10-02T21:31:44.553
18
11508
<p>If I plug an external CRT to my laptop, it normally either displays the same picture as the laptop's panel, or extends the desktop area. But I'd like it to be a separate virtual desktop (a workspace, in terms of Gnome). Is it possible?</p> <p>I use Toshiba L10 laptop with Intel 82852/855GM onboard card. And I switch (which, AFAIK, can be an inconvenience with Xinerama) monitor configurations (detach all monitors but a laptop's built-in panel, attach monitors with different resolutions) pretty often (sometimes many times a day).</p>
2390
2390
2010-10-05T00:40:32.483
2010-10-05T00:40:32.483
Can I set up 2 monitors to be 2 separate Gnome virtual desktops instead of one big?
[ "gnome", "multiple-monitors", "workspaces" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>What kind of videocard are you using? With an nVidia card I would recommend using <code>twinview</code>. Otherwise it should be possible to simply enable <code>xinerama</code> for it to work.</p>\n", "commentCount": "7", "comments": [ { "creationDate": "...
null
null
null
null
null
5083
1
null
2010-10-02T21:43:19.963
10
2975
<p>I have been using "commanders" with DOS and Windows for more than 15 years. Needless to say it'd significantly improve my comfort if I could be able to create directories by pressing F7, deleting by F8, copying (to an opposite panel) by F5 and moving by F6. I was very pleased by Nautilus to introduce a 2-panel view, but disappointed by lack of traditional "commander" F-keys scheme. Can I correct this without editing and recompiling Nautilus sources?</p>
2390
18474
2011-12-12T12:47:46.263
2012-07-26T17:08:12.190
Can I set up Nautilus to use a Midnight Commander-like hot keys scheme for 2-panel mode?
[ "nautilus", "shortcut-keys" ]
4
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>Answering <a href=\"https://askubuntu.com/questions/5241/ubuntu-editable-menu-accelerators-on-a-per-app-basis-where-is-this-option\">a different question</a>, I was reminded of an option that has now been deeply hidden by default, \"Editable Menu Accelerators.\" This can let ...
null
null
null
null
null
5084
1
null
2010-10-02T21:58:28.720
4
397
<p>Midnight Commander (as well as all Norton and Total Commanders I used to use with DOS and Windows) provide a very pleasant facility of stepping into archives (tar.gz, zip, 7z, rar, etc.) and other containers (as ISO CD images) and working with them much like plane directories. Can Nautilus be configured to behave so?</p>
2390
null
null
2010-10-02T23:31:27.743
Can I configure Nautilus to step into archives instead of opening them in external File Roller application window?
[ "nautilus", "archive" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Not in the way mc is doing it, but you can open them with Archive Mounter and then access them like a mounted file system.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-02T23:34:06.350", "id": "5176", "postId": "50...
null
null
null
null
null
5085
1
5091
2010-10-02T22:02:03.520
9
7310
<p>What are benefits of an ordinary Ubuntu kernel compared to realtime one? What are realtime kernel's tradeoffs?</p>
2390
2390
2010-10-02T22:14:07.633
2020-07-12T10:29:33.697
Why to use ordinary kernel if there's realtime one?
[ "kernel", "performance", "realtime" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Realtime kernels can guarantee a certain response time to a process. For example the process has to read each 10ms the values from an control system. In realtime you can assure that no value is dropped.</p>\n\n<p>If you don't operate some kind of manufactoring control system, you simple don't need it.</p>\n\n<p>The overall system performance may be better if the kernel has not to guarantee every process a time slice in a period. (Better I/O utilization, lower process switch overhead etc etc)</p>\n\n<p>To sum up: Realtime does not increase the throughput of a system.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2018-12-30T07:15:36.530", "id": "1823346", "postId": "5091", "score": "2", "text": "Does a RT kernel make any difference in gaming (I mean online multiplayer 3d games)?", "userDisplayName": null, "userId": "436333" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-02T23:47:34.217", "id": "5091", "lastActivityDate": "2010-10-02T23:47:34.217", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1990", "parentId": "5085", "postTypeId": "2", "score": "15" }
[ { "accepted": true, "body": "<p>Realtime kernels can guarantee a certain response time to a process. For example the process has to read each 10ms the values from an control system. In realtime you can assure that no value is dropped.</p>\n\n<p>If you don't operate some kind of manufactoring control system...
null
null
null
null
null
5086
1
5088
2010-10-02T22:03:53.960
2
185
<p>I installed the proprietary ATI/AMD FGLRX graphics driver through "jockey-gtk" to get rid of my computer's over heating problems. While my computer no longer overheats, I am stuck with a new problem:</p> <p>When I click on a minimized application in the task bar in order to restore it (unminimize it), there is always a short delay of about 1 second.</p> <p>Any suggestion on how to approach this problem? 1 second might not seem so bad but for a power user it is :)</p>
2331
null
null
2010-10-30T06:11:23.447
ATI drivers: delay when unminimizing
[ "drivers", "graphics", "fglrx" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I fixed the problem by following the steps mentioned in this <a href=\"http://www.ubunturoot.com/2010/05/how-to-fix-maximize-delaylag-with.html\" rel=\"nofollow\">blog post</a>:</p>\n\n<pre><code>sudo add-apt-repository ppa:info-g-com/xserver-xorg-1.7.6-gc;\nsudo apt-get update;\nsudo apt-get upgrade;\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-02T23:16:13.133", "id": "5088", "lastActivityDate": "2010-10-02T23:16:13.133", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2331", "parentId": "5086", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>I fixed the problem by following the steps mentioned in this <a href=\"http://www.ubunturoot.com/2010/05/how-to-fix-maximize-delaylag-with.html\" rel=\"nofollow\">blog post</a>:</p>\n\n<pre><code>sudo add-apt-repository ppa:info-g-com/xserver-xorg-1.7.6-gc;\nsudo apt-get upda...
null
null
null
null
null
5087
1
null
2010-10-02T22:48:27.687
2
1410
<p>In XFCE it was very convenient to pop-up applications launcher menu and running applications list menu anywhere on desktop by right and middle click respectively. Can be Gnome configured to behave so?</p> <p>I never put any files/folders on desktop, so I don't need desktop context menu functionality. I also have a very big second monitor and am pretty disturbed by moving mouse over it to the first screen to use taskbar (and placing taskbar on that second big screen wont help much, as it is still big).</p>
2390
25863
2012-11-21T22:52:49.510
2012-11-21T22:52:49.510
Can I set up Gnome to pop-up its main menu anywhere when I right-click on desktop, and apps (windows) list on middle-click?
[ "gnome", "menu", "taskbar" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>If you remove the menu from the panel and hit Alt + F1 the menu will appear at the mouse cursor. If you use Compiz you can then use the commands plugin along with <a href=\"http://linux.die.net/man/1/xte\" rel=\"nofollow\">xte</a> to simulate keyboard presses and make Alt + ...
null
null
null
null
null
5090
1
null
2010-10-02T23:38:46.247
5
518
<p>I use 2 displays - laptop's built-in 1024x768 panel and external attached 1600x1200 CRT. In XFCE I could set different backdrops to these 2. Can I in Gnome?</p>
2390
null
null
2010-10-06T17:01:52.333
Can I set different background images for different monitors?
[ "gnome" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>It is not currently possible to do this with the default GNOME setup (ie. Nautilus, the file manager, manages the desktop wallpaper). There is <a href=\"http://brainstorm.ubuntu.com/idea/93/\" rel=\"nofollow\">an idea in development</a> to provide this functionality. It is po...
null
null
null
null
null
5092
1
null
2010-10-02T23:49:43.930
6
2383
<p>I've used "Mouse Preferences" window to set mouse pointer acceleration and sensitivity sliders to their maximums, but I am still not satisfied with how fast does mouse pointer move (I've got a very big display). Can I accelerate it over?</p>
2390
null
null
2010-11-11T03:16:31.567
Can I accelerate mouse sensetivity over the standard maximum?
[ "gnome", "xorg", "mouse" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-10-20T15:53:25.913", "id": "8378", "postId": "5092", "score": "0", "text": "I've been trying to do the opposite: decrease the sensitivity below the minimum. Have you had any luck with your attempts?", "userDisplayName": null, "userId": "1012" }, { "creatio...
null
[ { "accepted": null, "body": "<p>I'm not really sure what the range of the mouse acceleration sliders are, but you can easily change this manually by using <code>xset</code>.</p>\n\n<p>Try something like <code>xset m 100 5</code>, that makes it go <em>very</em> fast for me.</p>\n\n<p>The syntax of the comman...
null
null
null
null
null
5094
1
5096
2010-10-03T00:17:28.820
4
2657
<p>When I open Downloads, Pictures, Music, or Documents folders, I can see a thick beige Ubuntu One bar on top of the folder's workplace. This annoys me and, I have reasons to suppose, introduces some malfunctions. How to disable it?</p> <p>I wouldn't like to totally remove Ubuntu One as I think I can make use of it in future. But for sure I am very improbable to be willing to synchronise my Downloads folder ever, as well as Videos (unless I get a gigabit Internet connection, as it contains hundreds gigabytes).</p>
2390
235
2010-10-03T01:11:29.497
2010-10-03T01:37:37.660
How to disable the Ubuntu One file manager ribbon for specific folders?
[ "nautilus", "ubuntu-one" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Right click on the folder in question, and then goto <code>Ubuntu One &gt; Hide Ribbon</code></p>\n\n<p><img src=\"https://i.stack.imgur.com/Ua34K.png\" alt=\"Hide Ribbon\"></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-03T01:03:46.137", "id": "5096", "lastActivityDate": "2010-10-03T01:37:37.660", "lastEditDate": "2010-10-03T01:37:37.660", "lastEditorDisplayName": null, "lastEditorUserId": "570", "ownerDisplayName": null, "ownerUserId": "570", "parentId": "5094", "postTypeId": "2", "score": "6" }
[ { "accepted": true, "body": "<p>Right click on the folder in question, and then goto <code>Ubuntu One &gt; Hide Ribbon</code></p>\n\n<p><img src=\"https://i.stack.imgur.com/Ua34K.png\" alt=\"Hide Ribbon\"></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicen...
null
null
null
null
null
5095
1
null
2010-10-03T00:59:33.843
12
4975
<p>I'm a Ubuntu 10.04 user who is looking for a way to, for example, make my computer type a <code>+</code> character when I hold down the <kbd>Windows</kbd> Key (I think it's called <kbd>Super</kbd> in Linux world) and press the <kbd>K</kbd> key. I need this to work in all applications. (I'm a person with a typing disability, and I need to adapt Ubuntu to my needs.) Thanks!</p>
null
1066942
2022-01-11T10:54:18.440
2022-01-11T10:54:18.440
Typing using key combinations?
[ "10.04", "keyboard-layout", "accessibility" ]
1
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>Since you want to remap the keys for all applications the best option is to use xmodmap. It is flexible and very powerful but involves typing in a few commands into a terminal.</p>\n\n<h2>Step 0 - The approach</h2>\n\n<p>The X-server manages the keyboard and all key events an...
null
null
null
null
Amanda Jones
5097
1
null
2010-10-03T01:12:51.750
7
730
<p>I want to use the new Ubuntu fonts that are default in Maverick in Lucid. Where to get it and how to install it?</p>
2362
866
2011-02-13T12:41:13.133
2012-08-01T07:38:40.407
How do I use the new "Ubuntu Font Family" in older releases?
[ "ubuntu-font-family" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2012-06-27T22:38:34.447", "id": "190529", "postId": "5097", "score": "0", "text": "Have you resolved this issue?", "userDisplayName": null, "userId": "48864" } ]
null
[ { "accepted": null, "body": "<p>Another source is <a href=\"http://font.ubuntu.com/\" rel=\"nofollow\">http://font.ubuntu.com/</a>. </p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-02-18T13:24:14.617", "id": "29685", "postId": "7853", "score":...
null
null
null
null
null
5104
1
5106
2010-10-03T04:35:44.897
13
384
<p>How could I make NotifyOSD send all updates to a text file (As well as do what it does)?</p>
2458
25798
2012-01-05T10:28:14.030
2012-01-05T10:28:14.030
How would I send all NotifyOSD message to a text file?
[ "notify-osd" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>All NotifyOSD messages are logged in <code>~/.cache/notify-osd.log</code>. But, they are cleared on every logout though.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2013-03-10T15:33:09.667", "id": "333418", "postId": "5106", "score": "1", "text": "I have no such file. Is this answer still current?", "userDisplayName": null, "userId": "12864" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-10-03T06:28:44.820", "id": "5106", "lastActivityDate": "2012-01-05T09:43:27.140", "lastEditDate": "2012-01-05T09:43:27.140", "lastEditorDisplayName": null, "lastEditorUserId": "25798", "ownerDisplayName": null, "ownerUserId": "305", "parentId": "5104", "postTypeId": "2", "score": "10" }
[ { "accepted": true, "body": "<p>All NotifyOSD messages are logged in <code>~/.cache/notify-osd.log</code>. But, they are cleared on every logout though.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2013-03-10T15:33:09.667", "id": "333418", "postId": "51...
null
null
null
null
null
5108
1
11422
2010-10-03T07:38:35.220
2
321
<p>My xsession when logged in with other user than myself doesnot show the default two panels. All I get is the desktop with wallpaper. Anyone got any idea what is wrong ? I am using xubuntu 10.04. It doesnot happen while I setup a user and login with his/her name but after some times of logins.</p>
1543
25863
2012-11-21T22:52:42.113
2012-11-21T22:52:42.113
No Panels for Other user in xubuntu
[ "login", "xubuntu", "users", "xfce-panel" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2010-10-10T03:26:27.647", "id": "5591", "postId": "5108", "score": "0", "text": "Can you check if there are any error messages in the `~/.xsession-errors` file?", "userDisplayName": null, "userId": "2742" } ]
{ "accepted": true, "body": "<p>Panels disappear often in Xfce. The developers are still trying to resolve the issue. This seems to be a particularly difficult issue for them. You can try installing the panels when they are missing. A good guide for doing that exists at <a href=\"https://help.ubuntu.com/community/XubuntuPanels\" rel=\"nofollow\">https://help.ubuntu.com/community/XubuntuPanels</a> . </p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-11-04T21:22:11.997", "id": "11422", "lastActivityDate": "2010-11-04T21:22:11.997", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "5373", "parentId": "5108", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>Panels disappear often in Xfce. The developers are still trying to resolve the issue. This seems to be a particularly difficult issue for them. You can try installing the panels when they are missing. A good guide for doing that exists at <a href=\"https://help.ubuntu.com/com...
null
null
null
null
null
5111
1
null
2010-10-03T08:36:28.853
1
1639
<p>In order to facilitiate some performance testing I am attempting to throttle the ip traffic on a particular machine - I want limit it to 1Mbit/sec.</p> <p>I have a separate test machine where this command works just fine:</p> <p>tc qdisc add dev eth0 root tbf rate 1mbit burst 5kb latency 70ms peakrate 1.001mbit minburst 1540</p> <p>On the real box where I want to apply this, I get weirdness. The exact same command limits traffic to 6Kbit/sec. Any ideas why?</p> <p>unanme -a shows</p> <p><code>Linux IPERF1 2.6.18-128.el5PAE #1 SMP Wed Dec 17 12:02:33 EST 2008 i686 i686 i386 GNU/Linux</code></p> <p>We have a three different ways of monitoring the throughput: The actual application we are testing which reports the throughput we see. We also some Tivoli monitoring on a switch and we have an HTTP client which downloads a file from an HTTP server on the box in question. All three methods show 6Kbs when the TBF is applied, and many Mbs when we remove the TBF.</p>
2622
2622
2010-10-03T16:04:08.040
2010-10-12T10:35:18.980
Network traffic throttling using tc/tbf - unexpected results
[ "networking" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Timer resolution might influence your results, see <a href=\"http://lartc.org/howto/lartc.qdisc.classless.html#AEN691\" rel=\"nofollow\" title=\"here\">here</a> for example. What happens if you increase burst to 10kb and remove peakrate and minburst?</p>\n", "commentCount...
null
null
null
null
null
5112
1
null
2010-10-03T08:50:36.603
51
52553
<p>Is there some easy to use program in Ubuntu that can scan many pages straight into a PDF file?</p>
2623
275
2010-10-03T10:11:17.197
2018-12-09T07:25:48.447
Scan many pages straight into a PDF
[ "pdf", "scanning" ]
6
2
CC BY-SA 2.5
[ { "creationDate": "2010-10-03T11:27:52.177", "id": "5195", "postId": "5112", "score": "0", "text": "Just wondering, are there any special qualifications needed for scanners/printers that I would like to use in Ubuntu?", "userDisplayName": null, "userId": "2626" }, { "creationDate...
null
[ { "accepted": null, "body": "<p>\"Easy to use\" is in the eye of the user, but <code>xsane</code> provides this functionality. Choose multipage where it says viewer (or hit CTRL-M), and it shouldn't be too difficult to figure out from there.</p>\n", "commentCount": "2", "comments": [ { ...
null
null
null
null
null
5116
1
5129
2010-10-03T11:04:09.540
3
3960
<p>When I boot grub doesnt show up (only ubuntu installed) I would like grub to be shown for a second or 2 (shift doesnt seem to bring it up). My main problem is that grub boots into what i assume to be recovery mode, I can login as myself and startx but that is obviously a right pain. Could someone please advise me on how to remedy this problem?</p> <p>Grub.cfg:</p> <pre><code># # DO NOT EDIT THIS FILE # # It is automatically generated by /usr/sbin/grub-mkconfig using templates # from /etc/grub.d and settings from /etc/default/grub # ### BEGIN /etc/grub.d/00_header ### if [ -s $prefix/grubenv ]; then load_env fi set default="1" if [ ${prev_saved_entry} ]; then set saved_entry=${prev_saved_entry} save_env saved_entry set prev_saved_entry= save_env prev_saved_entry set boot_once=true fi function savedefault { if [ -z ${boot_once} ]; then saved_entry=${chosen} save_env saved_entry fi } function recordfail { set recordfail=1 if [ -n ${have_grubenv} ]; then if [ -z ${boot_once} ]; then save_env recordfail; fi; fi } insmod ext2 set root='(hd0,6)' search --no-floppy --fs-uuid --set 1cd98d8a-97b3-4f25-9da2-e7128ef6dcba if loadfont /usr/share/grub/unicode.pf2 ; then set gfxmode=640x480 insmod gfxterm insmod vbe if terminal_output gfxterm ; then true ; else # For backward compatibility with versions of terminal.mod that don't # understand terminal_output terminal gfxterm fi fi insmod ext2 set root='(hd0,6)' search --no-floppy --fs-uuid --set 1cd98d8a-97b3-4f25-9da2-e7128ef6dcba set locale_dir=($root)/boot/grub/locale set lang=en insmod gettext if [ ${recordfail} = 1 ]; then set timeout=-1 else set timeout=10 fi ### END /etc/grub.d/00_header ### ### BEGIN /etc/grub.d/05_debian_theme ### set menu_color_normal=white/black set menu_color_highlight=black/light-gray ### END /etc/grub.d/05_debian_theme ### ### BEGIN /etc/grub.d/10_linux ### menuentry 'Ubuntu, with Linux 2.6.32-25-generic' --class ubuntu --class gnu-linux --class gnu --class os { recordfail insmod ext2 set root='(hd0,6)' search --no-floppy --fs-uuid --set 1cd98d8a-97b3-4f25-9da2-e7128ef6dcba linux /boot/vmlinuz-2.6.32-25-generic root=UUID=1cd98d8a-97b3-4f25-9da2-e7128ef6dcba ro quiet splash initrd /boot/initrd.img-2.6.32-25-generic } menuentry 'Ubuntu, with Linux 2.6.32-25-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os { recordfail insmod ext2 set root='(hd0,6)' search --no-floppy --fs-uuid --set 1cd98d8a-97b3-4f25-9da2-e7128ef6dcba echo 'Loading Linux 2.6.32-25-generic ...' linux /boot/vmlinuz-2.6.32-25-generic root=UUID=1cd98d8a-97b3-4f25-9da2-e7128ef6dcba ro single echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-2.6.32-25-generic } menuentry 'Ubuntu, with Linux 2.6.32-21-generic' --class ubuntu --class gnu-linux --class gnu --class os { recordfail insmod ext2 set root='(hd0,6)' search --no-floppy --fs-uuid --set 1cd98d8a-97b3-4f25-9da2-e7128ef6dcba linux /boot/vmlinuz-2.6.32-21-generic root=UUID=1cd98d8a-97b3-4f25-9da2-e7128ef6dcba ro quiet splash initrd /boot/initrd.img-2.6.32-21-generic } menuentry 'Ubuntu, with Linux 2.6.32-21-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os { recordfail insmod ext2 set root='(hd0,6)' search --no-floppy --fs-uuid --set 1cd98d8a-97b3-4f25-9da2-e7128ef6dcba echo 'Loading Linux 2.6.32-21-generic ...' linux /boot/vmlinuz-2.6.32-21-generic root=UUID=1cd98d8a-97b3-4f25-9da2-e7128ef6dcba ro single echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-2.6.32-21-generic } ### END /etc/grub.d/10_linux ### ### BEGIN /etc/grub.d/20_memtest86+ ### menuentry "Memory test (memtest86+)" { insmod ext2 set root='(hd0,6)' search --no-floppy --fs-uuid --set 1cd98d8a-97b3-4f25-9da2-e7128ef6dcba linux16 /boot/memtest86+.bin } menuentry "Memory test (memtest86+, serial console 115200)" { insmod ext2 set root='(hd0,6)' search --no-floppy --fs-uuid --set 1cd98d8a-97b3-4f25-9da2-e7128ef6dcba linux16 /boot/memtest86+.bin console=ttyS0,115200n8 } ### END /etc/grub.d/20_memtest86+ ### ### BEGIN /etc/grub.d/30_os-prober ### if [ ${timeout} != -1 ]; then if keystatus; then if keystatus --shift; then set timeout=-1 else set timeout=0 fi else if sleep --interruptible 3 ; then set timeout=0 fi fi fi ### END /etc/grub.d/30_os-prober ### ### BEGIN /etc/grub.d/40_custom ### # This file provides an easy way to add custom menu entries. Simply type the # menu entries you want to add after this comment. Be careful not to change # the 'exec tail' line above. ### END /etc/grub.d/40_custom ### </code></pre>
633
449
2014-04-23T08:43:11.727
2014-06-25T12:20:19.437
Grub boots into recovery mode
[ "grub2", "recovery-mode" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p><code>/boot/grub/grub.cfg</code> should not be edited directly. Instead, options like <code>GRUB_TIMEOUT</code> can be configured in <code>/etc/default/grub</code> Here's a sample of what that file looks like:</p>\n\n<pre><code># If you change this file, run 'update-grub' afterwards to update\n# /boot/grub/grub.cfg.\n\nGRUB_DEFAULT=0\n#GRUB_HIDDEN_TIMEOUT=0\nGRUB_HIDDEN_TIMEOUT_QUIET=true\nGRUB_TIMEOUT=10\nGRUB_DISTRIBUTOR=`lsb_release -i -s 2&gt; /dev/null || echo Debian`\nGRUB_CMDLINE_LINUX_DEFAULT=\"quiet splash\"\nGRUB_CMDLINE_LINUX=\"\"\n\n# Uncomment to disable graphical terminal (grub-pc only)\n#GRUB_TERMINAL=console\n\n# The resolution used on graphical terminal\n# note that you can use only modes which your graphic card supports via VBE\n# you can see them in real GRUB with the command `vbeinfo'\n#GRUB_GFXMODE=640x480\n\n# Uncomment if you don't want GRUB to pass \"root=UUID=xxx\" parameter to Linux\n#GRUB_DISABLE_LINUX_UUID=true\n\n# Uncomment to disable generation of recovery mode menu entries\n#GRUB_DISABLE_LINUX_RECOVERY=\"true\"\n\n# Uncomment to get a beep at grub start\n#GRUB_INIT_TUNE=\"480 440 1\"\n</code></pre>\n\n<p><code>GRUB_DEFAULT</code> sets the default menu entry. For instance, <code>GRUB_DEFAULT=0</code> highlights the 1st menu entry. 1 would be the second. Perhaps a recovery session is set as the default?</p>\n\n<p>On machines with only a single OS, like yours, <code>GRUB_HIDDEN_TIMEOUT=0</code> hides the menu. Make sure that this line is commented. If multiple OS's are present this setting is ignored. Also make sure the <code>GRUB_TIMEOUT</code> value is greater than 0. This is the number of seconds before the default entry is automatically booted.</p>\n\n<p>After any changes to <code>/etc/default/grub</code>make sure to run <code>sudo update-grub</code> to update your configuration. </p>\n\n<p>More details can be found here:</p>\n\n<p><a href=\"https://help.ubuntu.com/community/Grub2\">https://help.ubuntu.com/community/Grub2</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-03T16:56:01.630", "id": "5129", "lastActivityDate": "2010-10-03T16:56:01.630", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "570", "parentId": "5116", "postTypeId": "2", "score": "7" }
[ { "accepted": true, "body": "<p><code>/boot/grub/grub.cfg</code> should not be edited directly. Instead, options like <code>GRUB_TIMEOUT</code> can be configured in <code>/etc/default/grub</code> Here's a sample of what that file looks like:</p>\n\n<pre><code># If you change this file, run 'update-grub' aft...
null
null
null
null
null
5119
1
null
2010-10-03T13:32:51.050
6
617
<p>I want to create a wallpaper slide show that will not change five minutes after the wallpaper gets displayed, but five minutes after the <strong>entire</strong> desktop get viewed. Does anyone know of a way to do this?</p>
null
null
null
2010-11-09T10:44:35.967
Change wallpaper based on times desktop has been shown
[ "desktop-background" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2011-12-21T17:49:37.787", "id": "102321", "postId": "5119", "score": "0", "text": "This question appears to be abandoned - if you feel this is in error, then please ask a new question, or flag this explaining why and the moderators will reopen it.", "userDisplayName": null...
null
[ { "accepted": null, "body": "<p>What if you check with \"Xlib python library\" or \"wmctrl and xwininfo commands\" what windows are not minimized? (Filtering windows like gnome-panels, etc). Depending on values (all app windows are minimized = entire desktop get viewed) and selected time delay you can creat...
null
null
2011-12-21T18:15:33.103
null
user415
5121
1
5126
2010-10-03T14:37:34.237
485
66816
<p>I found a problem with an application on Ubuntu. </p> <p>Questions :</p> <ul> <li>How do I best report the issue? </li> <li>What sort of information should I provide? </li> </ul>
570
170070
2014-05-23T05:43:14.920
2021-10-31T19:20:36.547
How do I report a bug?
[ "bug-reporting" ]
7
1
CC BY-SA 3.0
[ { "creationDate": "2021-05-12T12:07:30.393", "id": "2283878", "postId": "5121", "score": "0", "text": "The link to file a bug: https://bugs.launchpad.net/ubuntu/+filebug/?no-redirect", "userDisplayName": null, "userId": "148011" } ]
{ "accepted": true, "body": "<p>The Ubuntu Wiki has <a href=\"https://help.ubuntu.com/community/ReportingBugs\" rel=\"noreferrer\">a very thorough guide</a> that is well illustrated and covers many possible scenarios.</p>\n\n<p>The essence of that page is that you first need a <a href=\"https://launchpad.net/+login\" rel=\"noreferrer\">Launchpad account</a>, then press <kbd>Alt</kbd>+<kbd>F2</kbd> and enter <code>ubuntu-bug packagename</code>. In 11.04 and later you can enter <code>ubuntu-bug -w</code> and click on the affected window. </p>\n\n<p>There are also methods described on that wiki page telling you how to:</p>\n\n<ul>\n<li>file bugs against running programs</li>\n<li>against no particular package (<a href=\"https://wiki.ubuntu.com/Bugs/FindRightPackage\" rel=\"noreferrer\">and how to decide which package</a>) </li>\n<li>and from computers with no internet access.</li>\n</ul>\n\n<p>There is a <a href=\"https://www.youtube.com/watch?v=18nsScrDIa0\" rel=\"noreferrer\">quick tutorial video</a> that explains better.</p>\n\n<p>And some more information on this site about how to gather information for a bug report:</p>\n\n<ul>\n<li><a href=\"https://askubuntu.com/questions/109779/ive-got-internal-error-whilst-running-a-ubuntu-beta-how-to-gather-information\">I&#39;ve got Internal Error whilst running a Ubuntu Beta. How to gather information and find out what it is?</a></li>\n</ul>\n", "commentCount": "3", "comments": [ { "creationDate": "2012-08-02T20:07:01.833", "id": "210968", "postId": "5126", "score": "3", "text": "Could more details including sample commands be added for users' convenience?", "userDisplayName": null, "userId": "54298" }, { "creationDate": "2019-01-18T14:17:14.053", "id": "1833378", "postId": "5126", "score": "0", "text": "what about when the bug is not visible ?\nthe only thing i have is a dmesg. My ubuntu 18.04 can't go to sleep. When i manually put it to sleep it turns back on and as i said , i only have a dmesg. how do we report that bug ?", "userDisplayName": null, "userId": "200825" }, { "creationDate": "2021-03-14T08:14:45.530", "id": "2255589", "postId": "5126", "score": "0", "text": "When the package is from `snap` can not use the launchpad, you need send a email to `snaps@canonical.com`. By example: `ubuntu-bug kubeadm`.", "userDisplayName": null, "userId": "296982" } ], "communityOwnedDate": "2013-08-14T11:41:09.897", "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-10-03T15:41:02.030", "id": "5126", "lastActivityDate": "2013-08-14T11:42:19.883", "lastEditDate": "2017-04-13T12:24:11.723", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "866", "parentId": "5121", "postTypeId": "2", "score": "321" }
[ { "accepted": null, "body": "<p>If you know the application in question (specifically the package name), I would recommend using the <code>ubuntu-bug</code> command from a terminal. <code>ubuntu-bug packagename</code> will gather some automated information and take you right to the launchpad report a bug p...
null
null
null
null
null
5130
1
null
2010-10-03T17:08:18.027
6
3280
<p>I've got an external terabyte drive to store my scrap (actually I mean a partition on it, I've got some other partitions there). The FS used is ext3. Even after I delete some files there (so there are at least some hundreds mibs free), Nautilus shows zero free space there and does not allow to even create a directory. How to fix this?</p> <p>I use Ubuntu 10.10 daily build, last updated ton the day before yesterday (Oct 03, 2010).</p>
2390
14356
2012-01-28T15:50:15.533
2019-10-05T14:39:54.447
Why can't Ubuntu see any free space?
[ "nautilus", "ext3" ]
5
3
CC BY-SA 3.0
[ { "creationDate": "2010-10-03T17:59:23.183", "id": "5215", "postId": "5130", "score": "2", "text": "I suppose you did empty trash if that was needed ?", "userDisplayName": null, "userId": "270" }, { "creationDate": "2010-10-03T20:15:37.960", "id": "5221", "postId": "5130"...
null
[ { "accepted": null, "body": "<p>ext2/3/4 filesystems have a certain percentage of blocks reserved for a\n\"privileged\" user; a filesystem might appear as \"almost full\" yet only\nroot can write to it. My guess is that you are hitting this limit.</p>\n\n<p>By default 5% of the total filesystem size is res...
null
null
null
null
null
5133
1
5135
2010-10-03T19:03:23.700
9
18474
<p>I just upgraded to the 10.10 RC earlier and had a few problems with graphic drivers (x didnt start) But i have remedied that now. When i run 'sudo apt-get install -f' i get this:</p> <pre><code>will@UbuntuBox:/mnt/slax$ sudo apt-get install -f [sudo] password for will: Reading package lists... Done Building dependency tree Reading state information... Done Correcting dependencies... Done The following extra packages will be installed: libmono-wcf3.0-cil openoffice.org-calc openoffice.org-core The following NEW packages will be installed: libmono-wcf3.0-cil The following packages will be upgraded: openoffice.org-calc openoffice.org-core 2 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. 16 not fully installed or removed. Need to get 0B/32.5MB of archives. After this operation, 1,929kB disk space will be freed. Do you want to continue [Y/n]? Y (Reading database ... 201565 files and directories currently installed.) Preparing to replace openoffice.org-calc 1:3.2.1-6ubuntu2~10.04.1 (using .../openoffice.org-calc_1%3a3.2.1-7ubuntu1_i386.deb) ... Unpacking replacement openoffice.org-calc ... xz: (stdin): Compressed data is corrupt dpkg-deb: subprocess &lt;decompress&gt; returned error exit status 1 dpkg: error processing /var/cache/apt/archives/openoffice.org-calc_1%3a3.2.1-7ubuntu1_i386.deb (--unpack): short read on buffer copy for backend dpkg-deb during `./usr/lib/openoffice/basis3.2/program/libscfiltli.so' dpkg: regarding .../openoffice.org-core_1%3a3.2.1-7ubuntu1_i386.deb containing openoffice.org-core: openoffice.org-core conflicts with openoffice.org-calc (&lt;&lt; 1:3.2.1-7ubuntu1) openoffice.org-calc (version 1:3.2.1-6ubuntu2~10.04.1) is present and installed. dpkg: error processing /var/cache/apt/archives/openoffice.org-core_1%3a3.2.1-7ubuntu1_i386.deb (--unpack): conflicting packages - not installing openoffice.org-core Unpacking libmono-wcf3.0-cil (from .../libmono-wcf3.0-cil_2.6.7-3ubuntu1_all.deb) ... dpkg-deb (subprocess): data: internal gzip read error: '&lt;fd:0&gt;: data error' dpkg-deb: subprocess &lt;decompress&gt; returned error exit status 2 dpkg: error processing /var/cache/apt/archives/libmono-wcf3.0-cil_2.6.7-3ubuntu1_all.deb (--unpack): subprocess dpkg-deb --fsys-tarfile returned error exit status 2 Errors were encountered while processing: /var/cache/apt/archives/openoffice.org-calc_1%3a3.2.1-7ubuntu1_i386.deb /var/cache/apt/archives/openoffice.org-core_1%3a3.2.1-7ubuntu1_i386.deb /var/cache/apt/archives/libmono-wcf3.0-cil_2.6.7-3ubuntu1_all.deb E: Sub-process /usr/bin/dpkg returned an error code (1) </code></pre> <p>Any idea how i can get the broken packages fixed? Cheers, Will</p>
633
166523
2019-12-25T08:04:34.367
2021-05-25T18:37:53.750
How to recover dpkg from corrupted downloads?
[ "apt", "package-management", "dpkg" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>This line is a clue:</p>\n\n<pre><code>xz: (stdin): Compressed data is corrupt\n</code></pre>\n\n<p>Perhaps something happened to the .deb during transfer. Execute a <code>sudo apt-get clean</code> and then try again to force it to redownload the debs.</p>\n\n<p>There are <a href=\"https://bugs.launchpad.net/ubuntu/+source/openoffice.org/+bug/652408\">similar reports</a> in Launchpad on these kind of errors for OpenOffice lately. This is likely a bug and <a href=\"https://help.ubuntu.com/community/ReportingBugs\">should be reported</a> as such.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2021-05-25T18:36:34.483", "id": "2289763", "postId": "5135", "score": "0", "text": "I was facing this issue when I upgraded to ubuntu 20", "userDisplayName": null, "userId": "1277197" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-03T19:24:15.123", "id": "5135", "lastActivityDate": "2010-10-03T19:32:28.953", "lastEditDate": "2010-10-03T19:32:28.953", "lastEditorDisplayName": null, "lastEditorUserId": "235", "ownerDisplayName": null, "ownerUserId": "235", "parentId": "5133", "postTypeId": "2", "score": "15" }
[ { "accepted": true, "body": "<p>This line is a clue:</p>\n\n<pre><code>xz: (stdin): Compressed data is corrupt\n</code></pre>\n\n<p>Perhaps something happened to the .deb during transfer. Execute a <code>sudo apt-get clean</code> and then try again to force it to redownload the debs.</p>\n\n<p>There are <a ...
null
null
null
null
null
5134
1
null
2010-10-03T19:10:30.343
5
1974
<p>I decided to try out the Ubuntu 10.10 RC on my workstation today. The install worked fine, but the mouse and keyboard (both of which is usb) are unbearably laggy. This was also the case when I ran it from the live cd.</p> <p>The strange part is that it works fine for the first few seconds when entering X. Then something happens in the background, and the mouse all of a sudden behaves like I'm playing some demanding 3d game on the highest setting. The keyboard is also laggy, and if I press more than a single key per second the key will be dropped, and only about every fifth character will actually appear on screen. Even stranger is that this lag also is present when a use ctrl+alt+f1 to switch to console mode.</p> <p>If I immediately switch to console mode when booting, it works fine. Then when I switch back to X, it takes a couple of seconds and then it happens again.</p> <p>I've checked the logs, and the most suspicious message is:</p> <pre><code>Oct 3 20:16:16 CHURCHILL kernel: [ 70.868940] irq 19: nobody cared (try booting with the "irqpoll" option) Oct 3 20:16:16 CHURCHILL kernel: [ 70.868946] Pid: 0, comm: swapper Not tainted 2.6.35-22-generic #33-Ubuntu Oct 3 20:16:16 CHURCHILL kernel: [ 70.868948] Call Trace: Oct 3 20:16:16 CHURCHILL kernel: [ 70.868950] &lt;IRQ&gt; [&lt;ffffffff810cba5b&gt;] __report_bad_irq+0x2b/0xa0 Oct 3 20:16:16 CHURCHILL kernel: [ 70.868961] [&lt;ffffffff810cbc5c&gt;] note_interrupt+0x18c/0x1d0 Oct 3 20:16:16 CHURCHILL kernel: [ 70.868967] [&lt;ffffffff81085d10&gt;] ? sched_clock_tick+0x60/0x90 Oct 3 20:16:16 CHURCHILL kernel: [ 70.868970] [&lt;ffffffff810cc45d&gt;] handle_fasteoi_irq+0xdd/0x110 Oct 3 20:16:16 CHURCHILL kernel: [ 70.868974] [&lt;ffffffff8100cb12&gt;] handle_irq+0x22/0x30 Oct 3 20:16:16 CHURCHILL kernel: [ 70.868978] [&lt;ffffffff81590b2c&gt;] do_IRQ+0x6c/0xf0 Oct 3 20:16:16 CHURCHILL kernel: [ 70.868981] [&lt;ffffffff81589713&gt;] ret_from_intr+0x0/0x11 Oct 3 20:16:16 CHURCHILL kernel: [ 70.868983] &lt;EOI&gt; [&lt;ffffffff810360fb&gt;] ? native_safe_halt+0xb/0x10 Oct 3 20:16:16 CHURCHILL kernel: [ 70.868990] [&lt;ffffffff81012ecd&gt;] default_idle+0x3d/0x90 Oct 3 20:16:16 CHURCHILL kernel: [ 70.868995] [&lt;ffffffff81008da3&gt;] cpu_idle+0xb3/0x110 Oct 3 20:16:16 CHURCHILL kernel: [ 70.868999] [&lt;ffffffff8156f6fa&gt;] rest_init+0x8a/0x90 Oct 3 20:16:16 CHURCHILL kernel: [ 70.869004] [&lt;ffffffff81aedc9d&gt;] start_kernel+0x387/0x390 Oct 3 20:16:16 CHURCHILL kernel: [ 70.869007] [&lt;ffffffff81aed341&gt;] x86_64_start_reservations+0x12c/0x130 Oct 3 20:16:16 CHURCHILL kernel: [ 70.869011] [&lt;ffffffff81aed43f&gt;] x86_64_start_kernel+0xfa/0x109 Oct 3 20:16:16 CHURCHILL kernel: [ 70.869013] handlers: Oct 3 20:16:16 CHURCHILL kernel: [ 70.869014] [&lt;ffffffff81404bb0&gt;] (usb_hcd_irq+0x0/0x90) Oct 3 20:16:16 CHURCHILL kernel: [ 70.869019] [&lt;ffffffff81404bb0&gt;] (usb_hcd_irq+0x0/0x90) Oct 3 20:16:16 CHURCHILL kernel: [ 70.869022] [&lt;ffffffff81404bb0&gt;] (usb_hcd_irq+0x0/0x90) Oct 3 20:16:16 CHURCHILL kernel: [ 70.869026] Disabling IRQ #19 </code></pre> <p>IRQ related issues, is from what I can tell, rather common. However, most of them seems to be related to shared interrupts, but on my computer IRQ 19 is used exclusively by the USB controller:</p> <pre><code>root@CHURCHILL:/home/emil# cat /proc/interrupts CPU0 0: 26 IO-APIC-edge timer 1: 2 IO-APIC-edge i8042 7: 1 IO-APIC-edge parport0 8: 0 IO-APIC-edge rtc0 9: 1 IO-APIC-fasteoi acpi, firewire_ohci 12: 4 IO-APIC-edge i8042 14: 0 IO-APIC-edge pata_atiixp 15: 1004 IO-APIC-edge pata_atiixp 17: 154 IO-APIC-fasteoi ATI IXP 18: 6164 IO-APIC-fasteoi radeon, hda_intel 19: 2000002 IO-APIC-fasteoi ehci_hcd:usb1, ohci_hcd:usb2, ohci_hcd:usb3 20: 9097 IO-APIC-fasteoi eth0, eth1 22: 13702 IO-APIC-fasteoi sata_sil NMI: 0 Non-maskable interrupts LOC: 105505 Local timer interrupts SPU: 0 Spurious interrupts PMI: 0 Performance monitoring interrupts PND: 0 Performance pending work RES: 0 Rescheduling interrupts CAL: 0 Function call interrupts TLB: 0 TLB shootdowns TRM: 0 Thermal event interrupts THR: 0 Threshold APIC interrupts MCE: 0 Machine check exceptions MCP: 4 Machine check polls ERR: 1 MIS: 0 </code></pre> <p>The on other person I've been able to found that had similar problems resorted to using irqpoll, as suggested by the kernel message. However, he reported that the inputs didn't work at all without that option, which makes me suggest that this might not really be IRQ related after all. Especially since it works fine for a while.</p> <p><code>lspci</code> lists the USB controller as <code>ATI Technologies Inc IXP SB400 USB Host Controller</code>.</p> <p>Any suggestions would be greatly appreciated.</p>
2633
235
2010-11-27T23:34:53.693
2013-08-27T20:22:48.587
USB Keyboard and Mouse both laggy
[ "10.10", "usb", "input-devices" ]
1
4
CC BY-SA 2.5
[ { "creationDate": "2010-10-04T17:05:37.990", "id": "5269", "postId": "5134", "score": "0", "text": "You are not alone. I noticed a similar behaviour over the weekend with my 10.10 virtual machine. But I don't have the necessary knowledge to add any technical observations like log files. So if so...
null
[ { "accepted": null, "body": "<p>Maybe its not kernel bug, but some user process hogs resources? For example, epic gnome-settings-daemon (https://bugs.launchpad.net/bugs/625793)? Start System Monitor, open All processes from menu and sort by CPU usage, you may find answer...</p>\n", "commentCount": "0", ...
null
null
null
null
null
5136
1
null
2010-10-03T20:10:23.420
24
4753
<p>After I've installed some language packs and spell checking dictionaries (I'd like to use with Firefox and OpenOffice) I've got tons of language variations installed. This makes very inconvenient to maintain dictionary additions, for example. Sometimes Firefox decides to switch to Australian, sometimes to UK dictionary, sometimes to US, etc.</p> <p>For me, a Russian, English is just English, and German is just German. I think every English-speaking will understand me, may I write "color" or "colour", "dialog", or "dialogue" (I usually prefer classic UK spelling though, as a matter of a habit (as I was taught at school)). How to remove all those dialects?</p>
2390
null
null
2019-12-13T06:43:24.840
How to remove all that country-specific dictionaries (like En_AU, En_CA, de_CH, etc)?
[ "dictionary", "internationalization", "spell-checking" ]
6
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p><strong>sudo apt-get install bleachbit</strong></p>\n\n<p>Then open bleachbit as a root, the first time it prompts you for the locales you want to left behind.. \nthen, mark the corresponding checkbox under \"system\".</p>\n\n<p>Click on \"preview\", then on \"delete\"</p>\n\...
null
null
null
null
null
5138
1
5142
2010-10-03T20:40:13.537
3
18179
<p>Following the <a href="https://askubuntu.com/users/2618/wolph">WoLpH</a>'s <a href="https://askubuntu.com/questions/5082/can-i-set-up-2-monitors-to-be-2-separate-gnome-virtual-desktops-instead-of-one-bi/5099#5099">recommendation</a> I am looking forward to enable Xinerama to <a href="https://askubuntu.com/q/5082/2390">set up 2 monitors to be 2 separate Gnome virtual desktops instead of one big</a>.</p> <p>But the thing I worry about is how to set it up correctly and not to harm Ubuntu's "Monitor Preferences" application, panel indicator applet or anything else.</p> <p>If you have had any experience with Xinerama, would you be so kind to share?</p> <p>I use Ubuntu 10.10 on my Toshiba L10 laptop with Intel 82852/855GM onboard card. And I switch (which, AFAIK, can be an inconvenience with Cinerama) monitor configurations (detach all monitors but a laptop's built-in panel, attach monitors with different resolutions) pretty often (sometimes many times a day).</p> <p>As Ubuntu was unable to detect my graphics, I was to <a href="https://askubuntu.com/questions/4662/where-is-x-org-config-file-in-ubuntu-10-10-how-to-configure-x-there/4663#4663">create Xorg.conf</a> already, which has solved most of my graphics problems.</p> <p>The last time I have had experience with writing Xorg.conf manually and setting up Xinerama was about 7 years ago, with Slackware and Matrox MGA G550 card. And I definitely <i>wouldn't like to edit Xorg.conf every time I need to switch my monitors configuration</i>.</p>
2390
-1
2017-04-12T07:23:19.023
2010-10-06T19:54:31.630
How do I best enable Xinerama?
[ "10.10", "xorg", "intel-graphics", "multiple-monitors", "xinerama" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-10-06T19:50:58.087", "id": "5378", "postId": "5138", "score": "0", "text": "It'd help to see your xorg.conf and Xorg.0.log...", "userDisplayName": null, "userId": "913" } ]
{ "accepted": true, "body": "<p>In the <code>ServerLayout</code> section in your <code>xorg.conf</code> you should add something like this:</p>\n\n<pre><code>Section \"ServerLayout\"\n Option \"Xinerama\" \"on\"\n Option \"Clone\" \"off\"\nEndSection\n</code></pre>\n\n<p>That should be enough to make sure xinerama works properly. If you don't have it already, you should add something like this aswell:</p>\n\n<pre><code>Section \"ServerLayout\"\n Screen 0 \"first-screen\"\n Screen 1 \"second-screen\" RightOf \"first-screen\"\nEndSection\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-03T22:29:24.807", "id": "5142", "lastActivityDate": "2010-10-03T22:29:24.807", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2618", "parentId": "5138", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>In the <code>ServerLayout</code> section in your <code>xorg.conf</code> you should add something like this:</p>\n\n<pre><code>Section \"ServerLayout\"\n Option \"Xinerama\" \"on\"\n Option \"Clone\" \"off\"\nEndSection\n</code></pre>\n\n<p>That should be enough to make ...
null
null
null
null
null
5140
1
5243
2010-10-03T21:06:31.470
13
4118
<p>Having NumLock on is convenient when using a full-sized external keyboard (having a keypad) and very inconvenient when using laptop's built-in keyboard (which places digits instead of letters on the keyboard's right sid unless Fn is pressed).</p> <p>So I have to turn NumLock on every time I attach an external keyboard (or boot with it attached) and off every time I detach an external keyboard (or boot with it detached). And I do this frequently because I prefer using a full-sized external keyboard, but have not enough (only 3) USB ports to plug-in it alongside with a mouse, a 3G modem and an external hard/flash drive.</p> <p>Can I automate this? Seems a very formaliseable, logically simple task: if there is an USB keyboard attached (some device in /dev present?) - NumLock is on, if not - NumLock is off. My laptop's built-in keyboard is PS/2-attached, external is USB.</p> <p>Maybe I should code it myself, but where to put it in this case?</p> <p>I use Ubuntu 10.10.</p>
2390
null
null
2014-01-04T15:30:15.077
How to set up Ubuntu to automatically turn NumLock on when an external keyboard is attached and off when it is not?
[ "gnome", "xorg", "automation", "numlock" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>First off, install numlockx (<a href=\"http://apt.ubuntu.com/p/numlockx\">click here to install numlockx</a>). Basically this allows you to write scripts to set the state of Num Lock - see the <a href=\"http://manpages.ubuntu.com/manpages/lucid/en/man1/numlockx.1.html\">numlockx man page</a> for details.</p>\n\n<p>Next we need to start delving into the fun of udev rules. First we need to find out how the keyboard is identified. You can do this by</p>\n\n<pre><code>ls /dev/input/by-id/\n</code></pre>\n\n<p>This should give you some human readable file names (that are soft links to the not particularly readable true name). My keyboard was</p>\n\n<pre><code>/dev/input/by-id/usb-KINESIS_FREESTYLE_KB700_KB700_Kinesis_Freestyle-event-kbd\n</code></pre>\n\n<p>So then we need to find out all the info about the keyboard. I did</p>\n\n<pre><code>udevadm info -a -p $(udevadm info -q path -n /dev/input/by-id/usb-KINESIS_FREESTYLE_KB700_KB700_Kinesis_Freestyle-event-kbd)\n</code></pre>\n\n<p>But insert your own path there of course. You'll get a lot of info, but you want to look at the first block that names the keyboard and has <code>SUBSYSTEMS==\"usb\"</code>. (Rather than the USB controller or whatever). In my case that was:</p>\n\n<pre><code> looking at parent device '/devices/pci0000:00/0000:00:1a.0/usb3/3-2/3-2.3':\n KERNELS==\"3-2.3\"\n SUBSYSTEMS==\"usb\"\n DRIVERS==\"usb\"\n ATTRS{configuration}==\"\"\n ATTRS{bNumInterfaces}==\" 2\"\n ATTRS{bConfigurationValue}==\"1\"\n ATTRS{bmAttributes}==\"a0\"\n ATTRS{bMaxPower}==\" 50mA\"\n ATTRS{urbnum}==\"6284\"\n ATTRS{idVendor}==\"058f\"\n ATTRS{idProduct}==\"9410\"\n ATTRS{bcdDevice}==\"0122\"\n ATTRS{bDeviceClass}==\"00\"\n ATTRS{bDeviceSubClass}==\"00\"\n ATTRS{bDeviceProtocol}==\"00\"\n ATTRS{bNumConfigurations}==\"1\"\n ATTRS{bMaxPacketSize0}==\"8\"\n ATTRS{speed}==\"1.5\"\n ATTRS{busnum}==\"3\"\n ATTRS{devnum}==\"3\"\n ATTRS{devpath}==\"2.3\"\n ATTRS{version}==\" 1.10\"\n ATTRS{maxchild}==\"0\"\n ATTRS{quirks}==\"0x0\"\n ATTRS{avoid_reset_quirk}==\"0\"\n ATTRS{authorized}==\"1\"\n ATTRS{manufacturer}==\"KINESIS FREESTYLE KB700\"\n ATTRS{product}==\"KB700 Kinesis Freestyle\"\n</code></pre>\n\n<p>So now we have enough information to write some rules. Use your favourite editor to create <code>/etc/udev/rules.d/10-local.rules</code> and put in:</p>\n\n<pre><code>BUS==\"usb\",ATTRS{product}==\"KB700 Kinesis Freestyle\",ACTION==\"add\",RUN+=\"/usr/bin/numlockx on\"\nBUS==\"usb\",ATTRS{product}==\"KB700 Kinesis Freestyle\",ACTION==\"remove\",RUN+=\"/usr/bin/numlockx off\"\n</code></pre>\n\n<p>Again, put the name of your keyboard in here, and the ATTRS if it is different. Then it should work :)</p>\n\n<p>Note I haven't been able to test this, though I have run all the commands up until creating the rules file. And the sources in case you need to do some more investigation are:</p>\n\n<ul>\n<li><a href=\"http://ubuntuforums.org/showthread.php?t=168221\">http://ubuntuforums.org/showthread.php?t=168221</a></li>\n<li><a href=\"http://reactivated.net/writing_udev_rules.html#external-run\">http://reactivated.net/writing_udev_rules.html#external-run</a></li>\n</ul>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-06T02:44:50.813", "id": "5330", "postId": "5243", "score": "0", "text": "Thanks a lot, excellent. To be honest, I didn't expect to get an answer any close to such informative. I'd wish I could award it more than just correct and +1. I hope all those who has starred and voted for my question will also award you.", "userDisplayName": null, "userId": "2390" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-05T23:13:10.983", "id": "5243", "lastActivityDate": "2010-10-06T22:27:43.277", "lastEditDate": "2010-10-06T22:27:43.277", "lastEditorDisplayName": null, "lastEditorUserId": "150", "ownerDisplayName": null, "ownerUserId": "150", "parentId": "5140", "postTypeId": "2", "score": "16" }
[ { "accepted": null, "body": "<p>I'm not sure what I'm doing differently, because my numlock on this keyboard is defaulting to on (This is a Mac Pro Aluminum keyboard). There are some <a href=\"https://help.ubuntu.com/community/NumLock\" rel=\"nofollow\">instructions here</a> that should do the trick.</p>\n\...
null
null
null
null
null
5141
1
7337
2010-10-03T21:37:14.887
4
945
<p>There are various system-wide debug tools (sysprof, oprofile, systemtap) that need debug symbols. Getting debug symbols for userspace applications is easy: <a href="https://wiki.ubuntu.com/DebuggingProgramCrash" rel="nofollow">https://wiki.ubuntu.com/DebuggingProgramCrash</a></p> <p>The ddebs repository also contains <code>linux-image-$(uname -r)-dbgsym</code> packages, but even if I install it, sysprof continues to show me unhelpful "in kernel" without detailed information. Where can I get debug symbols that sysprof can use?</p> <p>The systemtap package has a Suggests: linux-debug-2.6. Apt-cache search fails to find anything called linux-debug-2.6. Is it available somewhere? Or is this an unproductive dead-end?</p> <p>Incidentally, oprofile can use the debug symbols from the above-mentioned dbgsym package, but not out of the box -- it wants <code>/lib/modules/$(uname -r)/build/vmlinux</code>, and I have to tell it to use use <code>/usr/lib/debug/boot/vmlinux-$(uname -r)-generic</code>. But oprofile lacks a nice GUI, so I'd prefer sysprof.</p> <p>So, how can I convince sysprof to show me what's happening in the kernel?</p>
136
null
null
2010-10-15T00:04:28.857
Profiling stock Ubuntu kernel with sysprof: how?
[ "kernel", "debugging" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2010-10-03T23:23:26.043", "id": "5235", "postId": "5141", "score": "0", "text": "Can sysprof even do that? The website claims \"Detailed, accurate, profiling of the entire Linux system, including both the *kernel* and *all userspace application*\", but none of the example scr...
{ "accepted": true, "body": "<p>As far as I can tell, I was mistaken and sysprof doesn't actually provide any level of detail beyond \"in kernel\". Here's sysprof-1.0.12/process.c, lines 350 through 355:</p>\n\n<pre><code> if (address == 0x1)\n {\n kernel.name = \"in kernel\";\n kernel.address = 0x0001337;\n return &amp;kernel;\n }\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-15T00:04:28.857", "id": "7337", "lastActivityDate": "2010-10-15T00:04:28.857", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "136", "parentId": "5141", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p>As far as I can tell, I was mistaken and sysprof doesn't actually provide any level of detail beyond \"in kernel\". Here's sysprof-1.0.12/process.c, lines 350 through 355:</p>\n\n<pre><code> if (address == 0x1)\n {\n kernel.name = \"in kernel\";\n kernel....
null
null
null
null
null
5145
1
null
2010-10-04T01:29:58.453
1
1813
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/906/ubuntu-and-vlc-make-default-and-hue">ubuntu and vlc &mdash; make default and hue</a> </p> </blockquote> <p>When I capture HD video with a Pentax DSLR, and view it using VLC, it looks wrong - the green grass is purple, and the golden retriever is blue.</p> <p>This happens with VLC, Totem, etc. There's nothing wrong with the files themselves - the exact same files play fine on the mac or the PC.</p> <p>Is there a way to fix this? </p>
1272
-1
2017-04-12T07:23:19.023
2010-10-04T08:00:05.957
Why do my AVI files display with funky colors?
[ "video" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>This seems to be related to <a href=\"https://askubuntu.com/q/906/270\">this</a> question. Since you are using vlc, did you try the steps mentioned in this <a href=\"https://askubuntu.com/questions/906/ubuntu-and-vlc-make-default-and-hue/913#913\">answer</a> ?</p>\n", "co...
null
null
2010-10-04T13:39:31.390
null
null
5148
1
null
2010-10-04T03:05:20.073
1
883
<p>Why does trash show some files even when there is nothing inside the trash?</p>
null
25798
2012-08-17T09:15:59.257
2017-05-23T02:31:08.690
Why does trash show some files even when there is nothing in it?
[ "trash" ]
3
4
CC BY-SA 3.0
[ { "creationDate": "2010-10-04T04:16:35.450", "id": "5236", "postId": "5148", "score": "0", "text": "Maybe it would help to provide some more information.", "userDisplayName": null, "userId": "4" }, { "creationDate": "2010-10-04T05:05:16.990", "id": "5237", "postId": "5148...
null
[ { "accepted": null, "body": "<p>Try checking as root:</p>\n\n<pre><code>gksudo nautilus\n</code></pre>\n\n<p>What is in the Trash folder.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-04T11:02:00.013", ...
null
null
null
null
Karthick Bala
5149
1
null
2010-10-04T04:17:45.643
25
49571
<p>Some times I have to deal with XPS files (XPS is a Microsoft's rival to Adobe's PDF format, technically a zipped XAML (XML)). </p> <p>Can I view them in Ubuntu? Or, maybe, I could even produce them?</p>
2390
106495
2013-07-09T06:57:19.257
2015-03-21T21:42:14.520
How to view an XPS file?
[ "xps-file" ]
4
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>Okular, the KDE pdf viewer, supports XPS. The package name is <code>okular</code> I'm not aware of any GNOME/GTK+ viewers that support XPS, though according to this <a href=\"https://bugzilla.gnome.org/show_bug.cgi?id=321868\">evince bug in upstream GNOME</a> support has been...
null
null
null
null
null
5151
1
null
2010-10-04T04:46:26.437
8
8612
<p>I think it'd be nice if Nautilus windows could have semi-transparent backgrounds (same as Gnome terminal can) for files and places lists. Is it possible?</p>
2390
null
null
2013-01-15T19:17:34.030
Can I set up Nautilus to use transparent background?
[ "nautilus", "transparency" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>You can use Compiz settings manager (you need to install \"compizconfig-settings-manager\" package, and then run the \"CompizConfig manager\" from the \"System->Preferences\" menu).</p>\n\n<p>Under the \"Accessibility\" item, you have \"opacity, luminosity\" option. There you...
null
null
null
null
null
5153
1
20243
2010-10-04T05:54:33.553
3
739
<p>I'm currently using the 10.10 beta of Ubuntu with the most recent updates installed. When I boot up the computer, gwibber fails to start up and when I do open it, it shows an icon in the notification area (which I do not want) and it doesn't use the indicator applet at all (even when closed).<br></p> <p><img src="https://i.stack.imgur.com/SBWFV.png" alt="notification bar"> <img src="https://i.stack.imgur.com/sfJMD.png" alt="menu"></p>
2458
8844
2011-10-28T05:43:31.943
2011-10-28T05:43:31.943
Gwibber is not using Indicator Applet or loading on start up
[ "10.10", "applet", "indicator", "notification", "gwibber" ]
4
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>I had a similar problem with Gwibber. </p>\n\n<p>I solved it editing the file <code>/etc/xdg/autostart/gwibber.desktop</code> (in a terminal, put: <code>sudo gedit /etc/xdg/autostart/gwibber.desktop</code> without the quotation marks) and changing the value of \"X-GNOME-Autostart-Delay\" from 30 to 5.</p>\n\n<p>Hope this helps.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-06T00:15:46.070", "id": "20243", "lastActivityDate": "2011-01-06T00:44:09.503", "lastEditDate": "2011-01-06T00:44:09.503", "lastEditorDisplayName": null, "lastEditorUserId": "235", "ownerDisplayName": null, "ownerUserId": "529", "parentId": "5153", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>If you want it to start on startup make sure its on the list and checked in the services/startup items settings. If it isn't there add gwibber after login make sure gwibber-service is running(its what does the indicator applet I think).</p>\n", "commentCount": "0", ...
null
null
null
null
null
5155
1
5513
2010-10-04T07:15:01.483
2
729
<p>When i update apt-get the universe repo takes ages to download, I usually max out at around 130kbps which can easily download ~4mb in under a minute yet it skips between going an bytes per second and under 30kpbs (and i'm not running anything that leaches my bandwidth when i update). Updating on lucid was fine and took under 10 seconds why does it now take about 10 minutes...</p> <pre><code>will@UbuntuBox:~$ sudo apt-get update Hit http://archive.canonical.com maverick Release.gpg Ign http://archive.canonical.com/ maverick/partner Translation-en Get:1 http://ppa.launchpad.net maverick Release.gpg [316B] Ign http://ppa.launchpad.net/ubuntu-x-swat/x-updates/ubuntu/ maverick/main Translation-en Ign http://ppa.launchpad.net/ubuntu-x-swat/x-updates/ubuntu/ maverick/main Translation-en_US Get:2 http://im.archive.ubuntu.com maverick Release.gpg [198B] Ign http://im.archive.ubuntu.com/ubuntu/ maverick/main Translation-en Hit http://security.ubuntu.com maverick-security Release.gpg Ign http://security.ubuntu.com/ubuntu/ maverick-security/main Translation-en Hit http://extras.ubuntu.com maverick Release.gpg Ign http://extras.ubuntu.com/ubuntu/ maverick/main Translation-en Ign http://archive.canonical.com/ maverick/partner Translation-en_US Hit http://archive.canonical.com maverick Release Get:3 http://ppa.launchpad.net maverick Release [57.3kB] Ign http://extras.ubuntu.com/ubuntu/ maverick/main Translation-en_US Hit http://extras.ubuntu.com maverick Release Ign http://im.archive.ubuntu.com/ubuntu/ maverick/main Translation-en_US Ign http://im.archive.ubuntu.com/ubuntu/ maverick/multiverse Translation-en Ign http://im.archive.ubuntu.com/ubuntu/ maverick/multiverse Translation-en_US Hit http://archive.canonical.com maverick/partner i386 Packages Hit http://extras.ubuntu.com maverick/main i386 Packages Ign http://im.archive.ubuntu.com/ubuntu/ maverick/restricted Translation-en Ign http://im.archive.ubuntu.com/ubuntu/ maverick/restricted Translation-en_US Ign http://im.archive.ubuntu.com/ubuntu/ maverick/universe Translation-en Ign http://im.archive.ubuntu.com/ubuntu/ maverick/universe Translation-en_US Hit http://im.archive.ubuntu.com maverick-updates Release.gpg Ign http://im.archive.ubuntu.com/ubuntu/ maverick-updates/main Translation-en Ign http://im.archive.ubuntu.com/ubuntu/ maverick-updates/main Translation-en_US Ign http://im.archive.ubuntu.com/ubuntu/ maverick-updates/multiverse Translation-en Ign http://im.archive.ubuntu.com/ubuntu/ maverick-updates/multiverse Translation-en_US Ign http://im.archive.ubuntu.com/ubuntu/ maverick-updates/restricted Translation-en Ign http://im.archive.ubuntu.com/ubuntu/ maverick-updates/restricted Translation-en_US Ign http://im.archive.ubuntu.com/ubuntu/ maverick-updates/universe Translation-en Ign http://security.ubuntu.com/ubuntu/ maverick-security/main Translation-en_US Ign http://security.ubuntu.com/ubuntu/ maverick-security/multiverse Translation-en Ign http://security.ubuntu.com/ubuntu/ maverick-security/multiverse Translation-en_US Ign http://im.archive.ubuntu.com/ubuntu/ maverick-updates/universe Translation-en_US Hit http://im.archive.ubuntu.com maverick-proposed Release.gpg Ign http://im.archive.ubuntu.com/ubuntu/ maverick-proposed/main Translation-en Ign http://im.archive.ubuntu.com/ubuntu/ maverick-proposed/main Translation-en_US Ign http://im.archive.ubuntu.com/ubuntu/ maverick-proposed/multiverse Translation-en Ign http://im.archive.ubuntu.com/ubuntu/ maverick-proposed/multiverse Translation-en_US Ign http://im.archive.ubuntu.com/ubuntu/ maverick-proposed/restricted Translation-en Ign http://security.ubuntu.com/ubuntu/ maverick-security/restricted Translation-en Ign http://security.ubuntu.com/ubuntu/ maverick-security/restricted Translation-en_US Ign http://security.ubuntu.com/ubuntu/ maverick-security/universe Translation-en Ign http://security.ubuntu.com/ubuntu/ maverick-security/universe Translation-en_US Hit http://security.ubuntu.com maverick-security Release Ign http://im.archive.ubuntu.com/ubuntu/ maverick-proposed/restricted Translation-en_US Ign http://im.archive.ubuntu.com/ubuntu/ maverick-proposed/universe Translation-en Ign http://im.archive.ubuntu.com/ubuntu/ maverick-proposed/universe Translation-en_US Get:4 http://im.archive.ubuntu.com maverick Release [57.3kB] Hit http://security.ubuntu.com maverick-security/main Sources Hit http://security.ubuntu.com maverick-security/restricted Sources Hit http://security.ubuntu.com maverick-security/universe Sources Hit http://security.ubuntu.com maverick-security/main i386 Packages Hit http://security.ubuntu.com maverick-security/restricted i386 Packages Hit http://security.ubuntu.com maverick-security/multiverse i386 Packages Hit http://security.ubuntu.com maverick-security/universe i386 Packages Get:5 http://ppa.launchpad.net maverick/main Sources [3,051B] Get:6 http://ppa.launchpad.net maverick/main i386 Packages [6,396B] Hit http://im.archive.ubuntu.com maverick-updates Release Hit http://im.archive.ubuntu.com maverick-proposed Release Get:7 http://im.archive.ubuntu.com maverick/main Sources [829kB] Get:8 http://im.archive.ubuntu.com maverick/restricted Sources [4,361B] Get:9 http://im.archive.ubuntu.com maverick/universe Sources [4,186kB] Get:10 http://im.archive.ubuntu.com maverick/main i386 Packages [1,491kB] Get:11 http://im.archive.ubuntu.com maverick/restricted i386 Packages [6,000B] Get:12 http://im.archive.ubuntu.com maverick/multiverse i386 Packages [183kB] Get:13 http://im.archive.ubuntu.com maverick/universe i386 Packages [5,786kB] Hit http://im.archive.ubuntu.com maverick-updates/main Sources Hit http://im.archive.ubuntu.com maverick-updates/restricted Sources Hit http://im.archive.ubuntu.com maverick-updates/universe Sources Hit http://im.archive.ubuntu.com maverick-updates/main i386 Packages Hit http://im.archive.ubuntu.com maverick-updates/restricted i386 Packages Hit http://im.archive.ubuntu.com maverick-updates/multiverse i386 Packages Hit http://im.archive.ubuntu.com maverick-updates/universe i386 Packages Hit http://im.archive.ubuntu.com maverick-proposed/restricted i386 Packages Hit http://im.archive.ubuntu.com maverick-proposed/main i386 Packages Hit http://im.archive.ubuntu.com maverick-proposed/universe i386 Packages Hit http://im.archive.ubuntu.com maverick-proposed/multiverse i386 Packages Fetched 12.6MB in 7min 54s (26.6kB/s) Reading package lists... Done </code></pre> <p>If anyone can help i would be massively appreciative of that Will</p>
633
235
2010-10-04T13:29:24.463
2010-10-10T07:38:36.690
Why are apt-get updates in development releases slower?
[ "10.10", "apt", "updates" ]
2
3
CC BY-SA 2.5
[ { "creationDate": "2010-10-04T10:13:44.647", "id": "5246", "postId": "5155", "score": "1", "text": "Your kB/s is extremely low, personally I do not see that, I get full speed transfers (400kB/s = my broadband limit). Can you check other downloads or streaming and provide information about your ...
{ "accepted": true, "body": "<p>I believe the reason for this is slightly more than what Extender has already said. If you look in the output from your terminal you get several entries along the lines of:</p>\n\n<pre><code>Hit http://country.archive.ubuntu.com maverick/universe Sources\n</code></pre>\n\n<p>During the development period, every package update in the 'universe' section (there are also 'restricted', 'multiverse' and 'main' sections) requires a change to this file. However after release these file is no longer updated, and instead you will see updates coming from:</p>\n\n<pre><code>Hit http://country.archive.ubuntu.com maverick-updates/universe Sources\n</code></pre>\n\n<p>Because only a reasonably small percentage of packages are updated after release this file is significantly smaller than the file issued at released and used during the development period.</p>\n\n<p>Now Ubuntu (Maverick) 10.10 has been released then updates should be far faster.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-11T06:55:21.297", "id": "5881", "postId": "5513", "score": "0", "text": "Yes i noticed after upgrading i could update faster. Thanks for the comprehensive answer!", "userDisplayName": null, "userId": "633" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-10T07:38:36.690", "id": "5513", "lastActivityDate": "2010-10-10T07:38:36.690", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "866", "parentId": "5155", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>This happens because of Packages.gz in each folder are huge and frequently changed now. After release, it will be same as Lucid. Also, try finding fastest server for you (in mirror selection dialog).</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate...
null
null
null
null
null
5157
1
null
2010-10-04T08:12:36.303
3
585
<p>I installed "indicator-applet-appmenu" and tried the same for "global menu". It does not work for the most of applications and does not seem convenient with my monitors configuration. </p> <p>The problem is, that now (despite I have no "appmenu applet" active), some applications, for example <strong>UEx</strong> (UltraEdit for Linux) don't show their menus in their windows, so I need to activate global menu applet to use them. </p> <p>How can I fix this? I am afraid (because I am on a 3G connection with limited traffic) that if I just remove indicator-applet-appmenu package, the problem won't solve and I will loose the last way to access menus in those programs.</p>
2390
47151
2012-03-08T14:16:12.100
2012-03-08T14:16:12.100
How do I correctly disable a mac-style application menu in classic desktop edition?
[ "10.10", "menu", "appmenu", "ayatana" ]
1
1
CC BY-SA 3.0
[ { "creationDate": "2010-10-04T08:33:32.353", "id": "5245", "postId": "5157", "score": "0", "text": "I think the answer is in your question. If removing the package loses menus from both menu bar and global menu, you can always have it back by re-installing it (Press `Alt+F2` and type `sudo aptit...
null
[ { "accepted": null, "body": "<p>This appears to be a bug. Ultraedit probably needs to be tested, you can help contribute by checking out how to debug the menu here: </p>\n\n<p><a href=\"http://wiki.ubuntu.com/DesktopExperienceTeam/ApplicationMenu\" rel=\"nofollow\">http://wiki.ubuntu.com/DesktopExperienceTe...
null
null
null
null
null
5161
1
5165
2010-10-04T08:40:50.837
2
4631
<p>How to disable windows' contents being moved on dragging, so that only the frame is dragged and the whole window is only redrawn on drop?</p> <p>In Windows, KDE and XFCE this can be easily configured, but in Gnome (Ubuntu 10.10) I couldn't find where to set this up :-(</p>
2390
527764
2017-06-17T07:35:42.353
2017-06-17T07:37:15.703
How to disable windows' contents being moved on dragging, so that only the frame is dragged and the whole window is only redrawn on drop?
[ "gnome", "metacity" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>First, disable desktop effects to get metacity instead of compiz. Then open gconf-editor, find <code>/apps/metacity/general</code>, and enable <code>reduced_resources</code>. Here's a description of that option:</p>\n\n<blockquote>\n <p>If true, metacity will give the user less feedback by using wireframes, avoiding animations, or other means. This is a significant reduction in usability for many users, but may allow legacy applications to continue working, and may also be a useful tradeoff for terminal servers. However, the wireframe feature is disabled when accessibility is on. </p>\n</blockquote>\n\n<p>As far as I know there's no option to enable it through the GUI, gconf is the only way.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-10-04T10:59:22.567", "id": "5165", "lastActivityDate": "2017-06-17T07:37:15.703", "lastEditDate": "2017-06-17T07:37:15.703", "lastEditorDisplayName": null, "lastEditorUserId": "527764", "ownerDisplayName": null, "ownerUserId": "136", "parentId": "5161", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>First, disable desktop effects to get metacity instead of compiz. Then open gconf-editor, find <code>/apps/metacity/general</code>, and enable <code>reduced_resources</code>. Here's a description of that option:</p>\n\n<blockquote>\n <p>If true, metacity will give the user...
null
null
null
null
null
5169
1
null
2010-10-04T12:33:03.127
1
1732
<p>I am using XUbuntu 10.04, and I am having issues with the sound. First things just sounded strange, then I figured out that I am actually getting the surround left and surround right sound in my headset. If I change the balance in aumix to either far left or far right, things sound better. I still get sound in both headphones, but only the left or right channel.</p> <p>If I do <a href="https://docs.ubuntu.com/core/en/stacks/audio/alsa-utils/docs/reference/available-utilities" rel="nofollow noreferrer"><code>speaker-test -c6</code></a> (man page), it becomes clear that I am missing the center channel.</p> <p>In <code>/etc/pulse/daemon.conf</code> I have set default-sample-channels = 2</p> <p>Is there a way for pulseaudio to downmix from surround to stereo for the ouptut?</p>
2640
349837
2020-05-22T02:22:34.737
2020-05-22T02:22:34.737
Pulseaudio playing surround through headset
[ "sound", "pulseaudio" ]
1
1
CC BY-SA 4.0
[ { "creationDate": "2020-05-22T02:32:03.277", "id": "2093569", "postId": "5169", "score": "0", "text": "[This](https://unix.stackexchange.com/q/111428/209677) Unix SE answer might be useful", "userDisplayName": null, "userId": "349837" } ]
null
[ { "accepted": null, "body": "<p>In System -> Preferences -> Sound</p>\n\n<ul>\n<li>Select Hardware</li>\n<li>Select your device</li>\n<li>Choose the profile you want (like Analog stereo output)</li>\n<li>Select output</li>\n<li>Check your device</li>\n</ul>\n", "commentCount": "1", "comments": [ ...
null
null
null
null
null
5170
1
null
2010-10-04T13:25:40.240
2
2191
<p>I'd like to build an (optimized) Version of Chromium for my machine with apt-build on Ubuntu 10.04. I've added a Chromium-PPA to my /etc/sources.list.d/ like this:</p> <pre><code>deb http://ppa.launchpad.net/chromium-daily/stable/ubuntu lucid main deb-src http://ppa.launchpad.net/chromium-daily/stable/ubuntulucid main </code></pre> <p>But if I run</p> <pre><code>sudo apt-build install chromium browser </code></pre> <p>It tells me</p> <blockquote> <p>chromium-browser will not be built because it doesn't have a source package. Missing source package name for source_by_source().</p> </blockquote> <p>On the other hand sudo apt-get source chromium-browser</p> <p>seems to work fine, even downloads the 6.x from the PPA</p> <p>What am I doing wrong? Building ffmpeg and firefox via apt-build worked like a breeze. Except that my preferred chromium is from a PPA I don't see a difference.</p>
null
41
2010-10-15T15:47:58.783
2012-10-17T07:57:34.180
apt-build & Chromium PPA
[ "ppa", "apt", "chromium", "build" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-10-04T16:22:26.227", "id": "5266", "postId": "5170", "score": "0", "text": "Is your deb-src line above just a typo? \".../ubuntulucid main\" should be \".../ubuntu lucid main\"", "userDisplayName": null, "userId": "570" } ]
null
[ { "accepted": null, "body": "<p>Try this </p>\n\n<p><code>sudo add-apt-repository ppa:chromium-daily/stable &amp;&amp; sudo apt-get update &amp;&amp; sudo apt-get install chromium-browser</code></p>\n\n<p>As for your sources.list.d file give a space besides ubuntu and lucid like this \"/ubuntu lucid main\" ...
null
null
null
null
bobbydroptables
5172
1
5174
2010-10-04T13:58:47.907
241
350187
<p>From what I can gather, <code>.desktop</code> files are shortcuts that allow application's settings to be customized. For instance, I have lots of them in my <code>/usr/share/applications/</code> folder. </p> <p>If I open that folder in <code>nautilus</code>, I can run these applications just by double clicking its associated file, e.g. double-clicking <code>firefox.desktop</code> runs Firefox. However, I can't find a way to do the same thing via terminal. </p> <p>If I do <code>gnome-open foo.desktop</code> it simply opens <code>foo.desktop</code> as a text file. If I make it executable and then run it in bash it simply fails (which is expected, it's clearly not bash script).<br> EDIT: Doing <code>exec /fullpath/foo.desktop</code> gives me a <code>Permission denied</code> message, even if I change ownership to myself. If I make executable and do the same command, the terminal tab I'm using simply closes (I'm guessing it crashes). Finally, if I do <code>sudo exec /fullpath/foo.desktop</code>, I get an error reporting <code>sudo: exec: command not found</code>.</p> <p>That's my question, how can I run a <code>foo.desktop</code> file from the terminal?</p>
1012
432559
2015-09-11T13:51:00.687
2024-02-29T17:50:31.190
Running a .desktop file in the terminal
[ "command-line", "shortcuts", ".desktop" ]
20
5
CC BY-SA 3.0
[ { "creationDate": "2010-10-04T21:11:12.533", "id": "5275", "postId": "5172", "score": "6", "text": "NB: The reason your `exec` failed is because exec replaces your currently running process with the process you specify, so what you did was try to replace your shell with running the desktop as a ...
{ "accepted": true, "body": "\n<h2>Modern Answer</h2>\n<p><code>gtk-launch &lt;app-name&gt;</code> - where <code>&lt;app-name&gt;</code> is the file name of the <code>.desktop</code> file, with or without the <code>.desktop</code> extension.</p>\n<p>See <a href=\"https://askubuntu.com/a/385169/150\">another answer on this thread</a> for more details. <em>I got this info from that answer.</em></p>\n<h2>Deprecated shell tools answer</h2>\n<p><em>Written a long time ago - see the comments below this answer as to why this approach won't work for many desktop files.</em></p>\n<p>The command that is run is contained inside the desktop file, preceded by <code>Exec=</code> so you could extract and run that by:</p>\n<pre class=\"lang-bash prettyprint-override\"><code>$(grep '^Exec' filename.desktop | tail -1 | sed 's/^Exec=//' | sed 's/%.//' \\\n| sed 's/^&quot;//g' | sed 's/&quot; *$//g') &amp;\n</code></pre>\n<p>To break that down</p>\n<pre class=\"lang-bash prettyprint-override\"><code>grep '^Exec' filename.desktop # - finds the line which starts with Exec\n| tail -1 # - only use the last line, in case there are \n # multiple\n| sed 's/^Exec=//' # - removes the Exec from the start of the line\n| sed 's/%.//' # - removes any arguments - %u, %f etc\n| sed 's/^&quot;//g' | sed 's/&quot; *$//g' # - removes &quot; around command (if present)\n$(...) # - means run the result of the command run \n # here\n&amp; # - at the end means run it in the background\n</code></pre>\n<p>You could put this in a file, say <code>~/bin/deskopen</code> with the contents</p>\n<pre class=\"lang-bash prettyprint-override\"><code>#!/bin/sh\n$(grep '^Exec' $1 | tail -1 | sed 's/^Exec=//' | sed 's/%.//' \\\n| sed 's/^&quot;//g' | sed 's/&quot; *$//g') &amp;\n</code></pre>\n<p>Then make it executable</p>\n<pre class=\"lang-bash prettyprint-override\"><code>chmod +x ~/bin/deskopen\n</code></pre>\n<p>And then you could do, e.g.</p>\n<pre class=\"lang-bash prettyprint-override\"><code>deskopen /usr/share/applications/ubuntu-about.desktop\n</code></pre>\n<p>The arguments (<code>%u</code>, <code>%F</code> etc) are detailed <a href=\"http://standards.freedesktop.org/desktop-entry-spec/desktop-entry-spec-1.0.html#exec-variables\" rel=\"noreferrer\">here</a>. None of them are relevant for launching at the command line.</p>\n", "commentCount": "14", "comments": [ { "creationDate": "2010-10-04T15:18:06.463", "id": "5255", "postId": "5174", "score": "0", "text": "This gives the best result so far, but it produces undesirable behavior sometimes. It happens whenever the \"Exec=\" line has an argument like %u or %i. Bash tries to pass that string as a regular argument. For instance, doing `grep '^Exec' firefox.desktop | sed 's/^Exec=//'` opens Firefox with a tab that loads *www.%u.com*.", "userDisplayName": null, "userId": "1012" }, { "creationDate": "2010-10-04T15:20:14.073", "id": "5256", "postId": "5174", "score": "0", "text": "For the moment I've added a second `sed` to remove any arguments. But I think there might be a more \"natural\" way to run it.", "userDisplayName": null, "userId": "1012" }, { "creationDate": "2010-10-04T17:10:19.640", "id": "5270", "postId": "5174", "score": "0", "text": "I've updated my answer with the extra sed - I forgot the desktop files could have arguments.", "userDisplayName": null, "userId": "150" }, { "creationDate": "2012-04-28T06:20:10.450", "id": "151511", "postId": "5174", "score": "0", "text": "You should add a \"tail -1\" to the pipe after \"grep\" , since \"Exec=\" can be appear multiple time , and after that , only the last appearance should be executed ..", "userDisplayName": null, "userId": "25430" }, { "creationDate": "2012-05-02T08:36:09.343", "id": "154861", "postId": "5174", "score": "0", "text": "@warl0ck: thanks for that - I've updated the answer with your suggestion.", "userDisplayName": null, "userId": "150" }, { "creationDate": "2013-05-23T00:36:34.960", "id": "375890", "postId": "5174", "score": "15", "text": "-1: This may work for simple `.desktop` files, but it ignores entries like `Path=` and `TryExec=` which may affect execution. It also executes the wrong `Exec=` if the file contains Desktop Actions (\"quicklists\")", "userDisplayName": null, "userId": "11015" }, { "creationDate": "2013-05-28T20:26:30.127", "id": "378947", "postId": "5174", "score": "0", "text": "It doesn't show the icon of the application. Is this an expected behaviour or I should have something wrong in some file?", "userDisplayName": null, "userId": "62483" }, { "creationDate": "2013-06-21T11:08:45.143", "id": "392357", "postId": "5174", "score": "0", "text": "This didn't worked for me. It seems any paths are double quoted. The script by Carlo worked.", "userDisplayName": null, "userId": "6878" }, { "creationDate": "2017-02-21T04:51:50.283", "id": "1382512", "postId": "5174", "score": "0", "text": "This gave me problems with vlc.desktop, it had an option in the form of `--started-from-file`. I added another pipe to strip that: `sed 's/-.*//g'`... I barely know how to use sed, so I don't know if this is without problems.", "userDisplayName": null, "userId": "655715" }, { "creationDate": "2018-05-18T15:11:50.180", "id": "1689501", "postId": "5174", "score": "0", "text": "hackish hack is hacky - need solution that causes the desktop to run it", "userDisplayName": null, "userId": "289062" }, { "creationDate": "2019-09-07T13:00:31.323", "id": "1955503", "postId": "5174", "score": "0", "text": "This answer fails when the exec string ended in a double quote mark. It removed the last one but left the first one. For example: `Exec=su-to-root -c \"/usr/local/bin/ddm-mx -i nvidia\"` resulted in: `su-to-root -c \"/usr/local/bin/ddm-mx -i nvidia`.", "userDisplayName": null, "userId": "992724" }, { "creationDate": "2020-08-22T17:13:23.360", "id": "2149076", "postId": "5174", "score": "0", "text": "@BobC yep, just change the two last seds to:\n`sed 's/^\"\\(.*\\)\"$/\\1/g'`", "userDisplayName": null, "userId": "998221" }, { "creationDate": "2021-03-13T03:51:33.620", "id": "2255122", "postId": "5174", "score": "0", "text": "I like your \"Deprecated shell tools answer\", which, albeit imperfect for all cases, works for most desktop files. So, I've upvoted your answer and [put that script into my own summary answer too](https://askubuntu.com/a/1114798/327339).", "userDisplayName": null, "userId": "327339" }, { "creationDate": "2021-09-11T05:30:38.303", "id": "2338110", "postId": "5174", "score": "0", "text": "For those who found that answer by googling and wanted to start desktop file, for `gtk-launch` the file has to be located in certain folders, see https://unix.stackexchange.com/questions/393079/gtk-launch-only-works-when-present-working-directory-is-desktop", "userDisplayName": null, "userId": "796396" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2010-10-04T14:52:31.950", "id": "5174", "lastActivityDate": "2021-03-13T03:49:13.777", "lastEditDate": "2021-03-13T03:49:13.777", "lastEditorDisplayName": null, "lastEditorUserId": "327339", "ownerDisplayName": null, "ownerUserId": "150", "parentId": "5172", "postTypeId": "2", "score": "87" }
[ { "accepted": true, "body": "\n<h2>Modern Answer</h2>\n<p><code>gtk-launch &lt;app-name&gt;</code> - where <code>&lt;app-name&gt;</code> is the file name of the <code>.desktop</code> file, with or without the <code>.desktop</code> extension.</p>\n<p>See <a href=\"https://askubuntu.com/a/385169/150\">another...
null
null
null
null
null
5178
1
5179
2010-10-04T15:35:50.490
2
1752
<p>I've got the following error while attempting to upgrade from 8.04 to v 10.04. Is there anything I can do to resolve the issue?</p> <blockquote> <p>Upgrading Ubuntu to version 10.04 LTS<br/> Could not install the upgrades Error during commit <br>'E:Couldn't configure pre-depend jre for openoffice.org-writer2latex, probably a dependency cycle.' <br/>Restoring original system state</p> </blockquote>
2609
null
null
2011-11-30T14:12:06.003
Dependency cycle upgrading to 10.04 LTS
[ "10.04", "upgrade" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2010-10-04T15:43:41.823", "id": "5258", "postId": "5178", "score": "2", "text": "Try installing a JRE (e.g., `apt-get install openjdk-6-jre`), possibly the one from the 10.04 repo, _before_ trying the full upgrade. Does it work?", "userDisplayName": null, "userId": "32...
{ "accepted": true, "body": "<p>Try</p>\n\n<pre><code>apt-get remove openoffice.org-writer2latex\napt-get dist-upgrade\napt-get install openoffice.org-writer2latex\n</code></pre>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-10-04T16:40:32.913", "id": "5268", "postId": "5179", "score": "0", "text": "thanks, I've uninstalled openoffice.org and the upgrade is now in progress", "userDisplayName": null, "userId": "2609" }, { "creationDate": "2010-10-10T14:49:55.030", "id": "5675", "postId": "5179", "score": "0", "text": "@Mark any update?", "userDisplayName": null, "userId": "1938" }, { "creationDate": "2010-10-11T10:35:38.927", "id": "5905", "postId": "5179", "score": "0", "text": "yes, the update worked after uninstalling open-office.", "userDisplayName": null, "userId": "2609" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-04T16:16:20.683", "id": "5179", "lastActivityDate": "2010-10-04T16:16:20.683", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1078", "parentId": "5178", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>Try</p>\n\n<pre><code>apt-get remove openoffice.org-writer2latex\napt-get dist-upgrade\napt-get install openoffice.org-writer2latex\n</code></pre>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-10-04T16:40:32.913", "id": "5268", ...
null
null
null
null
null
5181
1
null
2010-10-04T16:53:03.223
5
3561
<p>When I close the lid of my Asus X77JQ, lucid shuts it down automatically after five minutes. I want to be able to sleep in the same room as my laptop, so I would like to be able to close the lid without it shutting down. How can I do this?</p> <p>The power options lid close option is set to do nothing.</p>
null
41
2011-04-26T17:28:41.373
2016-07-12T00:53:37.053
Laptop shuts down on lid close
[ "10.04", "power-management", "shutdown" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Actions to take when closing the laptop lid are configured with command <a href=\"http://projects.gnome.org/gnome-power-manager/gpp.html\" rel=\"nofollow\">gnome-power-preferences</a> (menu: System -> Preferences -> Power management)</p>\n\n<p>You will need to set two options...
null
null
null
null
Lennart
5186
1
null
2010-10-04T19:26:46.330
1
573
<p>I have a machine running Karmic which is embedded in a large screen. When I run <code>xrandr -q</code>, it reports that the VGA output is connected, even when there is no screen attached. This is causing some issues with other resolution-related software (that I can't change at the moment).</p> <p>Is there a way to disable the VGA output so that it doesn't show up at all, or is there some fix I can backport so that it no longer reports incorrectly? Some info on the system is below. As far as I can tell it happens only on this hardware.</p> <h2>xrandr</h2> <pre><code>Screen 0: minimum 320 x 200, current 1360 x 864, maximum 4096 x 4096 VGA connected 1360x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm 1360x768 59.8* 1152x864 60.0 1024x768 60.0 800x600 60.3 640x480 59.9 LVDS connected 1152x864+0+0 (normal left inverted right x axis y axis) 0mm x 0mm 1920x1080 60.0 + 1680x1050 84.9 74.9 69.9 60.0 1600x1024 60.2 1400x1050 85.0 74.8 70.0 60.0 1280x1024 85.0 75.0 60.0 1440x900 59.9 1280x960 85.0 60.0 1360x768 59.8 1152x864 100.0 85.1 85.0 75.0 75.0 70.0 60.0* 1024x768 85.0 75.0 70.1 60.0 832x624 74.6 800x600 85.1 72.2 75.0 60.3 56.2 640x480 85.0 72.8 75.0 59.9 720x400 85.0 640x400 85.1 640x350 85.1 TV disconnected (normal left inverted right x axis y axis) </code></pre> <h2>lspci</h2> <pre><code>00:02.0 VGA compatible controller: Intel Corporation Mobile GME965/GLE960 Integrated Graphics Controller (rev 03) Subsystem: Micro-Star International Co., Ltd. Device 8030 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+ Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast &gt;TAbort- &lt;TAbort- &lt;MAbort- &gt;SERR- &lt;PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 27 Region 0: Memory at fe900000 (64-bit, non-prefetchable) [size=1M] Region 2: Memory at d0000000 (64-bit, prefetchable) [size=256M] Region 4: I/O ports at c000 [size=8] Capabilities: [90] Message Signalled Interrupts: Mask- 64bit- Queue=0/0 Enable+ Address: fee0100c Data: 4191 Capabilities: [d0] Power Management version 3 Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-) Status: D0 PME-Enable- DSel=0 DScale=0 PME- Bridge: PM- B3+ Kernel modules: i915 00:02.1 Display controller: Intel Corporation Mobile GME965/GLE960 Integrated Graphics Controller (rev 03) Subsystem: Micro-Star International Co., Ltd. Device 8030 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast &gt;TAbort- &lt;TAbort- &lt;MAbort- &gt;SERR- &lt;PERR- INTx- Latency: 0 Region 0: Memory at fe800000 (64-bit, non-prefetchable) [size=1M] Capabilities: [d0] Power Management version 3 Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-) Status: D0 PME-Enable- DSel=0 DScale=0 PME- Bridge: PM- B3+ </code></pre>
1019
null
null
2010-10-11T13:56:11.117
xrandr reports external VGA output connected even with no cable attached
[ "xorg", "9.10" ]
1
3
CC BY-SA 2.5
[ { "creationDate": "2010-10-11T18:20:27.563", "id": "6021", "postId": "5186", "score": "0", "text": "Please file a bug about this. `ubuntu-bug -s display`", "userDisplayName": null, "userId": "1158" }, { "creationDate": "2010-10-11T21:38:27.780", "id": "6090", "postId": "...
null
[ { "accepted": null, "body": "<p>After adding </p>\n\n<pre><code>Option \"monitor-VGA\" \"VGA\" \n</code></pre>\n\n<p>to the \"Device\" section of your xorg.conf, add the following \"Monitor\" section:</p>\n\n<pre><code>Section \"Monitor\" \n Identifier \"VGA\" \n Option \"Ignore\" \"True\" \nE...
null
null
null
null
null
5187
1
6140
2010-10-04T19:55:49.923
9
31348
<p>I have encountered a very weird error on ubuntu-server (8.04), I have no idea why dhclient is not allowed to set the network settings! I'm not the one who installed the server in the first place, so i don't know much about the setup. The server is only used as a firewall/gateway (custom iptables script) it's got three nic's one for internet, one for LAN and one for DMZ. Now the ISP have changed settings from static ip to "static" ip assigned through dhcp, and i cant really use it.</p> <p>Sadly I can't just set the IP statically since the ISP closes my connection when the dhcp lease ends :o</p> <p>This is the error i get: (and then it just hangs there..)</p> <pre><code>root@fw:~# dhclient eth2 Internet Systems Consortium DHCP Client V3.0.6 Copyright 2004-2007 Internet Systems Consortium. All rights reserved. For info, please visit http://www.isc.org/sw/dhcp/ SIOCSIFADDR: Permission denied SIOCSIFFLAGS: Permission denied SIOCSIFFLAGS: Permission denied Listening on LPF/eth2/00:50:52:c1:a1:32 Sending on LPF/eth2/00:50:52:c1:a1:32 Sending on Socket/fallback DHCPDISCOVER on eth2 to 255.255.255.255 port 67 interval 8 DHCPOFFER of 2.10.56.19 from 93.87.36.42 DHCPREQUEST of 2.10.56.19 on eth2 to 255.255.255.255 port 67 DHCPACK of 2.10.56.19 from 93.87.36.42 SIOCSIFADDR: Permission denied SIOCSIFFLAGS: Permission denied SIOCSIFNETMASK: Permission denied SIOCSIFBRDADDR: Permission denied SIOCSIFFLAGS: Permission denied SIOCADDRT: Operation not permitted </code></pre> <p>for now i've fixed it by running <code>killall dhclient; dhclient eth2</code> every hour and then setting static IP settings for the interface, this is enough to keep the connection live! but it's a pretty ugly hack in my opinion..</p>
455
4
2010-10-08T16:34:14.407
2011-05-26T20:35:45.177
Why is dhclient saying: "SIOCSIFADDR: Permission denied"?
[ "server", "networking", "8.04", "dhclient", "dhcp" ]
5
12
CC BY-SA 2.5
[ { "creationDate": "2010-10-05T04:02:39.950", "id": "5284", "postId": "5187", "score": "1", "text": "`strace -o /tmp/dhc$$ dhclient -d eth2` should yield valuable information about what calls are failing. Yes, I know all of them, but seeing the arguments may help. I'd suspect some oddment with th...
{ "accepted": true, "body": "<p>Based on the stack trace at <a href=\"http://silenzio.dk/pi/dhc.strace\">http://silenzio.dk/pi/dhc.strace</a> the first\n<code>SIOCSIFADDR: Permission denied</code> error occurs at line 735, during\nexecution of process 26092: <code>ifconfig eth2 inet 0 up</code>. Now only\n<code>root</code> can <code>ifconfig</code> something up, so let's trace the chain of\n<code>fork()</code>/<code>exec()</code> and look for UID changes. It turns out that:</p>\n\n<ol>\n<li>process 26092 is a child of 26090 (line 689)</li>\n<li>process 26090 runs with UID 101 and GID 102 (lines 355--358)</li>\n<li>process 26090 tries to set its UID/GID back to 0, but fails (line 310)</li>\n<li>process 26090 is a child of 26089 (line 286)</li>\n<li>process 26089 switched its UID:GID to 101:102 (lines 282--283)</li>\n</ol>\n\n<p>So, the errors occur because the executing child process does not have\nthe necessary root privileges. Why does this happen? The\n<code>debian/changelog</code> file in the <code>dhcp3-3.0.6.dfsg</code> sources says:</p>\n\n<pre><code>dhcp3 (3.0.1-2ubuntu4) breezy; urgency=low\n\n Derooted the DHCP client:\n * Added debian/patches/deroot-client.patch:\n - client/dhclient.c: After initialization, dro privileges to dhcp:dhcp and\n only keep CAP_NET_RAW and CAP_NET_BIND_SERVICE.\n - Add a setuid wrapper call-dhclient-script to call\n /etc/dhcp3/dhclient-script as root.\n - Install call-dhclient-script into /lib/dhcp3-client/.\n</code></pre>\n\n<p>My guess is that <code>call-dhclient-script</code> has lost its set-UID bit, and\nis thus not executing with root privileges as it should. (According to \nthe <code>debian/dhcp3-client.postinst</code> file in the sources, it should\nbe owned by <code>root:dhcp</code> and mode <code>4754</code>)</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-12T07:01:17.990", "id": "6273", "postId": "6140", "score": "0", "text": "Such complicated error and such a simple solution! `chmod u+s /lib/dhcp3-client/call-dhclient-script` did the trick!", "userDisplayName": null, "userId": "455" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T21:10:33.250", "id": "6140", "lastActivityDate": "2010-10-11T21:10:33.250", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "325", "parentId": "5187", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>I would try installing nscd if that package is missing, and if it does not work with this, install also libnss-db. </p>\n\n<p>Not sure if that will solve your problem, however, those are the things that your trace is trying to find and it fails.</p>\n", "commentCount": "1...
null
null
null
null
null
5190
1
5191
2010-10-04T21:04:55.800
3
1533
<p>For some obscure reason, my <code>/var/lib/locales/supported.d/local</code> file contained an extra locale that typically should not be there (in my example, <code>pl_PL.UTF-8 UTF-8</code>).</p> <p>I ran <code>sudo dpkg-reconfigure locales</code>, and the system reported:</p> <pre><code>Generating locales... el_GR.UTF-8... up-to-date en_DK.UTF-8... up-to-date en_US.UTF-8... up-to-date Generation complete. </code></pre> <p>that is, it verified that the rest of the locales are up-to-date; however, there was no mention of the <code>pl_PL.UTF-8</code> locale. I don't know if it erased files related to the locale.</p> <p>How can I make sure that there are no files left in the system for the pl_PL.UTF-8 locale?</p>
1629
null
null
2010-10-04T21:33:41.857
Remove locale from the system
[ "server", "9.10", "locale", "internationalization" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Have you tried <code>localepurge</code>? (<code>aptitude show localepurge</code>)</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-10-04T22:02:42.770", "id": "5276", "postId": "5191", "score": "0", "text": "This probably did the job. I'll select your answer as *the* answer after the next successful reboot :)", "userDisplayName": null, "userId": "1629" }, { "creationDate": "2010-10-05T03:20:55.483", "id": "5282", "postId": "5191", "score": "0", "text": "Try bleechbit, it can free much more than localepurge.", "userDisplayName": null, "userId": "2026" }, { "creationDate": "2010-10-06T12:59:01.400", "id": "5356", "postId": "5191", "score": "0", "text": "@Extender: AFAIR bleechbit is a tool to free space from *user* data.", "userDisplayName": null, "userId": "1629" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-04T21:33:41.857", "id": "5191", "lastActivityDate": "2010-10-04T21:33:41.857", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "325", "parentId": "5190", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>Have you tried <code>localepurge</code>? (<code>aptitude show localepurge</code>)</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-10-04T22:02:42.770", "id": "5276", "postId": "5191", "score": "0", "text"...
null
null
null
null
null
5192
1
5193
2010-10-04T21:56:51.410
23
1403
<p>Whenever I am downloading packages using Ubuntu Software Center (or any package manager for that matter), my Internet connection slows to an absolute crawl. In fact, most requests timeout.</p> <p>Is there a way to limit the bandwidth that Software Center uses when downloading packages?</p>
5
158442
2017-02-08T07:00:05.760
2017-02-08T07:00:05.760
Is there a way to limit the bandwidth that Software Center uses?
[ "apt", "software-center", "bandwidth", "resource-limiting" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>If the software centre uses <code>apt-get</code> (and I'm not actually sure that it does, so you will need to try this yourself), you should be able to do the following:</p>\n\n<p>Create the file <code>/etc/apt/apt.conf.d/76download</code> with the following content:</p>\n\n<pre><code>Acquire\n{\n Queue-mode \"access\";\n http\n {\n Dl-Limit \"150\";\n };\n};\n</code></pre>\n\n<p>That limits <code>apt-get</code> to <strong>150KB/s</strong>. I haven't tried it myself, so I can't verify that it will work for you.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2010-10-04T22:38:38.327", "id": "5277", "postId": "5193", "score": "0", "text": "I'm just as happy if 'apt-get' can be bandwidth-limited..", "userDisplayName": null, "userId": "5" }, { "creationDate": "2010-10-05T15:58:16.873", "id": "5305", "postId": "5193", "score": "1", "text": "Can I ask if this did work for the Software Centre?", "userDisplayName": null, "userId": "866" }, { "creationDate": "2010-10-05T17:02:39.140", "id": "5307", "postId": "5193", "score": "0", "text": "@flute: I'm afraid I only tried it for apt :)", "userDisplayName": null, "userId": "5" }, { "creationDate": "2016-11-26T21:03:16.263", "id": "1313655", "postId": "5193", "score": "1", "text": "software centre uses apt internally....", "userDisplayName": null, "userId": "235185" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-10-04T22:27:53.117", "id": "5193", "lastActivityDate": "2014-09-13T16:55:20.143", "lastEditDate": "2014-09-13T16:55:20.143", "lastEditorDisplayName": null, "lastEditorUserId": "283843", "ownerDisplayName": null, "ownerUserId": "1217", "parentId": "5192", "postTypeId": "2", "score": "22" }
[ { "accepted": true, "body": "<p>If the software centre uses <code>apt-get</code> (and I'm not actually sure that it does, so you will need to try this yourself), you should be able to do the following:</p>\n\n<p>Create the file <code>/etc/apt/apt.conf.d/76download</code> with the following content:</p>\n\n<...
null
null
2022-04-26T12:05:10.667
null
null
5196
1
null
2010-10-05T00:07:47.117
1
266
<p>Could someone tell me how to replace system default localization font? I mean when it time to render my language I want to use specific font instead of the one Ubuntu choice for me.</p> <p>thz</p>
2140
235
2010-10-05T22:24:08.003
2011-03-21T04:00:32.043
Replace default local font
[ "fonts", "internationalization" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>From the main GNOME menu go to, System > Preferences > Appearance, and look under the Fonts tab. Or is that not what you mean?</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-10-05T10:31:02.973", "id": "5291", "postId":...
null
null
null
null
null
5198
1
5202
2010-10-05T00:54:50.163
9
13136
<p>I recently purchased one of the Kodak Playsport cameras which takes 720p video @ 60 frames per second.</p> <p>The video quality is great but the files are rather large for uploading to Youtube (about 150 Megs per minute of video). The files are output as Quicktime MOV files.</p> <p>My question is:</p> <p>Is there a command-line tool that allows me to shrink the video down to a lower resolution/size for quicker uploading? I'm thinking something like ImageMagick's convert but for video.</p>
2240
250300
2019-10-16T07:44:08.530
2019-10-16T07:44:08.530
What is the best way to shrink HD Quicktime MOV files
[ "command-line", "software-recommendation", "video", "transcode" ]
2
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<p>There are a number video transcoders that you could use to covert mov files to different formats suitable for uploading. <a href=\"http://handbrake.fr/\" rel=\"nofollow noreferrer\">Handbrake</a> is a popular one that has both a GUI and command-line version (<code>handbrake-gtk</code> or <code>handbrake-cli</code>). To use Handbreak on Ubuntu, you need to add a PPA:</p>\n\n<p><a href=\"https://edge.launchpad.net/~handbrake-ubuntu/+archive/ppa\" rel=\"nofollow noreferrer\">https://edge.launchpad.net/~handbrake-ubuntu/+archive/ppa</a> or the more current <a href=\"https://launchpad.net/~stebbins/+archive/ubuntu/handbrake-releases\" rel=\"nofollow noreferrer\">https://launchpad.net/~stebbins/+archive/ubuntu/handbrake-releases</a></p>\n\n<p>I personally like, <a href=\"http://www.linuxrising.org/\" rel=\"nofollow noreferrer\">transmageddon</a> which is a GUI app with nice simple pre-sets. It's available in the archives.</p>\n\n<p><img src=\"https://i.stack.imgur.com/i6WNF.png\" alt=\"transmageddon\"></p>\n\n<p>Another option is <a href=\"http://www.transcoder.org/\" rel=\"nofollow noreferrer\">arista</a>, another GUI transcoder available in the archives. In fact, it is a \"Featured Application\" in Ubuntu Software Center.</p>\n\n<p><code>ffmpeg</code> is another command line option that offers a lot of flexibility but can be a bit complex. </p>\n", "commentCount": "4", "comments": [ { "creationDate": "2010-10-05T12:48:58.633", "id": "5292", "postId": "5202", "score": "0", "text": "Good answer. I totally forgot about ffmpeg although both of the gui based apps look good too.", "userDisplayName": null, "userId": "2240" }, { "creationDate": "2010-10-05T15:17:52.447", "id": "5300", "postId": "5202", "score": "0", "text": "WinFF is a front end to ffmpeg and it converts anything to anything.", "userDisplayName": null, "userId": "458" }, { "creationDate": "2014-10-19T15:51:08.327", "id": "737364", "postId": "5202", "score": "0", "text": "This answer is still helpful! Transmageddon is a wonderful tool!", "userDisplayName": null, "userId": "136848" }, { "creationDate": "2019-10-16T09:45:08.493", "id": "1973421", "postId": "5202", "score": "0", "text": "Unfortunately in their stupidity Youtube has began erroring out when given theora stream. So, while it is a correct answer, it may be not useful for Youtube uploader.", "userDisplayName": null, "userId": "216568" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-10-05T02:53:49.447", "id": "5202", "lastActivityDate": "2015-12-27T08:24:07.987", "lastEditDate": "2015-12-27T08:24:07.987", "lastEditorDisplayName": null, "lastEditorUserId": "115738", "ownerDisplayName": null, "ownerUserId": "570", "parentId": "5198", "postTypeId": "2", "score": "11" }
[ { "accepted": true, "body": "<p>There are a number video transcoders that you could use to covert mov files to different formats suitable for uploading. <a href=\"http://handbrake.fr/\" rel=\"nofollow noreferrer\">Handbrake</a> is a popular one that has both a GUI and command-line version (<code>handbrake-g...
null
null
null
null
null
5200
1
5201
2010-10-05T02:11:13.600
6
578
<p>I'd like to make a command run every time I log out. Is there a way to do this?</p>
1859
null
null
2011-11-26T19:00:02.860
How can I automatically run a command when I log out?
[ "automation", "session" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>If you are speaking of logging out of a bash login shell, there's a solution with <code>~/.bash_logout</code> — Run <code>man bash</code> in the terminal for more details.</p>\n\n<p>If you are speaking of logging out of the X-window system, there are far too many ways to get yourself \"logged out\" for there to be any way to guarantee the command will run.</p>\n\n<p>However, since you are the one doing the logging out, if you change your logout habit, this might work...</p>\n\n<p>If you are running gnome, you might want to write a short script - maybe called \"logo\" - put it in <code>~/bin</code> (and ensure <code>~/bin</code> is in your PATH).</p>\n\n<p>The \"logo\" script would do two things: </p>\n\n<ol>\n<li>Run whatever command you want to run when you logout.</li>\n<li>Run <code>gnome-session-save</code> with your choice of arguments.</li>\n</ol>\n\n<p>Run <code>man gnome-session-save</code> in the terminal for more details on the arguments.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-10-05T02:33:29.887", "id": "5201", "lastActivityDate": "2011-11-26T19:00:02.860", "lastEditDate": "2011-11-26T19:00:02.860", "lastEditorDisplayName": null, "lastEditorUserId": "25798", "ownerDisplayName": null, "ownerUserId": "2652", "parentId": "5200", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>If you are speaking of logging out of a bash login shell, there's a solution with <code>~/.bash_logout</code> — Run <code>man bash</code> in the terminal for more details.</p>\n\n<p>If you are speaking of logging out of the X-window system, there are far too many ways to get ...
null
null
null
null
null
5203
1
5210
2010-10-05T02:55:32.440
18
8719
<p>What are the consequences of deleting any of these?</p> <p><img src="https://i.stack.imgur.com/1LaIj.png" alt="screenshot"></p> <p>e.g.:</p> <ul> <li>How will applications that expect them to be present behave?</li> <li>Where will the items on my desktop go?</li> </ul>
1859
18612
2011-11-17T02:45:35.997
2011-11-17T02:45:35.997
What happens if I delete the default folders in my home folder?
[ "home-directory", "default", "directory" ]
3
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Those folders are \"well known\" user folders defined by Freedesktop (check here: <a href=\"http://freedesktop.org/wiki/Software/xdg-user-dirs\">http://freedesktop.org/wiki/Software/xdg-user-dirs</a>).</p>\n\n<p>In Ubuntu 10.04 you can edit the file ~/.config/user-dirs.dirs to change the location of those folders. When you've change the file you need to restart nautilus (run 'nautilus -q' in a terminal or log out an in again).</p>\n\n<p>/N</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-10-05T14:09:46.263", "id": "5298", "postId": "5210", "score": "1", "text": "You can also install Ubuntu Tweak (http://ubuntu-tweak.com) and edit the location of the folders from there", "userDisplayName": null, "userId": "2233" }, { "creationDate": "2010-10-17T18:24:24.650", "id": "7832", "postId": "5210", "score": "0", "text": "Log out and back in to make these changes take effect in other applications such as Rhythmbox.", "userDisplayName": null, "userId": "1859" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-05T07:32:46.333", "id": "5210", "lastActivityDate": "2010-10-05T07:32:46.333", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2233", "parentId": "5203", "postTypeId": "2", "score": "12" }
[ { "accepted": true, "body": "<p>Those folders are \"well known\" user folders defined by Freedesktop (check here: <a href=\"http://freedesktop.org/wiki/Software/xdg-user-dirs\">http://freedesktop.org/wiki/Software/xdg-user-dirs</a>).</p>\n\n<p>In Ubuntu 10.04 you can edit the file ~/.config/user-dirs.dirs t...
null
null
null
null
null
5209
1
5211
2010-10-05T05:48:14.927
7
10834
<p>How do I change to icons in here?</p> <p><img src="https://i.stack.imgur.com/LVdiN.png" alt="alt text"></p>
2458
453
2010-10-05T08:52:43.747
2012-07-03T15:15:05.497
How do I change the folder icons in the "Places" menu?
[ "gnome", "menu", "icons", "appearance", "folder" ]
2
3
CC BY-SA 2.5
[ { "creationDate": "2010-10-05T15:31:54.317", "id": "5301", "postId": "5209", "score": "1", "text": "You seem to have ample hard-drive space!", "userDisplayName": null, "userId": "41" }, { "creationDate": "2010-10-05T16:03:02.107", "id": "5306", "postId": "5209", "scor...
{ "accepted": true, "body": "<p>If you want to add emblems (like the document, picture frames) on top of the default folder icon, see <a href=\"https://askubuntu.com/questions/5203/what-happens-if-i-delete-the-default-folders-in-my-home-folder/5204#5204\">this post</a></p>\n<p>If you want to change the underlying icon itself, then there are 2 options</p>\n<h3>Option #1 - Change the icon theme</h3>\n<ol>\n<li>you can change the icon theme by opening Appearance Properties (<code>System -&gt; Preferences -&gt; Appearance</code>)</li>\n<li>In the <code>Theme</code> tab click on &quot;Customize...&quot;</li>\n<li>In the <code>Customize Theme</code> dialog, select the &quot;Icons&quot; tab and choose the preferred theme.</li>\n</ol>\n<h3>Option #2 - Customize icon for a specific folder</h3>\n<ol>\n<li>Go to places menu and open the folder you want to customize</li>\n<li>Press <code>Alt + Up </code> or click <code>Go -&gt; Open Parent</code> to display the parent directory.</li>\n<li>Right click on the directory and select &quot;Properties...&quot;</li>\n<li>On the Properties dialog, click on the icon on the top left and choose the bitmap in the &quot;Select Custom Icon&quot; dialog that opens.</li>\n</ol>\n<p>The icons from various themes installed in your PC are typically stored inside <code>/usr/share/icons</code></p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-11-22T21:47:31.343", "id": "15126", "postId": "5211", "score": "2", "text": "The option #2 works in nautilus, but not in the 'Places' menu!", "userDisplayName": null, "userId": "829" }, { "creationDate": "2010-11-25T09:51:23.080", "id": "15571", "postId": "5211", "score": "1", "text": "I think it should be because the icons are cached by the panel /UI. Did you try logging out and back in after step 4 ?", "userDisplayName": null, "userId": "270" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-05T08:44:26.023", "id": "5211", "lastActivityDate": "2010-10-05T08:44:26.023", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "270", "parentId": "5209", "postTypeId": "2", "score": "9" }
[ { "accepted": true, "body": "<p>If you want to add emblems (like the document, picture frames) on top of the default folder icon, see <a href=\"https://askubuntu.com/questions/5203/what-happens-if-i-delete-the-default-folders-in-my-home-folder/5204#5204\">this post</a></p>\n<p>If you want to change the unde...
null
null
null
null
null
5212
1
null
2010-10-05T09:09:23.413
2
2882
<p>We are running an Ubuntu server which is a primary domain controller for several Windows XP clients using samba.</p> <p>Some of our processes running on Windows generate huge amounts of xml files. Unfortunately we do not have any influence on how this data is stored (e.g. we cannot change the programs to (un)gzip the xml files when they are loaded/saved, they are provided by a 3rd party and we are required to use these programs by contract).</p> <p>Since our hard disks are overflowing regularly I wonder whether there is such a thing like NTFS compression for Ubuntu/Linux for compressing these files transparently for the clients.</p> <p>Some more background:</p> <ul> <li>Processing these files always means that they are read completely into memory, changed there and written back.</li> <li>Only one client will access a directory of these files at a time so there are no concurrency and locking issues.</li> <li>The server already has 4x 2TB data drives. There is no more physical space to add more (and I would like to avoid adding more disks)</li> <li>The data must be kept active for about two years, after that it will be archived and deleted from the disks.</li> </ul> <p>I think the perfect solution would be some kind of plug in to the samba server that gets called whenever a file which matches a given wildcard / regex is created / written or read which uses gzip / ungzip to compress / uncompress the file on the fly.</p> <p>Alternatively I could imagine a windows file system driver that does the same on the client side.</p> <p>I would like to avoid any manual steps in this process because it is too error prone.</p> <p>Is there something like this? I have already used Google but could not find any solution.</p> <p>(I would have liked to create a compression tag for this but I am not allowed to do that yet.)</p>
2655
null
null
2022-03-15T08:30:40.090
Can I transparently compress some files on a samba share
[ "server", "windows", "samba" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>You could mount a compressing filesystem on a directory within the SAMBA share, and save your XML files in that. FUSE provides <a href=\"http://sourceforge.net/apps/mediawiki/fuse/index.php?title=CompressedFileSystems\" rel=\"nofollow\">at least three</a> filesystems that co...
null
null
null
null
null
5215
1
5222
2010-10-05T11:01:49.510
1
980
<p>Hey how do I force empathy to save my display pic? I have tried to set it (in different formats and sizes) over a dozen times, all I get is this little silver man.</p> <p><img src="https://i.stack.imgur.com/5Hlw0.png" alt="alt text"></p> <p><img src="https://i.stack.imgur.com/smpaZ.png" alt="alt text"></p>
2458
null
null
2010-12-28T04:58:52.790
Empathy doesn't seem to be saving my display picture
[ "gnome", "display", "empathy" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2010-10-05T15:32:33.113", "id": "5302", "postId": "5215", "score": "0", "text": "Doesn't Empathy use your userpic from your account on Ubuntu? If you don't have a userpic set on your computer, you might not have one set for Empathy.", "userDisplayName": null, "userId"...
{ "accepted": true, "body": "<p>I think pictures are stored <em>on the protocol server</em>, not on your local Empathy client (except maybe as cached data), so you should be able to upload a profile picture from any account/profile management web page. For instance, I can see in Empathy the picture that I upload from my GMail account.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-09T09:59:37.667", "id": "22261", "postId": "5222", "score": "0", "text": "I've pinpointed the issue to be telepathy-butterfly (when I use telepathy-haze my avatar is displayed), you wouldn't know if there is a way to \"force\" telepathy-butterfly to show your avatar in chat would you?", "userDisplayName": null, "userId": "2458" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-05T14:18:18.547", "id": "5222", "lastActivityDate": "2010-10-05T14:18:18.547", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "325", "parentId": "5215", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>I think pictures are stored <em>on the protocol server</em>, not on your local Empathy client (except maybe as cached data), so you should be able to upload a profile picture from any account/profile management web page. For instance, I can see in Empathy the picture that I ...
null
null
null
null
null
5218
1
null
2010-10-05T13:03:10.890
6
1487
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/4324/how-can-i-change-the-order-of-the-users-in-the-login-screen">How can I change the order of the users in the login screen?</a> </p> </blockquote> <p>Where is the users' login history stored that governs the order in which the users' names appear in the login window? Background: I want to manipulate the order of the names.</p> <p>-- </p> <p>[[This is the most counter-intuitive forum site I have dealt with yet.]]</p>
null
-1
2017-04-13T12:24:32.903
2010-11-28T21:06:32.820
Where is the order of names in gdm login screen stored?
[ "login-screen", "gdm", "login" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-10-09T18:28:38.120", "id": "5557", "postId": "5218", "score": "0", "text": "Not duplicate. The title is similar, but the question itself is intentionally specific. After I got my fingers slapped for asking my question over there, honestly, don't give me this.", "userD...
null
[ { "accepted": null, "body": "<p>As far as I know, there is no easy way to configure the order of names: Names are ordered by their login frequency as returned by ConsoleKit (see the output of<code>ck-history --frequent</code>). The numbers are extracted from the log files in <code>/var/log/ConsoleKit/</code...
null
0
2011-06-05T19:19:45.323
null
tc14
5224
1
5225
2010-10-05T14:34:20.877
3
599
<p>I accidentally screwed up the groups for my main user by doing <code>sudo usermod -G blah</code> instead of <code>sudo usermod -a -G blah</code>. On realising this, I immediately rebooted into single user mode and added the groups <code>adm dialout cdrom floppy fuse</code> to the user's account. Everything seemed to be more or less back to normal and I could <code>sudo</code> as usual on the command line. However, the authentication dialog box that shows up in the GUI has stopped working for nearly all programs. The dialog shows up as normal, but will not accept the password. <code>gksudo firefox</code> from the command-line seems to work, as does Synaptic, leading me to believe that I'm merely missing a group that the other Ubuntu configuration/admin apps check for. Any solutions would be much appreciated. </p>
2662
235
2010-10-06T22:34:58.617
2010-10-06T22:34:58.617
GUI sudo not working?
[ "10.04", "sudo" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You can try adding your user to the <code>admin</code> group, that should fix it. (Please leave a comment if it doesn't)</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-05T14:43:26.653", "id": "5225", "lastActivityDate": "2010-10-05T14:43:26.653", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "235", "parentId": "5224", "postTypeId": "2", "score": "7" }
[ { "accepted": true, "body": "<p>You can try adding your user to the <code>admin</code> group, that should fix it. (Please leave a comment if it doesn't)</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-05T...
null
null
null
null
null
5227
1
5232
2010-10-05T16:12:08.960
2
5276
<p>It seems that each time I go to open an HTML message in Evolution I have to goto View -> Load Images. Is there a way to change this so Images will be automatically downloaded each time I receive an HTML message?</p>
41
null
null
2010-10-05T17:04:17.377
Load images by default for HTML Emails in Evolution
[ "email", "evolution" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>In Evolution, open <code>Edit &gt; Preferences &gt; Mail Preferences &gt; HTML Messages</code>. You should see an option for \"Loading Images.\" Select \"Always load images from internet.\"</p>\n\n<p><img src=\"https://i.stack.imgur.com/rzezP.png\" alt=\"evo-prefs\"></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-05T17:04:17.377", "id": "5232", "lastActivityDate": "2010-10-05T17:04:17.377", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "570", "parentId": "5227", "postTypeId": "2", "score": "10" }
[ { "accepted": true, "body": "<p>In Evolution, open <code>Edit &gt; Preferences &gt; Mail Preferences &gt; HTML Messages</code>. You should see an option for \"Loading Images.\" Select \"Always load images from internet.\"</p>\n\n<p><img src=\"https://i.stack.imgur.com/rzezP.png\" alt=\"evo-prefs\"></p>\n", ...
null
null
null
null
null
5228
1
null
2010-10-05T16:27:26.983
3
4813
<p>Several special keys, most importantly the 'eject' button, are not working on my keyboard. </p> <p>The only way I can eject my DVD drive is by opening up a terminal and typing 'eject'. When I press the eject button on my keyboard it gives the following message in the logs so it is registering the button being pressed but it is not doing anything. Also it doesn't register this message in the logs everytime i press the eject button, only occasionally.</p> <pre><code>-laptop kernel: [ 1335.617380] atkbd.c: Unknown key released (translated set 2, code 0xf8 on isa0060/serio0). -laptop kernel: [ 1335.617384] atkbd.c: Use 'setkeycodes e078 &lt;keycode&gt;' to make it known. </code></pre> <p>Does anyone know how I should go about fixing my keyboard so that all my special keys like eject work?</p> <p>I installed Keytouch and Keytouch editor but when it asks me to press the 'eject' button it still doesn't notice that I pressed it so I can not assign it to the XF86Eject function. Its a Packard Bell EasyNote TX86 and I'm running Lucid Lynx. Any ideas? </p>
2663
2663
2010-10-06T16:36:15.983
2010-10-06T16:36:15.983
How do I fix an 'unknown key' issue so the key works as expected?
[ "keyboard", "keyboard-layout" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Install <a href=\"https://help.ubuntu.com/community/KeyTouch\" rel=\"nofollow\">KeyTouch</a>. If your keyboard is not supported out of the box, you need both the <code>keytouch</code> and <code>keytouch-editor</code> packages. Run the keytouch editor, and configure your keybo...
null
null
null
null
null
5229
1
5236
2010-10-05T16:48:02.960
7
2065
<p>I'm using 2 workspaces right now, and I'd like to be able to cycle through them using a single shortcut. At the moment, I can do <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>Right</kbd> to switch to workspace 2, and <kbd>Left</kbd> switches to 1, but I'd like a single key (or key combination) to switch to the workspace I'm not in right now. That way I would only need that shortcut, and not need two.</p> <p>I'm running Ubuntu on an old machine, and that keeps me from enabling compiz at all. I tried writing a script using both <code>wmctrl</code> and <code>xdotool</code>, but neither work properly (no matter what I do, they both will only switch to workspace 1, and never to 2).</p> <p>Any suggestions?</p>
1012
null
null
2012-08-16T14:38:04.390
How can I bind a key to cycle between workspaces?
[ "10.04", "shortcut-keys", "workspaces" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Here's a script that switches to the next workspace, wrapping back to the first after the last. Note that workspaces are numbered from 0, maybe this is what threw you when you tried writing a script.</p>\n\n<pre><code>#!/bin/sh\ntotal=$(wmctrl -d | wc -l)\ncurrent=$(wmctrl -d | sed -n 's/^\\([0-9]\\+\\) *\\*.*/\\1/p')\nif [ -z \"$total\" ] || [ -z \"$current\" ]; then\n echo 1&gt;&amp;2 \"$0: Could not obtain workspace information!\"\n exit 2\nfi\ntarget=$(($current+1))\nif [ $target = $total ]; then\n target=0\nfi\nwmctrl -s $target\n</code></pre>\n", "commentCount": "5", "comments": [ { "creationDate": "2010-10-05T21:01:49.433", "id": "5314", "postId": "5236", "score": "0", "text": "Indeed. I was actually trying to use the name of each workspace (D1 and D2) instead of their numbers (0 and 1). Should have read further down the man page. =)", "userDisplayName": null, "userId": "1012" }, { "creationDate": "2010-10-05T23:57:46.037", "id": "5325", "postId": "5236", "score": "0", "text": "Nice script - it works for any number of workspaces. Good stuff!\n\n...how to hook that script up to a keystroke?", "userDisplayName": null, "userId": "2652" }, { "creationDate": "2010-10-06T05:40:58.110", "id": "5338", "postId": "5236", "score": "3", "text": "Save it anywhere as a text file, and mark it as executable (`chmod +x filename`). Go to \"System -> Preferences -> Keyboard Shortcuts\". In this menu, create a new shortcut, give it whichever name you like and point it to your saved file. For instance, if you save the file as \"script.sh\" in your home folder, what you have to write in the \"Command\" input field is: \"/home/yourusername/script.sh\".", "userDisplayName": null, "userId": "1012" }, { "creationDate": "2010-10-14T07:55:11.017", "id": "6968", "postId": "5236", "score": "0", "text": "Awesome. Thanks, Bruce, for documenting the remaining steps on this.", "userDisplayName": null, "userId": "2652" }, { "creationDate": "2010-10-14T07:56:36.260", "id": "6970", "postId": "5236", "score": "0", "text": "p.s. I stick with putting executables in ~/bin so I'd shortcut to that location as well.", "userDisplayName": null, "userId": "2652" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-05T18:42:29.663", "id": "5236", "lastActivityDate": "2010-10-05T18:42:29.663", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1059", "parentId": "5229", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>Here's a script that switches to the next workspace, wrapping back to the first after the last. Note that workspaces are numbered from 0, maybe this is what threw you when you tried writing a script.</p>\n\n<pre><code>#!/bin/sh\ntotal=$(wmctrl -d | wc -l)\ncurrent=$(wmctrl -d...
null
null
null
null
null
5230
1
5233
2010-10-05T16:54:37.960
3
303
<p>I'm trying to let members of the group <code>labmembers</code> adjust the CPU frequency scaling on a system using <code>cpufreq-selector</code>. However, by default, this is restricted to members of the <code>admin</code> group.</p> <p>Per <a href="https://askubuntu.com/questions/3/how-can-i-set-the-software-center-to-install-software-for-non-root-users">this question</a>, I've created the following file:</p> <pre><code>/etc/polkit-1/localauthority/30-site.d$ cat 50-cpufreq.pkla [CPU Frequency should be allowed for everyone] AdminIdentities=unix-group:labmembers Action=org.gnome.cpufreqselector ResultActive=yes ResultInactive=yes </code></pre> <p>However, it seems to have no effect. I can't find any command to reload PolicyKit's configuration, and rebooting doesn't do it either. I've also tried naming it <code>50-cpufreq.conf</code>, to no more effect. There's nothing I've found that would tell me whether a pkla file is well-formed or anything like that, either.</p> <p>What am I missing?</p>
2320
-1
2017-04-12T07:23:19.023
2010-10-05T17:14:34.160
How can I let users in a particular group adjust CPU Frequency Scaling?
[ "10.04", "policykit" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>It appears that there's a typo in your configuration file. To restrict to a Group (or user) you'll need to use <code>Identity</code> rather than <code>AdminIdentities</code></p>\n\n<p>From the <a href=\"http://manpages.ubuntu.com/manpages/lucid/en/man8/pklocalauthority.8.html#toptoc4\" rel=\"nofollow\">pklocalauthority man page</a>:</p>\n\n<blockquote>\n<pre><code> Identity\n A semi-colon separated list of globs to match identities. Each glob should start with unix-user: or unix-group: to specify whether to match on a UNIX user name or a UNIX group name.\n</code></pre>\n</blockquote>\n\n<p>Ideally the syntax would be:</p>\n\n<pre><code>[CPU Frequency should be allowed for everyone]\nIdentity=unix-group:labmembers\nAction=org.gnome.cpufreqselector\nResultActive=yes\nResultInactive=yes\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-05T17:14:34.160", "id": "5233", "lastActivityDate": "2010-10-05T17:14:34.160", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "41", "parentId": "5230", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>It appears that there's a typo in your configuration file. To restrict to a Group (or user) you'll need to use <code>Identity</code> rather than <code>AdminIdentities</code></p>\n\n<p>From the <a href=\"http://manpages.ubuntu.com/manpages/lucid/en/man8/pklocalauthority.8.html...
null
null
null
null
null
5238
1
null
2010-10-05T22:02:34.647
1
480
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/131/which-computers-are-guaranteed-to-work-with-ubuntu">Which computers are guaranteed to work with Ubuntu?</a> </p> </blockquote> <p>I am thinking of purchasing a new laptop computer and will be installing Ubuntu Lucid Desktop (either 64-bit or 32-bit) on it. What models can you recommend?</p>
2668
-1
2017-04-12T07:23:19.023
2010-10-05T22:02:34.647
Recommended laptop models for Ubuntu 10.04 (Lucid)
[ "10.04", "laptop" ]
0
0
CC BY-SA 2.5
[]
null
[]
null
null
2010-10-05T22:51:52.197
null
null
5241
1
5246
2010-10-05T22:41:01.733
11
2516
<p>I keep seeing references to a config option calld <code>Editable Menu Accelerators</code> or <code>Editable Menu Shortcut Keys</code>.<br> This is exactly what I need, but all the directions I've read about how to find that feature lead me to a dead-end. </p> <p>I am running with Ubuntu 10.4, and have checked its help file <code>Desktop User Guide</code>.<br> In Section <code>8.2.1.4. Interface Preferences</code> it says: </p> <pre><code>"...the Interface tabbed section in the Appearance preference tool to customize the appearance of menus, menubars, and toolbars for applications that are part of GNOME." </code></pre> <p>This <code>Interface</code> tab does not exist in Ubuntu 10.4 (... okay, who moved it?! .. where is i?)<br> Is this feature still available?<br> I assume it does exist, and is now accessible some other way... but <strong>how?</strong> </p> <p>PS: To clarify... I want to modify a menu-item accelerator for a specific app (not a system-wide hot-key)</p>
2670
64389
2012-11-30T21:05:13.080
2014-07-30T16:16:32.020
Ubuntu: "Editable Menu Accelerators" (on a per app basis). Where is this option?
[ "gnome", "nautilus", "shortcut-keys", "gtk" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>It seems that GNOME decided to remove the interface tab because <a href=\"https://bugzilla.gnome.org/show_bug.cgi?id=592756\" rel=\"noreferrer\">\"basically everything there is a user experience design cop-out. It only belongs in a tweak UI tool.\"</a> So now the only way to enable that option is hidden deep in the gconf settings.</p>\n\n<p>Launch <code>gconf-editor</code> from the terminal or the \"Run Application\" dialog (<code>Alt-F2</code>).</p>\n\n<p>Navigate to <code>desktop&gt;gnome&gt;interface</code> and check <code>can_change_accels</code></p>\n\n<p>Or just run this line in a terminal:</p>\n\n<pre><code>gconftool --set /desktop/gnome/interface/can_change_accels --type=bool True\n</code></pre>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-10-06T01:44:23.270", "id": "5327", "postId": "5246", "score": "2", "text": "Absolutely brilliant! Thanks... gconf-editor suits me fine ;) ... but I now understand why they removed from general access! It is so damn powerful, its scary. One mis-typed key while a menu is open changes that item's accelerator key (as intended by this feature)... and it does it wheter you meant to press that key or not. Its hair-trigger nature (where you don't normaally make silent mods) may lead to a few lost toes... I'll turn it on/off as needed... Go Linux! ... (I'm below 15 points.. can't mark up your anwer yet_", "userDisplayName": null, "userId": "2670" }, { "creationDate": "2012-11-30T20:58:16.180", "id": "276439", "postId": "5246", "score": "1", "text": "Doesn't seem to work in GNOME 3.4 on Precise using either `gconf-editor` or `dconf-editor` (latter case, using the key `/org/gnome/desktop/interface/can-change-accels`).", "userDisplayName": null, "userId": "64389" }, { "creationDate": "2012-11-30T21:30:44.553", "id": "276470", "postId": "5246", "score": "0", "text": "@Mechanicalsnail, see [this answer](http://askubuntu.com/questions/136062/permanent-custom-keyboard-shortcuts-for-evince-document-viewer/136112#136112) for Precise, especially the \"global menu\" part.", "userDisplayName": null, "userId": "55822" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-06T00:40:50.240", "id": "5246", "lastActivityDate": "2010-10-06T00:40:50.240", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "570", "parentId": "5241", "postTypeId": "2", "score": "9" }
[ { "accepted": null, "body": "<p>Looks like this functionality is now in \"Preferences/Keyboard Shortcuts\".</p>\n\n<p>For example, I usually pop in there to clear CTRL-ALT-DEL from the \"Log out\" option (double click on the entry, then press backspace.</p>\n\n<p>Then hit the \"Add\" button and create a new...
null
null
null
null
null
5245
1
5248
2010-10-06T00:39:18.373
12
31051
<p>In Ubuntu, formatting drives is a simple process: simply select it and tell Ubuntu what you want done with it.</p> <p>My question is; is there any tool as easy as that for Kubuntu?</p>
2442
null
null
2013-05-30T04:24:18.610
How to format Drives in Kubuntu?
[ "kubuntu" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p><a href=\"http://kde-apps.org/content/show.php?content=89595\" rel=\"noreferrer\">KDE Partition Manager</a> is available in the repositories, <code>sudo apt-get install partitionmanager</code></p>\n\n<p>It is a KDE front end for libparted, the same technology behind Ubuntu's partition manager. It can be used to not just format drives, but also create, resize, and move partitions.</p>\n\n<p><img src=\"https://i.stack.imgur.com/4Xs6L.png\" alt=\"here&#39;s some alt text\"></p>\n", "commentCount": "5", "comments": [ { "creationDate": "2010-10-15T16:30:43.067", "id": "7410", "postId": "5248", "score": "5", "text": "Shame there is no 'format' option like GNOME's context menu, though :/", "userDisplayName": null, "userId": "2442" }, { "creationDate": "2013-10-22T19:36:30.143", "id": "465685", "postId": "5248", "score": "2", "text": "You need to delete and create a new partition in order for effect a format?", "userDisplayName": null, "userId": "9081" }, { "creationDate": "2016-04-18T11:40:05.433", "id": "1132812", "postId": "5248", "score": "0", "text": "Does it support encryption?", "userDisplayName": null, "userId": "41247" }, { "creationDate": "2021-11-10T08:56:08.383", "id": "2366164", "postId": "5248", "score": "1", "text": "This did not answer the question. The tool doesn't have a format option at all.", "userDisplayName": null, "userId": "1010265" }, { "creationDate": "2022-10-10T23:06:14.517", "id": "2500533", "postId": "5248", "score": "0", "text": "I love all the accepted wrong answers on this site. As @Shiv_90 noted this doesn't have a format option, period, and my mmcblk device doesn't even show up in the device list.", "userDisplayName": null, "userId": "402001" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-06T01:41:29.970", "id": "5248", "lastActivityDate": "2010-10-06T01:41:29.970", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "570", "parentId": "5245", "postTypeId": "2", "score": "9" }
[ { "accepted": true, "body": "<p><a href=\"http://kde-apps.org/content/show.php?content=89595\" rel=\"noreferrer\">KDE Partition Manager</a> is available in the repositories, <code>sudo apt-get install partitionmanager</code></p>\n\n<p>It is a KDE front end for libparted, the same technology behind Ubuntu's ...
null
null
null
null
null
5249
1
null
2010-10-06T02:36:04.800
5
694
<p>In XFCE I used to like a terminal window to have a toolbar (with cut, copy, paste and new tab buttons). Can I enable it in Gnome Terminal?</p>
2390
235
2010-10-06T12:38:37.360
2017-02-12T21:30:13.697
Can I set up GNOME Terminal to have a toolbar?
[ "gnome-terminal" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-10-06T04:51:13.263", "id": "5336", "postId": "5249", "score": "5", "text": "Is it not an option to run the same terminal application that you used in XFCE under gnome ? If you have both installed on the same machine you should see this in the menus.", "userDisplayName...
null
[ { "accepted": null, "body": "<pre><code>$ sudo apt-get install xfce4-terminal\n...\nThe following NEW packages will be installed:\n exo-utils libexo-0.3-0 libexo-common libxfce4util-bin libxfce4util-common\n libxfce4util4 xfce4-terminal\nAfter this operation, 10.0MB of additional disk space will be used.\...
null
null
null
null
null
5250
1
5254
2010-10-06T02:36:15.920
4
3943
<p>While booting, I am getting the error message <strong>internal error: the second sector of Stage 2 is unknown."</strong> This is under Ubuntu 10.04 Lucid Lynx. After posting, the full text of the GRUB loading screen is:</p> <pre><code>GRUB Loading stage1.5 GRUB loading, please wait.... internal error: the second sector of Stage 2 is unknown. </code></pre> <p>This is an existing install that has been working for a long time. I came home to find the computer powered but not responding with no input to the monitor. Upon rebooting, this error message was displayed.</p>
86
null
null
2010-10-06T09:48:00.090
GRUB Boot Error: "the second sector of Stage 2 is unknown"
[ "10.04", "boot", "grub2" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I would try reinstalling GRUB2 from the Live CD; if this errors out, this should give you at least some hints about what is going wrong with the system. (The fact that you found the computer non-functional after leaving it powered on for some time suggests some hardware problem happened.)</p>\n\n<p>There are step by step <a href=\"https://help.ubuntu.com/community/RecoveringUbuntuAfterInstallingWindows\" rel=\"nofollow\">tutorials on the Ubuntu wiki</a> and on <a href=\"http://fosswire.com/post/2009/05/restoring-overwritten-grub/\" rel=\"nofollow\">FOSSwire (more command-line oriented)</a>.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-06T09:48:00.090", "id": "5254", "lastActivityDate": "2010-10-06T09:48:00.090", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "325", "parentId": "5250", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>I would try reinstalling GRUB2 from the Live CD; if this errors out, this should give you at least some hints about what is going wrong with the system. (The fact that you found the computer non-functional after leaving it powered on for some time suggests some hardware probl...
null
null
null
null
null
5251
1
5764
2010-10-06T02:40:15.490
18
3372
<p>I'd like to add some buttons (such as cut, copy, paste, new folder, open terminal in current folder) to Nautilus Toolbar. Can I?</p> <p>And it'd be awesome if I could add custom buttons running commands I specify, and perfect if I could use macros (like current selected file full name substitution etc.) in those commands.</p>
2390
null
null
2012-05-09T12:22:58.327
How to add/remove buttons to Nautilus toolbar?
[ "nautilus" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<h3>10.04/10.10/11.04</h3>\n<p>It can be done in a hacky way by editing <code>/usr/share/nautilus/ui/nautilus-navigation-window-ui.xml</code>. You'll want to look into the part that begins with <code>&lt;toolbar name=&quot;Toolbar&quot;&gt;</code>.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2014-07-30T16:15:22.067", "id": "679426", "postId": "5764", "score": "1", "text": "Doesn't work on 14.04", "userDisplayName": null, "userId": "186134" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-10-10T20:42:03.053", "id": "5764", "lastActivityDate": "2012-05-09T12:22:58.327", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "2181", "parentId": "5251", "postTypeId": "2", "score": "8" }
[ { "accepted": null, "body": "<p>There is no option to customize the toolbar, but there is <a href=\"https://bugs.launchpad.net/nautilus/+bug/13119\">a bug report</a> requesting it. Feel free to increase the bug's visibility using the \"This bug affects me\" feature.</p>\n", "commentCount": "1", "com...
null
null
null
null
null
5252
1
5359
2010-10-06T03:30:45.433
3
580
<p>In Nautilus, I sometimes want to change the <code>mode</code> of the <code>side-pane</code> (Tree, Places, etc). </p> <p>This can be done via the a mouse click on the drop button at the top of the side-pane.<br> ...but there is no hot-key/accelerator-key to quickly display this drop-list. </p> <p>I usually prefer the keyboard for basic navigation, and this lack of simple keyboard navigation is a pain in the proverbial. </p> <p>If there were even a menu item to jump across to the side-pane, it wouldn't be such a pain (bad pun)... and I could just set the menu-item's accelerator key... but there isn't such a menu item!</p> <p>Can I create a menu-item for this particlar chore?<br> or, is there already a hot-key for this?<br> (Jumping directly across to the side-pane would be enough. Dropping the list is ideal)</p> <p>Ctrl+Tab does some sort of navigation, but it seems to stop at every control on its route, and this results in a varying number of whistle-stops, depending on the state of the rest of the window (eg. Extra pane, Expanded trees...) </p>
2670
2670
2010-10-06T04:11:09.190
2010-10-08T17:04:54.970
In Nautilus is there hot-key to the side-pane's drop-down mode-selection list (Place, Tree, etc)?
[ "nautilus", "shortcut-keys" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>It's not a hotkey, but:</p>\n\n<p><strong>If your selection is in the nautilus main window, \"tab-tab-space\" should drop down the list.</strong> </p>\n\n<p>I'd imagine there's some sort of linux keybinding widget that would bind this keyboard combo to something more useful, like \"control+`\" or whatever you wanted; however, I do not know what that utility is.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-10-08T21:17:25.557", "id": "5510", "postId": "5359", "score": "0", "text": "m ... Yes, tab-tab does get me there *most* of the time, so thanks for that. I'll use that for now... However, getting back is another issue... It seems that nautilus (and many other programs these days) are written in a mouse-centric way... The original well thought out paradigm of equal functionality for both mouse and keyboard seems to have gone by the wayside, somewhat. C'est la vie! Nautilus is still a great program, and I'll just have to work with it, and perhaps around it with xmacro", "userDisplayName": null, "userId": "2670" }, { "creationDate": "2010-10-08T21:26:12.863", "id": "5511", "postId": "5359", "score": "0", "text": "... my previous message got sent prematurely... here is the last part: ... and perhaps work around it with xmacro and xbindkeys... but I'll probably just use it as-is, now that I know that there's (probably) no single key option.", "userDisplayName": null, "userId": "2670" }, { "creationDate": "2010-10-10T02:53:25.697", "id": "5583", "postId": "5359", "score": "0", "text": "I agree about the creeping 'mouse-centricness' of modern applications. =) ... I'm a big believer in intuitive design, but also a fanatic for efficiency of use, which puts me in an odd position between the two paradigms. I want to get as close from direct brain-to-computer translation as possible, which is possible with a finely honed set of keyboard shorcuts wired into your nervous system, but we'll probably not live to see the days of functional and ubiquitous thought-controlled computers. ...sigh /end techno-dreams", "userDisplayName": null, "userId": "2383" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-08T17:01:47.020", "id": "5359", "lastActivityDate": "2010-10-08T17:01:47.020", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2383", "parentId": "5252", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>It's not a hotkey, but:</p>\n\n<p><strong>If your selection is in the nautilus main window, \"tab-tab-space\" should drop down the list.</strong> </p>\n\n<p>I'd imagine there's some sort of linux keybinding widget that would bind this keyboard combo to something more useful, ...
null
null
null
null
null
5253
1
null
2010-10-06T09:44:53.907
1
1328
<p>I have a DELL inspiron 1525 with was shipped with Ubuntu 8.04. It was working ok.</p> <p>I've decided to move to Ubuntu 10.04 last week. The install process was ok. Unfortunately, after the upgrade, my web access became very unstable. I can see web pages in firefox but it is very slow and I have a lot of errors.</p> <p>I've checked the network and firefox settings all seems ok.</p> <p>Does anybody know this problem? How can I investigate further? </p>
2675
41
2010-10-11T14:42:10.590
2010-10-11T14:44:04.457
Web is very slow after upgrading to Ubuntu 10.04
[ "10.04", "networking", "upgrade", "8.04" ]
4
9
CC BY-SA 2.5
[ { "creationDate": "2010-10-06T09:49:45.330", "id": "5342", "postId": "5253", "score": "0", "text": "This suggests a driver problem in the newer kernel. Are you using wireless to connect to the internet?", "userDisplayName": null, "userId": "325" }, { "creationDate": "2010-10-06T...
null
[ { "accepted": null, "body": "<p>Is you connection slow only on firefox while browsing? Reason might be ipv6 lookup's witch first needs to fail before it trys to find ipv4 ones. </p>\n\n<p>If that is case type <code>about:config</code> in firefox browser bar and set <code>network.dns.disableIPv6</code> to tr...
null
null
2017-03-10T23:08:55.867
null
null
5256
1
5279
2010-10-06T15:05:07.433
4
5422
<h2>Hardware</h2> <p>I have the following hardware configuration:</p> <ul> <li>PC running <strong>Ubuntu 10.04</strong></li> <li>Onboard video card with one VGA output (Intel P4M800 - Via Unichrome)</li> <li>VGA splitter: 1 input, 4 outputs. Up to 2048x1536 (according to spec)</li> <li>One 42'' TV/Monitor connected to the splitter via its VGA input</li> <li>Two 32'' TV/Monitor connected to the splitter via its VGA input</li> </ul> <h2>Problem</h2> <p>With that configuration, Ubuntu only shows 640x480 and 800x800 as possible resolutions. However, if I connect any of the TV/Monitor directly to the PC (via VGA) then Ubuntu shows a long list of possible resolution (I tried several of them and they worked fine).</p> <p>It seems that <strong>X Window System</strong> automatic configuration is not working properly. How do I manually configure it? What info should knows of the different devices involved beforehand?</p> <hr> <p><strong>Context:</strong> The monitors are intalled in public spaces across one building to display dynamic information that is processed in the PC (a Flash presentation running in Firefox in fullscreen mode).</p> <p><strong>Update</strong>:</p> <p>I tried the following, as the link provided in the answers said:</p> <ol> <li><p>Get the modeline for the resolution using <code>cvt</code></p></li> <li><p>Created the new mode using <code>xrandr --newmode</code></p></li> <li><p>Added the mode to the output display using <code>xrandr --addmode</code></p></li> <li><p>Tried to change the resolution using <code>xrandr --output ... --mode ...</code></p></li> </ol> <p>But I get this: <code>xrandr screen cannot be larger than 800x600 (desired size ...)</code></p>
2679
2679
2010-10-07T14:12:29.683
2010-10-07T14:12:29.683
Display resolution problem using VGA splitter
[ "video", "xorg", "display" ]
2
5
CC BY-SA 2.5
[ { "creationDate": "2010-10-07T06:53:28.020", "id": "5408", "postId": "5256", "score": "0", "text": "What video card are you using?. Not all the drivers play nice with xrandr.", "userDisplayName": null, "userId": "211" }, { "creationDate": "2010-10-07T14:12:59.837", "id": "542...
{ "accepted": true, "body": "<p>Here's how monitor autodetection works: Every monitor's firmware contains a chunk of data called EDID which encodes the monitor's resolutions and refresh rates and so on. The video driver makes a hardware call to retrieve this data, via the video card / monitor connection.</p>\n\n<p>Splitters (like KVMs) manipulate the path from the card to the monitor. Some KVMs pass the EDID properly, others don't. My guess is that your splitter is not allowing the EDID to be passed back.</p>\n\n<p>Indeed, I would guess that the system call has a built-in assumption that only one EDID chunk is present on a given connector, so even if it was returning something, it probably wouldn't be what you wanted.</p>\n\n<p>Also, while all monitors return EDID, some TVs don't, or return a corrupted EDID. But since you tested it without the splitter and it worked correctly, I don't think this problem affects you.</p>\n\n<p>Different monitors support different sets of resolutions and frequencies, but all monitors are required by the VESA Standard to support at least two: 640x480 and 800x600. So when X doesn't know anything about the monitor connected to it, it falls back to those two resolutions. That's why those are the only ones you see available.</p>\n\n<p>Anyway, I think in this case you can't rely on EDID to get your monitors magically auto-configured. Instead, you'll need to manually specify the data yourself.</p>\n\n<p>If you had specified your video driver or linked to your Xorg.0.log, I could give you more specific info. The procedure varies depending on what video driver you're using. If it is a KMS-enabled driver like -intel or -ati you have to specify it via the kernel. If you have KMS turned off or are using a non-KMS driver, but the driver supports RANDR (e.g. -fglrx), you can add a modeline using the xrandr command line tool such as documented at the bottom of <a href=\"https://wiki.ubuntu.com/X/Config/Resolution\" rel=\"nofollow\">https://wiki.ubuntu.com/X/Config/Resolution</a>. If you are using a non-KMS, non-RANDR driver such as -nvidia, it is controlled entirely in your /etc/X11/xorg.conf; in this latter case you'll need to look up the vertical and horizontal refresh rates for all the monitors (hopefully they're all close to the same ranges, else you're screwed), and then specify those via the HorizSync and VertRefresh options in xorg.conf. You'll also need to add the resolution in the xorg.conf. <em>Possibly</em> you may need to construct a ModeLine as well, but I'll bet just the HorizSync and VertRefresh will be enough.</p>\n\n<p>Good luck, and if you get stuck be sure to post your /var/log/Xorg.0.log.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-10-06T20:31:13.460", "id": "5383", "postId": "5279", "score": "0", "text": "+1 @Bryce for the excellent explaination. See the update in the question as I tried using xrandr", "userDisplayName": null, "userId": "2679" }, { "creationDate": "2012-06-13T09:41:23.130", "id": "181900", "postId": "5279", "score": "0", "text": "I cannot believe that while Ubuntu still requires people to \"craft\" a xorg.conf file there are no nice easy GUI tools to do it. It's *such* a faff and well beyond a non-technical user, yet essential for a workable experience of using ubuntu. #ubuntufail I got mine working with `cvt`, `xrandr --newmode` and `xrandr --addmode` but I know it's gonna fail at next reboot unless I spend the next 2 hours getting an xorg.conf file working.", "userDisplayName": null, "userId": "28930" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-06T19:48:42.547", "id": "5279", "lastActivityDate": "2010-10-06T19:48:42.547", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "913", "parentId": "5256", "postTypeId": "2", "score": "4" }
[ { "accepted": null, "body": "<p>It looks like X isn't able to correctly detect the resolution of the splitter.</p>\n\n<p>You can force it to use arbitrary resolutions using xrand. There are some <a href=\"https://wiki.ubuntu.com/X/Config/Resolution\" rel=\"nofollow\">documentation</a> on it, check the <em>...
null
null
null
null
null
5257
1
5261
2010-10-06T15:12:05.433
22
791
<p>Today, October 6th 2010, Ubuntu 10.10 is in <a href="https://wiki.ubuntu.com/FeatureDefinitionFreeze">Feature Definition Freeze</a>, <a href="https://wiki.ubuntu.com/DebianImportFreeze">Debian Import Freeze</a>, <a href="https://wiki.ubuntu.com/FeatureFreeze">Feature Freeze</a>, <a href="https://wiki.ubuntu.com/UserInterfaceFreeze">User Interface Freeze</a>, <a href="https://wiki.ubuntu.com/BetaFreeze">Beta Freeze</a>, <a href="https://wiki.ubuntu.com/DocumentationStringFreeze">Documentation String Freeze</a>, <a href="https://wiki.ubuntu.com/FinalFreeze">Final Freeze</a>, <a href="https://wiki.ubuntu.com/KernelFreeze">Kernel Freeze</a> and past the Translation Deadlines in both the <a href="https://wiki.ubuntu.com/NonLanguagePackTranslationDeadline">non-language pack</a> and <a href="https://wiki.ubuntu.com/LanguagePackTranslationDeadline">language pack</a> editions as the <a href="https://wiki.ubuntu.com/MaverickReleaseSchedule">release schedule</a> details.</p> <p>Basically, except for last minute bugfixes, the version of Ubuntu 10.10 you can download <em>today</em> is identical to the version of Ubuntu 10.10 you can download on the 10th when it gets released.</p> <p>If you downloaded and installed Ubuntu 10.10 <em>today</em>, you would:</p> <ul> <li>help find glaring issues for last minute fixing</li> <li>help defray the network load on October 10th</li> <li>see Ubuntu 10.10 in action without waiting</li> </ul> <p>Those sound like pretty strong arguments... to me, and indeed I've been using Ubuntu 10.10 for a month now roughly. However, most people prefer to make the jump with everybody else on release day.</p> <p>What are the rational reasons for that?</p>
1938
235
2011-07-10T18:37:49.833
2011-07-10T18:37:49.833
Is there a rational reason to wait for the release date to download, install or update to the next version of Ubuntu?
[ "upgrade" ]
5
2
CC BY-SA 2.5
[ { "creationDate": "2010-10-06T15:16:34.207", "id": "5363", "postId": "5257", "score": "1", "text": "This is not time localized, as the same question could apply to 11.04, 11.10, 12.04, etc. However, I could find no existing tag that conveys the meaning of \"ubuntu+1\" and still can't create them...
{ "accepted": true, "body": "<p>If you require a super-stable working environment, I'd recommend waiting until the first Stable Release Updates (SRUs) are available. This usually happens within a few days of the official release. As the non-LTS releases tend to have more progressive enhancements and new features, they can contain bugs that have sneaked past the initial testing. </p>\n\n<p>Also, waiting for the official release gives a chance to enjoy the growing excitement and buzz within the community (if you use irc, Twitter or identi.ca you'll know what I mean) :)</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-06T16:26:26.927", "id": "5261", "lastActivityDate": "2010-10-06T16:26:26.927", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2681", "parentId": "5257", "postTypeId": "2", "score": "20" }
[ { "accepted": null, "body": "<p>If you use a computer for work, any bug may still affect you (either seriously, or just make you lose some time), so you might want to take a conservative approach and upgrade when the new release has been officially released and the first \"new release bugs\" have been irone...
null
0
null
null
null
5264
1
5266
2010-10-06T16:53:47.543
6
981
<p>How do I get 10.04 (Lucid) to log me in automatically on each reboot?</p>
2591
235
2010-10-06T16:59:56.613
2015-12-15T17:40:00.603
How do I set up automatic login?
[ "10.04", "gdm" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You can find this option under <code>System &gt; Administration &gt; Login Screen</code>. </p>\n\n<p>You'll need to \"unlock\" the window as this requires administrative privileges.</p>\n\n<p><img src=\"https://i.stack.imgur.com/g6N8G.png\" alt=\"alt text\"></p>\n\n<p>You can then select the user and session you would like logged in automatically.</p>\n\n<p><img src=\"https://i.stack.imgur.com/oLpVs.png\" alt=\"alt text\"></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-06T16:59:13.973", "id": "5266", "lastActivityDate": "2010-10-06T16:59:13.973", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "570", "parentId": "5264", "postTypeId": "2", "score": "7" }
[ { "accepted": true, "body": "<p>You can find this option under <code>System &gt; Administration &gt; Login Screen</code>. </p>\n\n<p>You'll need to \"unlock\" the window as this requires administrative privileges.</p>\n\n<p><img src=\"https://i.stack.imgur.com/g6N8G.png\" alt=\"alt text\"></p>\n\n<p>You can...
null
null
null
null
null
5265
1
5269
2010-10-06T16:54:32.703
7
1864
<p>Some time ago I started experiencing strange issue when single clicks would intermittently act as double clicks. Replacing the mouse doesn't help. Ubuntu forum seems to have few threads related to this( <a href="http://ubuntuforums.org/showthread.php?t=1371815">this</a>, and <a href="http://ubuntuforums.org/showthread.php?t=1444878">this</a> and few more) with no definitive solution.</p> <p>Hence my question - maybe someone here will be able to help me solve this mystery?</p>
2594
235
2010-10-06T17:01:02.740
2010-10-06T17:11:11.923
Single mouse clicks behaving as double clicks?
[ "10.04", "mouse" ]
1
3
CC BY-SA 2.5
[ { "creationDate": "2010-10-06T17:04:30.247", "id": "5370", "postId": "5265", "score": "0", "text": "I have a uf-thread and a bug on this too. My \"solution\" basically involved a new motherboard, a new mouse, a SSD and a reinstall. I didn't upgrade all of these because of the problem but upgradi...
{ "accepted": true, "body": "<p>I've just found <a href=\"https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-180/+bug/410805\" rel=\"nofollow\">the bug report here</a>. Bryce seems to suggest that it might be a Nvidia issue (that's how it has been filed since).</p>\n\n<p>But yes, try another mouse. Try a different version of the nvidia driver (you can update to the x-swat PPA for the latest versions -- or install it manually) and if you're at your wits' end, splash out a monkey load of money on a £300 motherboard, £100 mouse and £150 SSD. If nothing else, it'll give you some retail therapy.</p>\n\n<p>This effected me in 9.10 and I did my upgrade some time before moving to 10.04 so this could easily be completely unrelated.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-18T17:49:36.347", "id": "8010", "postId": "5269", "score": "0", "text": "New drivers for Nvidia worked... I can't make a connection between video card driver and mouse in my brain, but whatever... thanks for the advice :)", "userDisplayName": null, "userId": "2594" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-06T17:11:11.923", "id": "5269", "lastActivityDate": "2010-10-06T17:11:11.923", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "5265", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>I've just found <a href=\"https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-180/+bug/410805\" rel=\"nofollow\">the bug report here</a>. Bryce seems to suggest that it might be a Nvidia issue (that's how it has been filed since).</p>\n\n<p>But yes, try another ...
null
null
null
null
null
5270
1
5272
2010-10-06T17:15:59.120
3
1102
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/723/how-to-change-the-format-of-the-date-time-displayed-in-top-panel">How to change the format of the date &amp; time displayed in top panel ?</a> </p> </blockquote> <p>I've been using computers for too long. The "human" display of the date/time in the panel looks a bit strange to me these days. </p> <p>I am quite happy with the more functional and sortable digits-and-dots-and-dashes approach. Give me YYYY-MM-DD hh.nn.ss any day! (with leading zeroes) </p> <p>I am a recent refugee from land of Windows, where one consolation was a nice tray clock <code>(TClockEx)</code>which had free-form layouts for both the tray-display and the copy-to-clipboard. </p> <p>Although I like the general features of the standard-issue clock, I really do want a free-form digital clock (preferably with clipboard-out)... and my calendar week starts on Monday (not Sunday, as per the panel-clock) </p> <p>I often need a sortable digital date/time prefix for file names. The clock is handy for this. </p> <p>Can the standard Ubuntu clock do this? I couldn't find anything.<br> ... or is there another clock which can? </p>
2670
-1
2017-04-12T07:23:19.023
2010-10-06T17:37:22.463
I want my panel clock to be "digital" (2011-01-01). Is there a setting, or another clock?
[ "panel", "clock", "time", "calendar" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The GNOME Clock is actually very customizable once you dig into the gconf settings.</p>\n\n<p>Launch <code>gconf-editor</code> from the terminal or the \"Run Application\" dialog (<code>Alt-F2</code>).</p>\n\n<p>Navigate to <code>/apps/panel/applets/clock_screen0/prefs/custom_format</code></p>\n\n<p><img src=\"https://i.stack.imgur.com/PEiJg.png\" alt=\"gconf\"></p>\n\n<p>Take a look at <a href=\"http://manpages.ubuntu.com/manpages/maverick/en/man3/strftime.3posix.html\" rel=\"nofollow noreferrer\"><code>man strftime</code></a> for the different variables you can use there.</p>\n\n<p>You also need to set <code>/apps/panel/applets/clock_screen0/prefs/format</code> to <code>custom</code> for your changes to take effect.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-07T00:06:19.507", "id": "5400", "postId": "5272", "score": "0", "text": "Great... It seems that I need to become more attuned to this mysterious and wonderful \"gconf-editor\"... Thanks.", "userDisplayName": null, "userId": "2670" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-06T17:37:22.463", "id": "5272", "lastActivityDate": "2010-10-06T17:37:22.463", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "570", "parentId": "5270", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>Yes, you can do this with the standard Ubuntu clock. </p>\n\n<p>Open the <code>gconf-editor</code> and navigate to <code>apps -&gt; panel -&gt; applets -&gt; clock_screen0 -&gt; prefs</code>. You can then set the key <code>custom_format</code> to any format you want, e.g. <co...
null
null
2010-10-06T18:05:35.610
null
null
5273
1
5275
2010-10-06T18:47:49.063
15
25189
<p>I'll trying to migrate away from Simply Accounting and need to somehow extract the contents of a Windows CAB file which is what Simply uses for backups.</p> <p>What is the best way to open a CAB file on Ubuntu?</p>
347
235
2010-10-06T22:33:48.530
2018-10-31T04:40:00.183
How do you view the contents of a .CAB file?
[ "nautilus", "windows", "archive" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Install the package cabextract: <code>sudo apt-get install cabextract</code></p>\n\n<p>From the command line, you can now do <code>cabextract file.cab</code></p>\n\n<p>You can also configure the Archive Manager GUI to open cab files once cabextract is installed.</p>\n\n<p>Double click on the cab file. You will be told that it can't be displayed, but that not actually true. Press <code>Select Application</code>.</p>\n\n<p><img src=\"https://i.stack.imgur.com/lVcdD.png\" alt=\"alt text\"></p>\n\n<p>Select <code>Archive Manager</code> from the \"Open With\" dialog and check the \"Remember this application\" box.</p>\n\n<p><img src=\"https://i.stack.imgur.com/42XKZ.png\" alt=\"alt text\"></p>\n\n<p>Now you can handle cab files like zip or rar files. You can use the \"Extract here\" right click option or double click to open in Archive Manager.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-19T18:18:28.243", "id": "24078", "postId": "5275", "score": "2", "text": "Using cabextract via the command line worked, but the archive manager wouldn't work for me. What do I had to do to tell it to use cabextract?", "userDisplayName": null, "userId": "6161" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-06T19:01:15.867", "id": "5275", "lastActivityDate": "2010-10-06T19:01:15.867", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "570", "parentId": "5273", "postTypeId": "2", "score": "19" }
[ { "accepted": null, "body": "<p>You need cabextract, i think:</p>\n\n<blockquote>\n <p>cabextract -l file.cab</p>\n</blockquote>\n\n<p>to list content.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-06T...
null
null
null
null
null
5282
1
null
2010-10-06T20:08:55.013
12
10738
<p>Is it possible (and how) to use a computer headset (or speakers+mic) as a hands-free device for my mobile? I bought a bluetooth-dongle but I couldn't get it to work yet. I think I already set this up on an older version of Ubuntu on my laptop.</p> <p>I'm using Ubuntu 10.10, the phone is an android 2.2 (but I think this doesn't matter) and the bluetooth device is a Integrated System Solution Corp. Bluetooth Device (according to lsusb).</p> <p><a href="http://pastebin.com/H3yZi4KP">Output of lsusb -v</a></p> <p>EDIT: I found a project that seams to do just what I want: <a href="http://nohands.sourceforge.net/">http://nohands.sourceforge.net</a>. I tried to install it on my laptop but it didn't work. I'll try it again on my computer at home and post a description as soon as it works (or any of you guys could post a solution if you're faster;)</p> <p>Edit2: I was able to connect my phone, but somehow the audio doesn't work. I think the program has troubles with pulseaudio, as the soundtest fails. Any ideas?</p> <p>Edit3: I'm still trying to get this to work. I might buy another bluetooth dongle. ATM I'm able to dial numbers in hfconsole - that's all. Somehow I'm shure there is a way to get this to work!</p>
1826
1826
2010-10-20T22:57:33.060
2020-04-22T07:34:41.417
Use Computer headset like a hands-free for cell phone
[ "10.10", "bluetooth", "headphones", "phone" ]
6
6
CC BY-SA 2.5
[ { "creationDate": "2010-10-06T20:30:00.620", "id": "5382", "postId": "5282", "score": "0", "text": "good question. I'm not clear on what's the intended outcome here: does this mean you'd be able to use your computer headset simply connected to your android phone? And where does Ubuntu come into ...
null
[ { "accepted": null, "body": "<p>I know that some bluetooth devices will not connect with a phone I used to have. There seems to be some incompatibilities between different BT devices, and there is not much that could be done there. So far, Bluetooth was more trouble that it was worth it. I also had issues w...
null
null
null
null
null
5283
1
null
2010-10-06T20:36:34.167
1
574
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/897/how-can-i-make-fonts-look-good-in-ubuntu">How can I make fonts look good in Ubuntu?</a> </p> </blockquote> <p>I noticed on every install of Ubuntu, the font is softer than on Windows. Is this a setting somewhere?</p>
2608
-1
2017-04-12T07:23:19.023
2010-10-06T20:47:10.540
Is there a way to make text in the interface sharper like Windows?
[ "fonts" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-10-07T01:27:13.207", "id": "5406", "postId": "5283", "score": "0", "text": "Exact duplicate of that question, with slightly different wording but identical answers.", "userDisplayName": null, "userId": "188" } ]
null
[ { "accepted": null, "body": "<p>In System->Preferences->Appearance you can go to the Font tab and change the Hinting to get a different look. Don't remember which one is closest to Windows style but I believe it's full hinting.</p>\n", "commentCount": "1", "comments": [ { "creationDate...
null
null
2010-10-07T10:24:31.060
null
null
5284
1
842341
2010-10-06T20:41:45.170
6
18933
<p>I've seen several links suggesting it is possible to make a call from the command-line with skype. The instructions suggest something along the lines of:</p> <pre><code>skype --callto:+14445551234 </code></pre> <p>However, this gets me an error message, "skype: unrecognized option '--callto:+14445551234".</p> <p>Is this possible? </p> <p><strong>Use case scenario:</strong></p> <p>I want to call a particular number frequently.</p> <ul> <li>assuming skype client is already running and logged in.</li> <li>I create a shortcut on my desktop, which runs <code>skype --callto:+14445551234</code> or something similar.</li> <li>Double-click the shortcut.</li> <li>skype window pops up, immediately calling this number</li> </ul> <p>Can this be done?</p> <p>I know there is a Skype API. Can this be done from a normal skype installation on Ubuntu, without installing any developer tools?</p> <p><strong>EDIT: I am considering this question to be still open</strong>, because I would like to know if this is possible from a default installation of skype without any additional functionality.</p> <p>However, the answer below regarding "<a href="http://skype4py.sourceforge.net/doc/html/" rel="nofollow">Skype4Py</a>" does answer the desired outcome, albeit with an additional tool. I will mark this as the answer if another is not forthcoming in a few weeks.</p>
2383
2383
2010-10-13T20:04:44.810
2021-09-24T11:56:52.723
How to call a number from command-line with Skype?
[ "command-line", "python", "voip", "skype", "phone" ]
5
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Very simple:</p>\n\n<pre><code>$&gt; skype --help\n\nSkype 4.3.0.37\n\nUsage: skype [options]\nOptions:\n --dbpath=&lt;path&gt; Specify an alternative path to store Skype data files.\n Default: ~/.Skype\n --resources=&lt;path&gt; Specify a path where Skype can find its resource files.\n Default: /usr/share/skype\n --secondary Start a secondary instance of Skype.\n --disable-api Disable Skype Public API.\n --callto &lt;nick&gt;\n skype:&lt;nick&gt;?&lt;action&gt;\n [...]\n</code></pre>\n\n<p>Tested. It works. Not just with nicknames. Also with direct phone numbers:</p>\n\n<pre><code>$&gt; skype --callto +494030001234\n</code></pre>\n\n<p>( this means: OPs main mistake was a colon instead of a space... )</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2016-10-27T09:46:37.017", "id": "842341", "lastActivityDate": "2017-10-12T07:56:23.103", "lastEditDate": "2017-10-12T07:56:23.103", "lastEditorDisplayName": null, "lastEditorUserId": "507051", "ownerDisplayName": null, "ownerUserId": "479118", "parentId": "5284", "postTypeId": "2", "score": "8" }
[ { "accepted": null, "body": "<p>Yes, if you use Skype4Py.</p>\n\n<p>I've created a simple callto.py script based on examples/callfriend.py from Skype4Py. It takes a phone number or a friend name from the skype roster as an argument. It's only working if skype is already launched.</p>\n\n<p>Skype will ask yo...
null
null
null
null
null
5288
1
5368
2010-10-06T21:18:09.613
8
3411
<p>This is a silly, nitpicky little thing, but I have a laptop with a less-than-desirable amount of screen real estate, so it bothers me. I've added a bunch of application launchers to the default panel at the top of my screen (to the right of the Applications/Places/System menus.) The problem is, I can't seem to control the spacing of the icons - I have quite a bit of space available at the right of the panel, and I can drag each individual icon over, but it seems like each icon is attached to its neighbor to the right. So I move one over, and the next one comes with it. Then I move that one, and the one to it's left comes too. The end result is I have several clumps of very-closely-clustered icons, with a lot of space between each clump.</p> <p>Is there any way to control the spacing automatically? Snap to grid, auto-space, anything? Because my screen is tiny and resolution is pretty high, each icon is very small, and when they're so close together I sometimes end up clicking the wrong one.</p> <p>I'm running Lucid, and am open to installing things if there's a package that would give me more control over the presentation. I'm also relatively new to Linux, so maybe there's a setting I'm missing somewhere in one of the preferences menus.</p>
2664
235
2010-10-06T22:33:17.030
2010-10-10T06:12:37.583
How can I evenly space icons in the panel?
[ "panel" ]
4
1
CC BY-SA 2.5
[ { "creationDate": "2010-10-07T15:41:27.187", "id": "5425", "postId": "5288", "score": "3", "text": "Could you add a screenshot to better demonstrate the issue at hand?", "userDisplayName": null, "userId": "41" } ]
{ "accepted": true, "body": "<p>You might be happier giving avant window navigator a try instead of the gnome panel for your launchers. I believe the setting to expand to fill a side spaces out the icons like you want.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-08T19:05:45.693", "id": "5368", "lastActivityDate": "2010-10-08T19:05:45.693", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1138", "parentId": "5288", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>I can feel you on this one, it's bugged me quite frequently too. I'd say it's not really that nitpicky a thing. Arranging icons in a neat order - vista does it, XFCE does it, hell I think windows XP did it. Why not GNOME?</p>\n\n<p>But: so:</p>\n\n<p><strong>The semi-solution...
null
null
null
null
null
5290
1
5429
2010-10-06T22:23:45.863
3
363
<p>I have always been under the impression that all I need to do in order to reach the Windows machines on my network by their hostnames from Ubuntu was do add the '<strong>wins</strong>' option to the 'hosts' line in my <strong>/etc/nsswitch.conf</strong> file, but since I installed Maverick (from RC iso, new install) that doesn't work anymore.</p> <p>My system is currently configured with the following line:</p> <pre><code>hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4 wins </code></pre> <p>Any ideas?</p>
1546
235
2010-10-06T22:31:16.147
2010-10-21T18:09:38.693
How to reach a Windows machine by hostname?
[ "10.10", "networking", "windows" ]
1
3
CC BY-SA 2.5
[ { "creationDate": "2010-10-06T22:25:10.203", "id": "5391", "postId": "5290", "score": "0", "text": "What do you mean by access? Do you mean remote desktop, file sharing, etc?", "userDisplayName": null, "userId": "235" }, { "creationDate": "2010-10-06T22:27:10.683", "id": "539...
{ "accepted": true, "body": "<p>Sooo... It seems all I had to do was install the <em>winbind</em> package, contrary to some Google knowledge stating it's only needed for authentication.</p>\n\n<p>Maybe winbind was part of the standard desktop installation and dropped from the Maverick CD?</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-09T22:42:18.823", "id": "5429", "lastActivityDate": "2010-10-21T18:09:38.693", "lastEditDate": "2010-10-21T18:09:38.693", "lastEditorDisplayName": null, "lastEditorUserId": "1546", "ownerDisplayName": null, "ownerUserId": "1546", "parentId": "5290", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>Sooo... It seems all I had to do was install the <em>winbind</em> package, contrary to some Google knowledge stating it's only needed for authentication.</p>\n\n<p>Maybe winbind was part of the standard desktop installation and dropped from the Maverick CD?</p>\n", "comme...
null
null
null
null
null
5291
1
null
2010-10-06T22:32:53.797
4
9525
<p>When l look into Ubuntu's System Log Viewer (I think that's the name in English) the messages categories are blown up with 70000 lines and almost 12MB in size. It mixes up messages from May this year and recent messages from the last few days.</p> <p>How can I remove the old messages from May?</p>
2689
458
2010-10-07T08:32:29.713
2010-10-08T18:02:05.970
How can i remove old content from syslog in System Log Viewer?
[ "gnome" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>The packages <code>logrotate</code> and <code>rsyslog</code> together will set up your system for automatic archiving and aging the syslog files.</p>\n\n<p>There are plenty of options to the logrotate(8) command that will help you truncate the current mess and then the rest s...
null
null
null
null
null
5292
1
5293
2010-10-06T22:36:35.763
6
3548
<p>How do I play drm encrypted wmv files in Ubuntu? If it is possible, how do I do it. I've tried playing it with vlc and MPlayer media player but does not work. I am getting a scrambled picture when I play it through vlc.</p> <p>Any ideas?</p>
794
41
2010-10-07T00:48:59.780
2010-10-07T00:48:59.780
Playing drm encrypted wmv files in Linux
[ "multimedia" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The <strong><em>only</em></strong> way is through Windows Media Player. This leaves you with three options:</p>\n\n<ol>\n<li>Install Windows Media Player 11 on Wine.</li>\n<li>Install XP in virtualbox and Windows Media Player 11 on XP.</li>\n<li>Dual boot.</li>\n</ol>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-06T22:49:23.367", "id": "5293", "lastActivityDate": "2010-10-06T22:49:23.367", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "5292", "postTypeId": "2", "score": "7" }
[ { "accepted": true, "body": "<p>The <strong><em>only</em></strong> way is through Windows Media Player. This leaves you with three options:</p>\n\n<ol>\n<li>Install Windows Media Player 11 on Wine.</li>\n<li>Install XP in virtualbox and Windows Media Player 11 on XP.</li>\n<li>Dual boot.</li>\n</ol>\n", ...
null
null
null
null
null
5294
1
5327
2010-10-06T22:52:06.410
9
6405
<p>I'm used to this Windows behavior that using <kbd>CTRL+SHIFT+Cursor Keys</kbd> I can select text word-wise. <kbd>CTRL+Cursor Keys</kbd> jumps word-wise and I use that a lot in combination with <kbd>SHIFT</kbd> to select text.</p> <p>This seems to be a "Windows thing" because it just works in all application. Now turning to Ubuntu 10.04, it doesn't work. <kbd>CTRL+SHIFT+Cursor Keys</kbd> just behaves like <kbd>CTRL+Cursor Keys</kbd>, i.e. I jump between the <em>words</em> but I can't select them that way.</p> <p>Another gotcha: I use <kbd>CTRL+Cursor Keys</kbd> to move fast between words, press down <kbd>SHIFT</kbd>, release <kbd>CTRL</kbd> and move the <kbd>Cursor Keys</kbd> to select text char by char and it doesn't work either. I need to release both keys complete.</p> <p>Is there a way to enable this?</p>
2251
3037
2011-01-03T15:09:23.667
2018-06-25T10:18:53.097
Text selection CTRL+SHIFT+Cursor Keys?
[ "10.04", "shortcut-keys" ]
4
4
CC BY-SA 2.5
[ { "creationDate": "2010-10-06T23:13:45.307", "id": "5398", "postId": "5294", "score": "5", "text": "I'm not sure how you're having this problem - Ctrl+Shift+Left/Right cursor jumps text and highlights. What programs are you experiencing this issue in?", "userDisplayName": null, "userId":...
{ "accepted": true, "body": "<p>Found the problem: in Windows I use multiple keyboard layouts and I use <kbd>CTRL+SHIFT</kbd> to switch between them. I configured the same for Ubuntu however I'm experiencing a clash here obviously.</p>\n\n<p>That said, Windows is smarty enough to figure out by analyzing which keys I press over time what I want. Ubuntu isn't: once I pressed <kbd>CTRL+SHIFT</kbd>, not matter what additional keys, it switched the keyboard layout and for some reason this interrupted the selection option. Too bad.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-07T20:19:51.060", "id": "5327", "lastActivityDate": "2010-10-07T20:19:51.060", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2251", "parentId": "5294", "postTypeId": "2", "score": "7" }
[ { "accepted": true, "body": "<p>Found the problem: in Windows I use multiple keyboard layouts and I use <kbd>CTRL+SHIFT</kbd> to switch between them. I configured the same for Ubuntu however I'm experiencing a clash here obviously.</p>\n\n<p>That said, Windows is smarty enough to figure out by analyzing whi...
null
null
null
null
null
5295
1
5297
2010-10-06T23:18:48.183
4
206
<p>I am happy that <code>gconf-editor</code> exists, and is readily accessible (once you know about it), but it seems strange that there are two completely seperate places to customize an application's look and feel. </p> <p>I am quite new to Linux, and after two decades of Windows, this "new" paradigm sometimes leaves me feeling like a lost and wandering pilgrim... but I've come to realize that I don't need MS at all (almost; just one .NET app I need/want) ...and when I get mono installed in wine, I won't even need to run Windows in a VM :) ... but I actually get a perverse sense of happiness (or is it revenge) at seeing Windows as the "guest"... but I digress...</p> <p>In the meantime, I want to understand how <code>gnome</code> is put together.</p> <p>What is the general design intent of <code>gconf-editor"</code>?<br> Where/how does it fit into the <code>gnome</code> world?<br> Are <strong>all</strong> settings for a given app availble via <code>gconf-editor</code>?<br> Is <code>gconf-editor</code> conceptually any/much different to the Windows registry?</p> <p>Phew!...</p>
2670
2670
2010-10-07T00:16:10.950
2010-12-14T00:43:27.243
Which programs are tweakable in gconf-editor? and: What governs which ones end up there?
[ "gnome", "configuration", "settings" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>This is the <a href=\"http://projects.gnome.org/gconf/\" rel=\"nofollow noreferrer\">original document</a> for gconf. It's similar to the registry in that it's a centralized location for applications to store configuration information. Some apps abuse it and put data in there.</p>\n\n<p><a href=\"https://askubuntu.com/questions/17249/how-do-i-use-the-gconf-editor\"><code>gconf-editor</code></a> is just an application that shows you the keys and the values, it's not meant to be an end user tool. If an application is designed for GNOME you'll find it's configuration in there.</p>\n\n<p>Note that gconf will be superceded by <a href=\"http://live.gnome.org/dconf\" rel=\"nofollow noreferrer\">dconf</a> in GNOME 3.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-07T00:58:33.593", "id": "5405", "postId": "5297", "score": "1", "text": "Thanks Jorge... I feel like I'm back on track... It seems to me (now) that gconf-editor is a view (editable) into the underlying, full and complete set of persistant configuration data for any/all apps which use this system... and an application's Edit-->Settings dialog is simply a subset view (editable) of that same persistant data-base (but for that one specific app, only)...", "userDisplayName": null, "userId": "2670" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-07T00:20:32.633", "id": "5297", "lastActivityDate": "2010-12-14T00:43:27.243", "lastEditDate": "2017-04-13T12:24:17.760", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "235", "parentId": "5295", "postTypeId": "2", "score": "6" }
[ { "accepted": true, "body": "<p>This is the <a href=\"http://projects.gnome.org/gconf/\" rel=\"nofollow noreferrer\">original document</a> for gconf. It's similar to the registry in that it's a centralized location for applications to store configuration information. Some apps abuse it and put data in there...
null
null
null
null
null
5296
1
null
2010-10-06T23:41:22.873
5
43310
<p>I am battling to install Windows Media Player 11 on Wine. I have tried the following:</p> <ol> <li><p>Open a Terminal (Applications, Accessories, Terminal) and type "sudo apt-get install wine." This installs Wine Windows Emulator, a free application that allows you to run many Windows programs within Linux.</p></li> <li><p>Download Windows Media Player 11 for Windows XP (link in Resources) and save it to Ubuntu's desktop. Once downloaded, right-click and select "Open with Wine Windows Emulator." Follow the on-screen prompts for installing it to your system.</p></li> <li><p>Go to "Applications" then "Wine," select "Programs" and open "Windows Media Player." Click "File" then "Open" and locate a DRM file you want to play. Select "OK" to load it into Media Player.</p></li> </ol> <p>I installed Wine (Which is step 1).</p> <p>But I am having problems with step 2 (Download Windows Media Player 11 for Windows XP (link in Resources) and save it to Ubuntu's desktop). I'm just not finding a way to do it. </p> <p>I may be overlooking the (link in Resources) Can't find it. </p> <p>I am stuck!</p>
794
7035
2011-12-01T01:19:06.560
2016-10-16T18:47:16.910
How to Install Windows Media Player 11 on Wine
[ "wine" ]
5
5
CC BY-SA 3.0
[ { "creationDate": "2010-10-07T00:06:58.117", "id": "5401", "postId": "5296", "score": "0", "text": "Just out of interest what did you need thats in windows media player that's not supported by one of the many full featured native media players available for ubuntu?", "userDisplayName": null,...
null
[ { "accepted": null, "body": "<p>The only link I can find at the moment is through Microsoft. Unfortunately it requires you jump through the Windows Genuine Advantage nonsense so you either need a legit XP machine nearby (a VirtualBox install should do) or Google skills I don't have to find an alternative.</...
null
null
null
null
null
5298
1
5302
2010-10-07T03:36:25.193
2
1770
<p>Recently, I installed Ubuntu 10 Netbook edition (on my netbook, yes, obvious). My battery died literally, while I was using Ubuntu. </p> <p>Now, when I restart the computer, it seems that GRUB has duplicated all of the entries in the MBR that pertain to the partition that houses my Ubuntu install. For example:</p> <pre><code>Ubuntu ... Ubuntu ... (Recovery Mode) Ubuntu ... Ubuntu ... (Recovery Mode) Memtest ... Memtest ... Windows (Vista loader) Windows (Windows 7 starter loader) </code></pre> <p>When I try to access either of the two Ubuntu instances in the boot loader it presents me with an error akin to this: </p> <pre><code>...numbers... Kernel panic ... VFS unable to mount... </code></pre> <p>What I would like to do is:</p> <p>Wipe out grub, and Ubuntu, and then reinstall Ubuntu (I really only use it for emacs and ess for R so there's nothing in the home directory that I need to backup)</p> <p>How would I go about "resetting" my system? Or fixing the issue that I have. </p> <p>Thanks in advance! </p> <p>BEB</p>
2638
2638
2010-10-07T04:11:07.757
2012-03-29T13:48:24.657
GRUB Help and Reinstalling Ubuntu
[ "grub2", "dual-boot" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>It seems like there is some issue with loading the initrd: possibly\nthe GRUB configuration file is corrupt. If you want to try fixing\nyour existing install, I would try the following:</p>\n\n<ol>\n<li><p>Boot from live CD or USB stick (the Ubuntu Wiki has <a href=\"https://help.ubuntu.com/community/Installation/FromUSBStick\" rel=\"nofollow noreferrer\">instructions on how to prepare a bootable installation USB stick</a>)</p></li>\n<li><p>Re-install GRUB; some instructions are available in <a href=\"https://askubuntu.com/questions/5250/grub-boot-error-the-second-sector-of-stage-2-is-unknown\">this post</a>.</p></li>\n</ol>\n\n<p>However, if you don't have any valuable data on the disk, it may just\nbe simpler to reinstall: just use the Ubuntu Live CD or a <a href=\"https://help.ubuntu.com/community/Installation/FromUSBStick\" rel=\"nofollow noreferrer\">bootable\nUSB key</a>,\nwipe out your existing Linux partitions (using the \"Manual\npartitioning scheme\" in the installation; you can also let the installer\n\"Use whole disk for Ubuntu\" if you don't have Windows or other OSes on\nthe disk), and then proceeed installing as usual.</p>\n", "commentCount": "6", "comments": [ { "creationDate": "2010-10-07T13:02:55.140", "id": "5419", "postId": "5302", "score": "1", "text": "Thanks @Riccardo, I ended up rebooting from USB, deleting the partitions for the Ubuntu install, rebooting and reinstalling.", "userDisplayName": null, "userId": "2638" }, { "creationDate": "2010-10-09T05:10:35.490", "id": "5520", "postId": "5302", "score": "0", "text": "Riccardo, it's a dual boot system, if I let it use the whole disk - wouldn't it remove the Windows install?", "userDisplayName": null, "userId": "2638" }, { "creationDate": "2010-10-11T11:51:09.337", "id": "5916", "postId": "5302", "score": "0", "text": "@Brandon Yes, if you let it use the whole disk on a dual-boot system, it will also erase your Windows partitions. With the manual partition scheme you can select which partitions you want to use for Ubuntu (and mark them for re-formatting).", "userDisplayName": null, "userId": "325" }, { "creationDate": "2010-10-12T02:38:16.870", "id": "6194", "postId": "5302", "score": "0", "text": "Perhaps it would be a good idea to remove the recommendation to \"Use whole disk for Ubuntu\", I'm just thinking of the passerby who uses this part of the solution when they may not have intended to.", "userDisplayName": null, "userId": "2638" }, { "creationDate": "2010-10-12T05:49:17.097", "id": "6249", "postId": "5302", "score": "0", "text": "@Brandon I've reworded the sentence, adding a caveat. Do you think it suffices?", "userDisplayName": null, "userId": "325" }, { "creationDate": "2010-10-12T06:03:34.033", "id": "6256", "postId": "5302", "score": "0", "text": "Sure does, just wouldn't want a passerby to wipe out their windows install! Some of us still need it! :)", "userDisplayName": null, "userId": "2638" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-10-07T08:41:59.160", "id": "5302", "lastActivityDate": "2012-03-29T13:48:24.657", "lastEditDate": "2017-04-12T07:23:19.023", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "325", "parentId": "5298", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>It seems like there is some issue with loading the initrd: possibly\nthe GRUB configuration file is corrupt. If you want to try fixing\nyour existing install, I would try the following:</p>\n\n<ol>\n<li><p>Boot from live CD or USB stick (the Ubuntu Wiki has <a href=\"https:/...
null
null
null
null
null
5300
1
5301
2010-10-07T04:57:05.427
13
8547
<p>I've download <a href="http://tmux.sourceforge.net/">tmux</a> and am trying to install it on Ubuntu 10.04.</p> <pre><code>$ ./configure Configured for Linux $ make cc -DBUILD="\"1.3\"" -std=c99 -D_GNU_SOURCE -D_POSIX_SOURCE -iquote. -c -o attributes.o attributes.c In file included from attributes.c:23: tmux.h:30:19: error: event.h: No such file or directory In file included from attributes.c:23: tmux.h:831: error: field ‘name_timer’ has incomplete type tmux.h:1025: error: field ‘key_timer’ has incomplete type tmux.h:1086: error: field ‘event’ has incomplete type tmux.h:1102: error: field ‘repeat_timer’ has incomplete type tmux.h:1122: error: field ‘identify_timer’ has incomplete type tmux.h:1125: error: field ‘message_timer’ has incomplete type make: *** [attributes.o] Error 1 </code></pre>
2693
235
2012-08-09T19:59:39.723
2012-08-09T19:59:39.723
How to install tmux from source?
[ "command-line", "compiling" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>The error tells you that you lack the header file event.h, it's probably part of libevent.</p>\n\n<p>To be able to compile a program you will need to install all it's dependencies first (including headers, the -dev packages). In the tmux webpage they say that it depends on libevent and ncurses. So this command will likely install all that you need (not tested):</p>\n\n<pre><code>sudo apt-get install libevent-1.4 libevent-dev libncurses5-dev\n</code></pre>\n\n<p>But if you need to ask this you shouldn't probably be compiling things from source, unless you are doing it to learn, just for fun or just having a terrible day ;).</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-31T17:14:14.550", "id": "10839", "postId": "5301", "score": "6", "text": "Or, since it is in the archive already, you can just request to install the build-dependencies directly: `sudo apt-get build-dep tmux`", "userDisplayName": null, "userId": "721" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-07T07:02:51.387", "id": "5301", "lastActivityDate": "2010-10-07T13:57:11.070", "lastEditDate": "2010-10-07T13:57:11.070", "lastEditorDisplayName": null, "lastEditorUserId": "211", "ownerDisplayName": null, "ownerUserId": "211", "parentId": "5300", "postTypeId": "2", "score": "14" }
[ { "accepted": true, "body": "<p>The error tells you that you lack the header file event.h, it's probably part of libevent.</p>\n\n<p>To be able to compile a program you will need to install all it's dependencies first (including headers, the -dev packages). In the tmux webpage they say that it depends on li...
null
null
null
null
null
5304
1
29649
2010-10-07T09:21:08.147
36
14600
<p>Mono 2.8 was recently released boasting a couple of large performance improvements. It's far too late for it to make it into Maverick and I'm fairly inpatient.</p> <p>I don't use Mono for anything mission-critical (<em>just</em> playing music and sorting photos) and if it breaks everything related to Mono, I can probably either live with it or fix it. I'm aware of how much I stand to lose if I mess things up.</p> <p>So with that acknowledged, does anybody here know how to build Mono in a way where it could be dropped in to replace the current Mono (2.6.7)? By this I mean ideally mirroring the packages that Ubuntu uses so that if the worse does happen, I can just downgrade the packages.</p> <p>Or is there a PPA that does all this for me?</p>
449
449
2011-03-09T12:49:05.250
2012-11-25T00:48:22.063
Upgrading to latest stable Mono
[ "packaging", "mono" ]
9
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Download and install the <a href=\"http://sourceforge.net/projects/mono-parallel/files/mono-2.10.1-parallel-environment.deb/download\">mono-parallel 2.10 deb package</a>. </p>\n\n<p>After installing the deb file paste this in the terminal (Ctrl + Alt + T)</p>\n\n<pre><code>source mono-2.10-environment\n</code></pre>\n\n<p>After this your terminal will look like </p>\n\n<blockquote>\n <p>[mono] /var/dev/mono @</p>\n</blockquote>\n\n<p><a href=\"http://blog.fusonic.net/2010/10/mono-2-8-parallel-environment-debianubuntu-package/\">Source</a></p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-03-09T12:58:43.100", "id": "33048", "postId": "29649", "score": "1", "text": "Great late addition. Have some points.", "userDisplayName": null, "userId": "449" }, { "creationDate": "2012-11-02T18:27:10.637", "id": "262019", "postId": "29649", "score": "0", "text": "Great gun's WAYYYYYYY easier than trying to get the compile from source one working, I've had 4 attempts so far now, all result in \"You have a PARTIALLY INSTALLED.... IN /OPT/MONO...\", small problem though. The link given here is 64bit AMD only, anyone know if there is a i386 build (The server I'm trying to get this on is not an x64)", "userDisplayName": null, "userId": "104007" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-03-09T12:55:18.160", "id": "29649", "lastActivityDate": "2011-06-26T06:36:26.993", "lastEditDate": "2011-06-26T06:36:26.993", "lastEditorDisplayName": null, "lastEditorUserId": "5149", "ownerDisplayName": null, "ownerUserId": "5149", "parentId": "5304", "postTypeId": "2", "score": "15" }
[ { "accepted": null, "body": "<p>The place to go for a mono PPA is <a href=\"http://badgerports.org/\" rel=\"nofollow\">http://badgerports.org/</a> unfortunately it could be months before it will have mono 2.8</p>\n\n<p>Novell do not believe it is their responsibility to provide mono packages for ubuntu so t...
null
null
null
null
null
5306
1
5341
2010-10-07T10:42:56.857
5
808
<p>I've set up the <kbd>Super</kbd> key to open the main menu. It works. </p> <pre><code>gconftool-2 --set /apps/metacity/global_keybindings/panel_main_menu --type string "Super_L" </code></pre> <p>,<br> I have a shell script <code>super.sh</code> which injects a <kbd>Super</kbd> keypress into X. It works; the menu appears.</p> <pre><code>#!/bin/bash echo "KeyStrPress Super_L KeyStrRelease Super_L"| xmacroplay -d 1 :0.0 &amp;&gt; /dev/null </code></pre> <p>.<br> I use <code>xbindkeys</code> to associate <kbd>Alt</kbd>+<kbd>F1</kbd> with <code>super.sh</code>. It should work, but it doesn't! </p> <p>However, when I associate <kbd>Alt</kbd>+<kbd>F1</kbd> with <code>nautilus</code>, or make <code>nautilus</code> the only active command in the script, then <kbd>Alt</kbd>+<kbd>F1</kbd> successfully launches <code>nautilus</code>... so I am a bit puzzled about what's happening to the script. </p> <p>Any ideas, anybody?<br> If there is a another way, I'd like to know about it,<br> and I'd still like to resolve this macro-generated key-press issue.</p>
2670
17739
2011-10-28T18:10:04.083
2011-10-28T18:10:04.083
Can I set up two key-bindings to launch the Main Menu? ... specifically: Alt+F1 and Super
[ "panel", "shortcut-keys", "menu", "scripts" ]
1
5
CC BY-SA 3.0
[ { "creationDate": "2010-10-07T11:29:45.157", "id": "5416", "postId": "5306", "score": "0", "text": "is there anyway to capture the output of the script when launched via `Alt+F1`. Did you try changing the shortcut ? What method you have used to associate the Alt+F1 binding to the super.sh script...
{ "accepted": true, "body": "<p>I seem to have hit upon a solution with a caveat however. Details below.</p>\n\n<ol>\n<li>Use <code>gconftool-2</code> to set <code>/apps/metacity/global_keybindings/panel_main_menu</code> to <code>Super_L</code> (as you have mentioned in your question.</li>\n<li>Install xvkbd package via <code>sudo aptitude install xvkbd</code></li>\n<li>Use <code>ccsm</code> (System -> Preferences -> Compizconfig settings manager) to create a new command bound to <code>Alt+F1</code>. Against <code>Commands -&gt; Commands -&gt; Command 4</code> enter <code>xvkbd -text \"\\[Super_L]\"</code> and against <code>Commands -&gt; Keybindings -&gt; Run Command 4</code> select F1 as keybinding.</li>\n</ol>\n\n<p>This should work. It is almost completely copied from <a href=\"http://ubuntuforums.org/showpost.php?p=7947781&amp;postcount=11\" rel=\"nofollow\">this ubuntuforums post</a>.</p>\n\n<h1>Caution</h1>\n\n<p>When I tried this in my system, I found 1 very strange issue. The sytem started behaving as if the Alt key was permanently held (e.g., I could just press to switch between windows). I am not sure this is because I had earlier invoked xvkbd to simulate some Alt key presses. If you face this problem, the only option I found to make the system usable again was to follow below steps.</p>\n\n<ol>\n<li><p>Drop to a terminal by pressing <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>F1</kbd></p></li>\n<li><p>Login with your user name &amp; password</p></li>\n<li><p>Force logout and restart of X by running below command.</p>\n\n<pre><code>sudo restart gdm\n</code></pre></li>\n</ol>\n\n<p>If the problem persists after login also, then you can use the following command to reset the mapping of Super_L to panel_main_menu (back to defauly Alt+F1)\n gconftool --unset /apps/metacity/global_keybindings/panel_main_menu</p>\n", "commentCount": "5", "comments": [ { "creationDate": "2010-10-08T12:21:28.497", "id": "5470", "postId": "5341", "score": "0", "text": "Wow! What a great answer. What a great effort, but unfortunatley I got the same result as before.. nothing :( ... I didn't get that lock-up with xvkbd (but I did in some of my original tests)... I'll definitely be keeping 'sudo restart gdm' in my notes... good one! ... For now, I'll just live with only the Super key for a while, but I saw somewhere that there is a Python lib for sending general X messages...That may well do the trick... Thanks again.", "userDisplayName": null, "userId": "2670" }, { "creationDate": "2010-10-08T12:35:08.543", "id": "5472", "postId": "5341", "score": "1", "text": "PS. I wonder if there is some completely different way to do this. I am fascinated by the macro method of one key kicking off another one, but perhaps there is a some other way; something as simple as (dare I say it) as Windows shortcuts... eg. Is there an actual \"command\" to invoke to display the menu, or is this action only bindable via the config setting? .. If there is a command, then it should be straight forward.", "userDisplayName": null, "userId": "2670" }, { "creationDate": "2010-10-08T14:08:24.077", "id": "5475", "postId": "5341", "score": "0", "text": "Unfortunate that this doesn't work. I think we are pretty close. I think your need is fair and someday I might want to do something similar. Hopefully, like you said, there is some other method that enables this.", "userDisplayName": null, "userId": "270" }, { "creationDate": "2010-10-11T05:08:33.990", "id": "5865", "postId": "5341", "score": "1", "text": "There is something called [gnome-main-menu](https://launchpad.net/gnome-main-menu) (install -> http://apt.ubuntu.com/p/gnome-main-menu) which provides another menu on the panel. More interestingly, it has a command called `application-browser` which brings up another interface to search and launch applications. Maybe you could try that. By default, the executables from this package are installed at `/usr/lib/gnome-main-menu` which is not in the path. So if you'd like to bind a keyboard shortcut, take care to specify full path (like `/usr/lib/gnome-main-menu/application-browser`).", "userDisplayName": null, "userId": "270" }, { "creationDate": "2010-10-16T19:23:30.677", "id": "7605", "postId": "5341", "score": "0", "text": "Enabling the ctrl-alt-backspace shortcut to restart X is handy to avoid the dance under \"caution\".", "userDisplayName": "Roger Pate", "userId": null } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-08T06:38:43.297", "id": "5341", "lastActivityDate": "2010-10-08T14:48:59.893", "lastEditDate": "2010-10-08T14:48:59.893", "lastEditorDisplayName": null, "lastEditorUserId": "270", "ownerDisplayName": null, "ownerUserId": "270", "parentId": "5306", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>I seem to have hit upon a solution with a caveat however. Details below.</p>\n\n<ol>\n<li>Use <code>gconftool-2</code> to set <code>/apps/metacity/global_keybindings/panel_main_menu</code> to <code>Super_L</code> (as you have mentioned in your question.</li>\n<li>Install xvkb...
null
null
null
null
null
5310
1
null
2010-10-07T11:58:48.307
3
9879
<p>I have an external bluetooth adapter, it works if I attach it before booting, but if I connect it afterwards it fails to detect any device.</p> <p>Is there any command to scan for and detect devices?</p>
2501
1067
2011-03-08T15:57:14.633
2020-10-04T21:58:34.177
How to detect Bluetooth, without rebooting
[ "command-line", "bluetooth" ]
3
3
CC BY-SA 2.5
[ { "creationDate": "2010-10-07T14:45:09.577", "id": "5424", "postId": "5310", "score": "0", "text": "how do you connect this device ? via usb ? in other words, is this a usb bluetooth adapter that doesn't get enabled if you plugin after booting ?", "userDisplayName": null, "userId": "270"...
null
[ { "accepted": null, "body": "<p>Can you try restarting the init.d service?</p>\n\n<pre><code>:~$ sudo /etc/init.d/bluetooth restart\n</code></pre>\n\n<p>Executing this command after you connect your usb bluetooth adapter should restart the service and make the bluetooth service recognize new connections/ada...
null
null
null
null
null
5311
1
5312
2010-10-07T13:45:05.920
3
569
<p>I've been looking without much success for a good Linux multi monitor wallpaper switcher. (Doesn't mean my search technique isn't fundamentally flawed) Regardless, would appreciate any suggestions/referrals.</p> <p>To provide some additional perspective, I'm mainly looking for the linux equivalent of <a href="http://johnsadventures.com/software/backgroundswitcher/" rel="nofollow">John's Background Switcher</a>.</p>
2367
78626
2012-07-25T21:11:50.023
2013-07-12T14:39:07.233
Looking for a multi-monitor wallpaper switcher
[ "software-recommendation", "desktop-background" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>I have used this one before it pretty decent, allows you to do a couple of other things as well, workspace specific backgrounds and time elapsed changes too!</p>\n\n<p><a href=\"http://wallpapoz.akbarhome.com/index.html\" rel=\"nofollow\">http://wallpapoz.akbarhome.com/index.html</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-07T14:55:33.900", "id": "5312", "lastActivityDate": "2010-10-07T14:55:33.900", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "333", "parentId": "5311", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>I have used this one before it pretty decent, allows you to do a couple of other things as well, workspace specific backgrounds and time elapsed changes too!</p>\n\n<p><a href=\"http://wallpapoz.akbarhome.com/index.html\" rel=\"nofollow\">http://wallpapoz.akbarhome.com/index....
null
null
null
null
null
5313
1
5796
2010-10-07T15:11:24.280
4
2243
<p>I'm trying to make emacs span two screens but the size is automatically resized to a single screen. I'm running a NVidia card in TwinView, with Ubuntu 10.04. I'm having this problem with other programs also. </p>
1157
null
null
2010-10-10T22:24:58.610
How to make a single program span two monitors when in TwinView
[ "10.04", "nvidia", "multiple-monitors" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-10-10T22:43:14.080", "id": "5805", "postId": "5313", "score": "1", "text": "Multimonitor setups on Ubuntu with nVidia cards, ohh the pain :(", "userDisplayName": null, "userId": "1938" } ]
{ "accepted": true, "body": "<p>I have the same setup. I have found three ways, none of which are ideal.</p>\n\n<ol>\n<li><p>Disable compiz and use metacity instead.</p></li>\n<li><p>You can add the following lines to the \"Screen\" section of your xorg.conf file to treat both monitors as one big display:<br/><br/><code>\nOption \"Xinerama\" \"1\"<br/>\nOption \"NoTwinViewXineramaInfo\" \"True\"\n</code><br/><br/>\nAfter you log out and log back in, your monitors will act as one screen. Note that you will get some unexpected behavior such as your gnome-panels spanning both monitors and you will also lose the ability to maximize on just one monitor.</p></li>\n<li><p>This one seems like a bug. Drag the window all the way to the left (or right depending on your setup) with the majority of the window off the screen. Grab the visible edge of the window and stretch it out across both monitors. Leave as much empty space as you dragged off screen. Now drag it back so it's fully on both screens. It seems like at least half the window must be off the screen for this trick to work.</p></li>\n</ol>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-11T19:30:35.767", "id": "6036", "postId": "5796", "score": "0", "text": "Thanks I'll give this a shot after I achieve stability on my new machine.", "userDisplayName": null, "userId": "1157" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-10T22:24:58.610", "id": "5796", "lastActivityDate": "2010-10-10T22:24:58.610", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2527", "parentId": "5313", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>This may be a simplistic suggestion (and you've probably thought of it), but can you just drag the emacs window so that it overlaps both screens and then drag-resize the window to the outside edges of your screens? You would have to keep it in windowed mode, of course (i.e., ...
null
null
null
null
null
5314
1
null
2010-10-07T16:05:10.410
11
7540
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/4662/where-is-the-x-org-config-file-how-do-i-configure-x-there">Where is the X.org config file? How do I configure X there?</a> </p> </blockquote> <p>Where is the xorg.conf file in <strong>Ubuntu 10.04</strong>?</p> <p>I couldn't find it in <code>/etc/X11/xorg.conf</code></p>
2679
-1
2017-04-13T12:23:56.057
2014-03-29T02:48:58.203
Where is /etc/X11/xorg.conf?
[ "xorg" ]
0
0
CC BY-SA 2.5
[]
null
[]
null
null
2011-06-05T19:27:20.640
null
null
5319
1
5607
2010-10-07T17:34:44.667
3
5411
<p>I tried to change the resolution using the following commands (found <a href="https://wiki.ubuntu.com/X/Config/Resolution" rel="nofollow">here</a>):</p> <p>Use <code>xrandr</code> to check the current configuration and available modes:</p> <pre><code>$ xrandr Screen 0: minimum 64 x 64, current 800 x 600, maximum 32000 x 32000 VBOX1 connected 800x600+0+0 0mm x 0mm 800x600 60.0*+ 640x480 59.9 </code></pre> <p>Use <code>cvt</code> to get the proper modeline for 1280x800:</p> <pre><code>$ cvt 1280 800 # 1280x800 59.81 Hz (CVT 1.02MA) hsync: 49.70 kHz; pclk: 83.50 MHz Modeline "1280x800_60.00" 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync </code></pre> <p>Create the new mode using <code>xrandr --newmode</code>:</p> <pre><code>$ xrandr --newmode "1280x800_60.00" 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync </code></pre> <p>Use <code>xrandr</code> again to check that the mode was created successfully:</p> <pre><code>$ xrandr Screen 0: minimum 64 x 64, current 800 x 600, maximum 32000 x 32000 VBOX1 connected 800x600+0+0 0mm x 0mm 800x600 60.0*+ 640x480 59.9 1280x800_60.00 (0x11a) 83.0MHz h: width 1280 start 1352 end 1480 total 1680 skew 0 clock 49.4KHz v: height 800 start 803 end 809 total 831 clock 59.5Hz </code></pre> <p>However, when I try to add the new mode to the display with <code>xrandr --addmode</code> I get the following error:</p> <pre><code>$ xrandr --addmode VBOX1 1280x800_60.00 X Error of failed request: BadMatch (invalid parameter attributes) Major opcode of failed request: 150 (RANDR) Minor opcode of failed request: 18 (RRAddOutputMode) Serial number of failed request: 18 Current serial number in output stream: 19 </code></pre> <p>Of course, if I try to set the new resolution for my current display it fails (the mode isn't associated to te display):</p> <pre><code>$ xrandr --output VBOX1 --mode 1280x800_60.00 xrandr: cannot find mode 1280x800_60.00 </code></pre>
2679
null
null
2012-08-09T12:20:08.787
Problem changing resolution using xrandr: BadMatch
[ "10.04", "configuration", "xrandr" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Seems that you're trying within VirtualBox. If it's the case, just install VirtualBox Guest Addition, you can get any resolution (by resizing the VirtualBox window)</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-11T13:57:59.717", "id": "5940", "postId": "5607", "score": "0", "text": "Thanks, I had installed the Gust Additions but Ubuntu still only showed me 800x600 and 640x480. I thought that Ubuntu would show me bigger resolutions options and resize the vbox window according to the resolution selected.... and not the other way arround: resizing the vbox window would allow me to select bigger resolutions.", "userDisplayName": null, "userId": "2679" } ], "communityOwnedDate": "2010-10-10T11:59:02.330", "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-10T11:59:02.330", "id": "5607", "lastActivityDate": "2010-10-10T11:59:02.330", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": "Nguyễn Hồng Quân", "ownerUserId": null, "parentId": "5319", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>Seems that you're trying within VirtualBox. If it's the case, just install VirtualBox Guest Addition, you can get any resolution (by resizing the VirtualBox window)</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-11T13:57:59.717", ...
null
null
null
null
null
5320
1
5321
2010-10-07T17:53:57.090
9
1062
<p>I've noticed on the Desktop version when typing commands like <code>sudo apt-get install mysq</code> I can tab complete like when resolving file paths. However in the server edition this does not happen. Is there a package I need for this, or a configuration file to make this happen?</p>
41
null
null
2010-10-12T01:50:41.323
Tab completion for commands
[ "10.04", "server", "command-line" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>That's strange, maybe package <a href=\"http://packages.ubuntu.com/lucid/bash-completion\" rel=\"nofollow\">bash-completion</a> is what you're looking for?</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-07T17:59:38.413", "id": "5321", "lastActivityDate": "2010-10-07T17:59:38.413", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "5", "parentId": "5320", "postTypeId": "2", "score": "11" }
[ { "accepted": true, "body": "<p>That's strange, maybe package <a href=\"http://packages.ubuntu.com/lucid/bash-completion\" rel=\"nofollow\">bash-completion</a> is what you're looking for?</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5...
null
null
null
null
null
5322
1
null
2010-10-07T18:58:06.437
2
745
<p>I'm trying to install Django on a machine that is primarily a network administration box; it has nagios and cacti installed on it. I went in today to install Django, and when I followed the following instruction I got weird results:</p> <pre><code>sudo apt-get install apache2 libapache2-mod-python </code></pre> <p>Told me it was freeing 77 MB worth of files. I should have taken more notice and stopped, but I assumed if apt-get wanted to do it, that it was probably OK. The next thing I see however is an ncurses based app explaining that we were now removing cacti. I hit ctrl-z, as I don't want to remove cacti. Now my system seems to be in a bit of a weird state (though cacti is still OK). For example:</p> <pre><code>me@mysystem:~$ sudo dpkg -l|grep -v "ii" Desired=Unknown/Install/Remove/Purge/Hold | Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) ||/ Name Version Description +++-===============================-===============================-============================================ rF cacti 0.8.7e-2 Frontend to rrdtool for monitoring systems a rc cacti-spine 0.8.7e-2build1 Multi-Threading poller for cacti rc libgd2-noxpm 2.0.36~rc1~dfsg-3.1ubuntu1 GD Graphics Library version 2 (without XPM s </code></pre> <p></p> <p>Also, I'm seeing lots of these errors now (as expected, I suppose):</p> <pre><code>E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable) E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it? </code></pre> <p>What's my best next step? I don't want to lose my cacti config for sure. What's the best way to go about cleaning up this system?</p>
1201
235
2010-10-07T19:09:14.570
2010-10-07T19:26:33.060
Installing libapache2-mod-python removes cacti
[ "server", "package-management" ]
1
3
CC BY-SA 2.5
[ { "creationDate": "2010-10-07T19:08:50.887", "id": "5434", "postId": "5322", "score": "0", "text": "You shouldn't loose the configuration file unless you run `apt-get purge [package]`", "userDisplayName": null, "userId": "41" }, { "creationDate": "2010-10-07T19:11:37.027", "i...
null
[ { "accepted": null, "body": "<p>If I'm reading that correctly, the first step would be <code> dpkg-reconfigure cacti</code>.</p>\n\n<p>This may or may not work- I'm assuming the configs somehow got munched during the install.</p>\n\n<p>I just installed libapache2-mod-python on this machine and did <code> ap...
null
null
null
null
null
5324
1
null
2010-10-07T19:27:33.323
58
35819
<p>I'm looking for something to easily measure the height/width of items on screen in pixels.</p>
2701
72216
2019-01-09T11:29:22.690
2019-01-09T11:29:22.690
How do I measure the size of an area?
[ "software-recommendation", "design" ]
3
2
CC BY-SA 4.0
[ { "creationDate": "2013-07-15T02:54:02.737", "id": "406248", "postId": "5324", "score": "0", "text": "Hi @Craig , if some of the answers provided solved your needs, could you please mark it as accepted?", "userDisplayName": null, "userId": "173578" }, { "creationDate": "2015-02-1...
null
[ { "accepted": null, "body": "<p>There are two packages in the repositories:</p>\n<ul>\n<li><p><a href=\"http://manpages.ubuntu.com/manpages/lucid/man1/screenruler.1.html\" rel=\"noreferrer\">Screen ruler</a></p>\n<p><code>sudo apt-get install screenruler</code></p>\n</li>\n<li><p><a href=\"http://manpages.u...
null
null
2019-01-14T11:51:03.567
null
null
5325
1
5340
2010-10-07T19:42:23.543
3
1603
<p>I hope this question is appropriate for this forum. I have an embarrassing problem. After trying to get Ekiga-Softfon running I suddenly have no sound anymore at all. But I can't tell how I caused this problem anymore.</p> <p>Below I have collected some relevant information:</p> <pre> lsb_release -d Description: Ubuntu 10.04.1 LTS uname -r 2.6.32-25-generic cat /proc/asound/cards 0 [ICH6 ]: ICH4 - Intel ICH6 Intel ICH6 with STAC9752,53 at irq 16 aplay -l **** Liste der Hardware-Geräte (PLAYBACK) **** Karte 0: ICH6 [Intel ICH6], Gerät 0: Intel ICH [Intel ICH6] Sub-Geräte: 1/1 Sub-Gerät #0: subdevice #0 Karte 0: ICH6 [Intel ICH6], Gerät 4: Intel ICH - IEC958 [Intel ICH6 - IEC958] Sub-Geräte: 1/1 Sub-Gerät #0: subdevice #0 aplay /usr/share/sounds/alsa/Noise.wav Wiedergabe: WAVE '/usr/share/sounds/alsa/Noise.wav' : Signed 16 bit Little Endian, Rate: 48000 Hz, mono lspci -nnk | grep -iA2 audio 00:1e.2 Multimedia audio controller [0401]: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Audio Controller [8086:266e] (rev 03) Kernel driver in use: Intel ICH Kernel modules: snd-intel8x0 ps -C esd PID TTY TIME CMD ps -C arts PID TTY TIME CMD ps -C pulseaudio PID TTY TIME CMD 1239 ? 00:00:00 pulseaudio grep "^audio" /etc/group | grep "$USER" | wc -l 1 lsmod | grep "snd" snd_intel8x0 25588 1 snd_ac97_codec 100646 1 snd_intel8x0 ac97_bus 1002 1 snd_ac97_codec snd_pcm_oss 35308 0 snd_mixer_oss 13746 1 snd_pcm_oss snd_pcm 70694 3 snd_intel8x0,snd_ac97_codec,snd_pcm_oss snd_seq_dummy 1338 0 snd_seq_oss 26726 0 snd_seq_midi 4557 0 snd_rawmidi 19056 1 snd_seq_midi snd_seq_midi_event 6003 2 snd_seq_oss,snd_seq_midi snd_seq 47263 6 snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_seq_midi_event snd_timer 19098 2 snd_pcm,snd_seq snd_seq_device 5700 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_rawmidi,snd_seq snd 54148 12 snd_intel8x0,snd_ac97_codec,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_seq_oss,snd_rawmidi,snd_seq,snd_timer,snd_seq_device soundcore 6620 1 snd snd_page_alloc 7076 2 snd_intel8x0,snd_pcm head -n 3 /proc/asound/card0/codec#0 head: „/proc/asound/card0/codec#0“ kann nicht zum Lesen geöffnet werden: No such file or directory head -n 3 /proc/asound/card0/codec97#0/ac97#0-0 0-0/0: SigmaTel STAC9752,53 PCI Subsys Vendor: 0x1028 head -n 3 /proc/asound/card0/codec97#0/ac97#0-0+regs 0:00 = 6a90 0:02 = 0000 0:04 = 0000 asoundconf list asoundconf: Befehl nicht gefunden cat ~/.asoundrc pcm.pulse { type pulse } ctl.pulse { type pulse } cat ~/.asoundrc.asoundconf cat: /home/rasmus/.asoundrc.asoundconf: No such file or directory </pre> <p>There are some bits of German: "Befehl nicht gefunden" means "command not found", "kann nicht zum Lesen geöffnet werden" means "cannot be opened for reading".</p> <p>I'd appreciate any help.</p>
1144
6005
2011-12-14T01:50:09.817
2011-12-14T01:50:09.817
Why do I have no sound anymore?
[ "10.04", "sound" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-10-07T19:42:54.480", "id": "5436", "postId": "5325", "score": "0", "text": "Also asked at http://forum.ubuntuusers.de/topic/ploetzlich-kein-sound-mehr-21/.", "userDisplayName": null, "userId": "1144" }, { "creationDate": "2010-10-09T12:57:01.963", "id"...
{ "accepted": true, "body": "<p>Yeah, I agree with koanhead. Double check your hardware, try rebooting of course and check alsamixer. You can just type in \"alsamixer\" in the terminal and check all the settings. There's also a graphical front end available from the software center. You should be able to find it by searching for \"alsamixer\" in the software center.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-09T09:42:15.470", "id": "5525", "postId": "5340", "score": "0", "text": "Thanks to both of you. If had messed up the hardware settings. Problem solved.", "userDisplayName": null, "userId": "1144" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-08T06:25:29.180", "id": "5340", "lastActivityDate": "2010-10-08T06:25:29.180", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "541", "parentId": "5325", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>I don't see anything in those listings that would cause such a problem so far as I can see. </p>\n\n<p>However, just to be complete, let me ask: Did you check your mixer settings? Nothing is muted?</p>\n\n<p>Do you have a Live CD handy with which to test the audio? My audio r...
null
null
null
null
null
5331
1
null
2010-10-08T02:07:12.170
0
237
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/9/how-do-i-enable-automatic-updates">How do I enable automatic updates?</a> </p> </blockquote> <p>My Aunt and Uncle asked me to setup a Ubuntu machine for them, but here's the problem; they live 200 miles away, and are VERY computer illiterate. </p> <p>So, my question is; how do I set the update system to be fully automatic? (IE: download and install the updates by itself) I know it's bad practice, but the altnertive is a diffrent distro or a lot of phone calls and fuel usage :/</p>
2442
-1
2017-04-12T07:23:19.023
2010-10-08T02:53:18.880
How to automate updates?
[ "update-manager" ]
0
0
CC BY-SA 2.5
[]
null
[]
null
0
2010-10-08T02:56:29.923
null
null
5335
1
5337
2010-10-08T04:12:57.057
18
6691
<p>Well the question says most of it... </p> <p>Gparted reports the used space as 4.86 GB<br> Nautilus reports used space as 15.1 GB...(via Properties of /media/U_0298_data)</p> <p>Why is this space <strong>used</strong>? and who is reporting the correct figure? (...if either)<br> Is this related to the <strong>Trash</strong>?</p> <p>PS. It is the only partition, and is using the entire drive space.</p>
2670
2670
2010-10-08T05:05:38.933
2011-09-27T16:13:29.273
Why is there 4.86(maybe 15.1) GB of USED-space on a newly partitioned and formatted 298 GB drive (as ext4 by Gparted)
[ "partitioning", "format" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Gparted, that use mkfs.ext4 to create a ext4 filesystem, reserves 5% of the space for super-user, as explained in man page:</p>\n\n<pre><code>-m reserved-blocks-percentage\n Specify the percentage of the filesystem blocks reserved for the super-user. This \n avoids fragmentation, and allows root-owned daemons, such as syslogd(8), to continue to \n function correctly after non-privileged processes are prevented from writing to the \n filesystem. The default percentage is 5%.\n</code></pre>\n\n<p>Now, 5% of about 300GB is just the 15GB you see already used.</p>\n\n<p>More interesting, you can avoid this if you feel do not need it, simply creating the filesystem with, for example, </p>\n\n<pre><code>sudo mkfs.ext4 -m 0 /dev/sda1\n</code></pre>\n\n<p>where 0 means 0%.</p>\n\n<p>I think Gparted see more space because is run by super-user, so part of that 15GB are free for him. Nautilus is run by the user, so the space is less.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-10-08T07:54:20.143", "id": "5467", "postId": "5337", "score": "1", "text": "Grazie mille...", "userDisplayName": null, "userId": "2670" }, { "creationDate": "2010-10-08T15:10:03.403", "id": "5480", "postId": "5337", "score": "10", "text": "You can also reset the reserved percentage after you create the filesystem with tune2fs. The syntax is essentially the same: `sudo tune2fs -m 0 /dev/sda1`.", "userDisplayName": null, "userId": "30" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-08T05:42:28.710", "id": "5337", "lastActivityDate": "2010-10-08T05:48:23.430", "lastEditDate": "2010-10-08T05:48:23.430", "lastEditorDisplayName": null, "lastEditorUserId": "2647", "ownerDisplayName": null, "ownerUserId": "2647", "parentId": "5335", "postTypeId": "2", "score": "24" }
[ { "accepted": null, "body": "<p>There are different ways of counting space on a filesystem ranging from bytes not in use to free clusters, etc. In the absence of better information, I'd take gparted's report as more \"accurate\".</p>\n\n<p>Filesystems require overhead for i-tables, free lists, superblocks, ...
null
null
null
null
null