Search:

Type: Posts; User: rollercoaster

Search: Search took 0.00 seconds.

  1. Install Guest Additions.

    Install Guest Additions.
  2. Replies
    2
    Views
    3,707

    ifconfig is long gone. Use 'ip' instead.

    ifconfig is long gone. Use 'ip' instead.
  3. So the setup went successful? Are you able to...

    So the setup went successful? Are you able to login as root via terminal? If so, that is already a good indication.
  4. Looks like you have some missing packages. Can...

    Looks like you have some missing packages. Can you post the output of this:

    dpkg -l | grep '\<\(accountsservice\|xserver-xorg-video-intel\|lightdm\)\>'

    if you don't see them, install them.
  5. Read a bit about losetup and kpartx. And because...

    Read a bit about losetup and kpartx. And because some images are compressed, you might as well add bzip2/bunzip2, gzip into your reading collections.
  6. Log in to console, then post the output of: ...

    Log in to console, then post the output of:

    systemctl status display-manager

    /var/log/Xorg.0.log
  7. Replies
    2
    Views
    1,453

    If the checksum listed on Kali's website didn't...

    If the checksum listed on Kali's website didn't match, discard the ISO and grab a new one. Don't install it.
  8. If you are able to login via commandline, that is...

    If you are able to login via commandline, that is already a good indication. Perhaps it's just your display-manager not being able to start up. Possibly due to missing X drivers like video card,...
  9. Possibly your system requires kernel headers to...

    Possibly your system requires kernel headers to build modules. You can google on that.
  10. Replies
    2
    Views
    919

    Create a compressed tarball of your installation...

    Create a compressed tarball of your installation (with all the attributes copied over)
    cd /; tar -cpvjf mykali-installation.tar.bz2 . --xattr --one-file-system

    then use a live cd (eg,...
  11. Replies
    8
    Views
    7,993

    One issue that you might encounter though. The AP...

    One issue that you might encounter though. The AP leases an IP via DHCP. There is no way for it to know that your statically-assigned IP is in use, hence it can be assigned to any one else. That can...
  12. That's the image you can import.

    That's the image you can import.
  13. Replies
    6
    Views
    3,650

    Try this: systemctl status display-manager ...

    Try this:

    systemctl status display-manager

    systemctl start display-manager
  14. Which tools are we talking about here? Did you...

    Which tools are we talking about here? Did you actually search via package manager?
  15. Replies
    2
    Views
    1,025

    Can you post the output of: ip -4 addr ...

    Can you post the output of:

    ip -4 addr

    before and after you run macchanger?
  16. Try: apt-cache search libatkmm Then install...

    Try:

    apt-cache search libatkmm

    Then install the found version.
  17. Replies
    8
    Views
    7,993

    The issue there seems to be that you mixed dhcp...

    The issue there seems to be that you mixed dhcp and static configurations. On the line that says

    iface wlan1 inet dhcp
    ...

    that means you are wanting your wlan1 to acquire an IP via DHCP and...
  18. Replies
    1
    Views
    1,357

    You mean you're unable to login via display...

    You mean you're unable to login via display manager (GUI)? Try to login via terminal by hitting CTRL-ALT-F3 instead and see if you can get any login prompt.
  19. Ok, try to login in via single-user mode by...

    Ok, try to login in via single-user mode by appending 'single' into your grub prompt.
  20. Replies
    4
    Views
    8,674

    That is because your command substitution is...

    That is because your command substitution is incorrect, ie you're using apostrophe instead of backtick. You can try JungleJim45's suggestion or

    `seq 1 254`

    instead
  21. Replies
    8
    Views
    7,993

    1. Determine your interface, eg eth0 2. Modify...

    1. Determine your interface, eg eth0
    2. Modify /etc/network/interface such as:

    allow-hotplug eth0
    iface eth0 inet static
    address 192.168.0.1/24

    then reboot.
  22. Replies
    2
    Views
    8,068

    ifconfig is long deprecated, don't use it. Use...

    ifconfig is long deprecated, don't use it. Use 'ip' instead. To know if your interface is even detected, issue:

    ip link

    if it is, followit up with:

    ip -4 addr

    and it will tell you any...
  23. Replies
    1
    Views
    852

    Log in as root straightaway so you don't have to...

    Log in as root straightaway so you don't have to sudo su?
  24. Replies
    1
    Views
    1,128

    Try this and see if your wireless NIC is...

    Try this and see if your wireless NIC is recognized:ip link
  25. Try to hit ctrl-alt-f2 and see if you can get...

    Try to hit ctrl-alt-f2 and see if you can get login prompt.
  26. Can you post the output of:~/.xsession-errorsgrep...

    Can you post the output of:~/.xsession-errorsgrep 'jarvis' /var/log/auth.logand log of your display-manager as well?
  27. The command 'ifconfig' is long deprecated. Use...

    The command 'ifconfig' is long deprecated. Use 'ip' instead.
  28. Replies
    2
    Views
    4,235

    Probably because NetworkManager is handling your...

    Probably because NetworkManager is handling your resolv.conf. You can try this:root@kali:~# nmcli connection show Wired\ connection\ 1 | grep 'ipv4.dns:'ipv4.dns: root@kali:~# nmcli connection...
Results 1 to 28 of 28