Most Popular

1500 questions
167
votes
6 answers

Invoking vi through find | xargs breaks my terminal. Why?

When invoking vim through find | xargs, like this: find . -name "*.txt" | xargs vim you get a warning about Input is not from a terminal and a terminal with pretty much broken behaviour afterwards. Why is that? This question was explicitly about…
DevSolar
  • 4,490
167
votes
14 answers

VT-x is not available, but is enabled in BIOS

Recently I started having an issue with VT-x on my Windows 10 running on HP EliteBook. I was using Oracle VirtualBox to run some VMs on it before and VT-x was enabled in BIOS and was working fine. I started getting VT-x is not available error every…
166
votes
9 answers

How to delete a keyboard layout in Windows 10

I installed Windows 10 on a physically German keyboard, then installed a Window English software keyboard and bought some little stickers to make my keyboard look OK. However, Windows shows 2 keyboards installed & occasionally toggles back to…
166
votes
7 answers

No USB devices available in VirtualBox

Oracle VirtualBox is unable to list/filter the USB devices attached to my system. As a result, the guest OS is not able to see any USB device either. This is my configuration: Host: VirtualBox 5.0.0 r101573 on Ubuntu 14.04, with Oracle…
mguassa
  • 1,874
166
votes
4 answers

How to match digits followed by a dot using sed?

I'm trying to use sed to substitute all the patterns with digits followed immediately by a dot (such as 3., 355.) by an empty string. So I try: sed 's/\d+\.//g' file.txt But it doesn't work. Why is that?
Mika H.
  • 1,849
166
votes
7 answers

How to prevent VLC from automatically resizing its window according to viewed content resolution?

In a case of mine a very high (compared to the video stream) resolution graphical frame (saying "access denied" (when my IP changes)) can appear instead of a video stream, which makes VLC window to resize, getting bigger than my screen is. This…
Ivan
  • 7,513
166
votes
6 answers

What is the difference between an Intel i7 and a Xeon quad core processor?

I know the Xeon processors have been around for a long time and are mostly used in servers, but I am curious, why do people not use the Xeons in a high performance desktop? As far as I know about the best desktop processor out there now is the…
JasonDavis
  • 5,042
166
votes
4 answers

How to use spaces in a bash alias name?

I am trying to create an aliases in bash. What I want to do is map ls -la to ls -la | more In my .bashrc file this is what I attempted: alias 'ls -la'='ls -la | more' However it does not work because (I assume) it has spaces in the alias name. Is…
166
votes
6 answers

How can I create a symbolic link on Windows 10?

I was reading http://web.archive.org/web/20160820000804/https://www.dropboxwiki.com/tips-and-tricks/sync-game-saves-across-multiple-computers, and I know junction/mklink worked in Windows 7 as well, but it seems like the junction command has been…
red
  • 1,958
165
votes
4 answers

What's the difference between `docker stop` and `docker kill`?

What's the difference between docker stop and docker kill? As far as I know, both will stop a running container. Is it that docker stop attempts to stop the process run inside the container in the correct way, while docker kill will send a kill…
Geert-Jan
  • 1,793
165
votes
17 answers

How do I synchronise two folders in real-time in Windows 7?

I want to synchronise two folders in real time under Windows 7. Basically, I want to monitor a folder and synchronise each change (new files, changed files, deleted files) to another drive. It has to be in real time, so it gets synchronised…
acme
  • 621
165
votes
2 answers

What is a "Magic Packet" for waking a computer?

My wireless adapter (Intel Dual Band Wireless-N 7260) has two settings in Device Manager which I cannot explain. Wake on Magic Packet Wake on Pattern Match After a bit of research, I found this Microsoft Technet article which defines the feature…
AlainD
  • 4,695
  • 16
  • 55
  • 105
164
votes
1 answer

Why are there no odd Windows process IDs?

There are many ways to examine process IDs in Windows. For example, using the PowerShell command: ps | select Id, ProcessName | Sort Id | ft -AutoSize We see the following output: Id ProcessName -- ----------- 0 Idle …
164
votes
11 answers

How to disable Chrome extensions without disabling them across multiple synced devices

I use Chrome across 4 different workstations and I have my extensions synced across all of them. The problem I have is that one of the extensions (Gestures for Chrome) works great if you've got an actual mouse, but on a trackpad on Ubuntu, it just…
growse
  • 2,661
164
votes
16 answers

How can I read my hard drive’s SMART status in Windows 7?

How can I read the S.M.A.R.T. state of my HDDs while using Windows 7, either automatically or manually?