Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for dmesg (0.01 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/vagrant/VagrantShellTask.java

                    });
                } catch (Exception e) {
                    /*getLogger().error("Failed command, dumping dmesg", e);
                    service.execute(spec -> {
                        spec.setCommand("ssh");
                        spec.setArgs("--command", "dmesg");
                        spec.setProgressHandler(line -> {
                            getLogger().error(line);
                            return null;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 4.3K bytes
    - Click Count (0)
  2. Vagrantfile

      # http://foo-o-rama.com/vagrant--stdin-is-not-a-tty--fix.html
      config.vm.provision 'fix-no-tty', type: 'shell' do |s|
          s.privileged = false
          s.inline = "sudo sed -i '/tty/!s/mesg n/tty -s \\&\\& mesg n/' /root/.profile"
      end
      extra_with_lintian = <<-SHELL
        #{extra}
        install lintian
      SHELL
      linux_common(
        config,
        name,
        update_command: 'apt-get update',
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Feb 17 17:41:23 GMT 2021
    - 14.9K bytes
    - Click Count (0)
Back to Top