(gdb) info registers ds
ds 0x7b 123
(gdb) disassemble
Dump of assembler code for function printf@plt:
0x0804831c <+0>: jmp DWORD PTR ds:0x804a008
=> 0x08048322 <+6>: push 0x10
0x08048327 <+11>: jmp 0x80482ec
End of assembler dump.
Can someone describe me how to map ds:0x804a008 address into linear address I can use i "x/xw address" command? If it is not clear I'd like to know where to this first jmp function in code jumps.