how do I get rid of the links and all the links related menu items on the admin ui?

In your theme’s functions.php:

function wpse52464_admin_ui_fixes() {
    remove_menu_page('link-manager.php');
}
add_action('admin_menu', 'wpse52464_admin_ui_fixes');