DACA Recipient - Page 1 (2024)

") {$(textAreaBox).setCursorPosition(selectionStart + 8);}else {$(textAreaBox).setCursorPosition(selectionStart + 3);}}else {$(textAreaBox).focus();$(textAreaBox).surroundSelectedText(commandBefore, commandAfter);}}if ($(closestDiv).is('.tableLinkButton')) {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();$('.tableLinkButton').addClass('tableButtonPressed');$('.linkForm').fadeIn();}if ($(closestDiv).is('.tableImageButton')) {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();$('.tableImageButton').addClass('tableButtonPressed');$('.imageForm').fadeIn();}if ($(closestDiv).is('.tableLinkTTButton')) {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();$('.tableLinkTTButton').addClass('tableButtonPressed');$('.linkOnTTForm').fadeIn();}if ($(closestDiv).is('.tableSmileyButton')) {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();$('.tableSmileyButton').addClass('tableButtonPressed');$('.smileyForm').fadeIn();}});$('.formatFormCancel').on('click', function() {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();});$('.previewButton').on('click', function(e) {e.preventDefault();$('.previewButton').html('...Creating Preview')var comment = $('.textAreaBox').val();var dataToSend = {"comment": comment, "createPreview":1};$.post('/truckers-forum/includes/php/admin.php', dataToSend, function(data) {$('html, body').animate({'scrollTop':'+=300'}, 600);$('.previewButton').html('Preview');$('.previewDivInner').html(data.comment);$('.previewDiv').fadeIn();},'json');});$('.previewCancel').on('click', function(e) {e.preventDefault();$('.previewDivInner').html('');$('.previewDiv').fadeOut();});$('.previewReply').on('click', function(e) {e.preventDefault();$('.previewDivInner').html('');$('.previewDiv').fadeOut();$('.replyButton').trigger('click');});$('.replyButton').on('click', function(e) {e.preventDefault();if ($('.textAreaBox').val().length > 5500) {alert('Your post is too long. Please reduce the size to below 5,500 characters. The count is shown below the window you\'re typing into.');}else {$('.replyButton').html('Sending...');var topicBody = $('.textAreaBox').val();var categoryID = $('.categoryHeading').data('category');var topic = $('.topicHeading').data('topic');if ($('.subscribeButton').hasClass('subscribedToTopic')) {var subscribed = "yes";}else {var subscribed = "no";}var dataArray = {'categoryID': categoryID, 'comment': topicBody, 'topic': topic, 'subscribed': subscribed};$.post('/truckers-forum/includes/php/insertNewComment.php', dataArray, function(data) {var dataReturned = $.parseJSON(data);if (dataReturned.status == "success") {$('.replyButton').html('Success! Reloading page...');location.reload(true);}// if they posted too recentlyelse if (dataReturned.status == "timeLimit") {alert('Sorry, you can only post a new comment every two minutes. Please wait a short time and hit Submit again.');}else if (dataReturned.status == "moderation") {alert('Your comment is awaiting moderation. We will send you an email if it is approved. Hopefully it will only be a few minutes but it could be a few hours so we appreciate your patience. We\'re doing all we can to keep this a friendly and helpful community for everyone. Thanks!');location.reload(true);}else if (dataReturned.status == "commentLimit") {alert('Sorry, you have too many comments in moderation right now. Please be patient while we get caught up and submit this again in a little while. Thanks.')}else if (dataReturned.status == "banned") {alert('Sorry, you have been banned from posting in our forum.');}else {alert('There was an error of some sort. Please hit the "Submit" button again. If this error continues, contact brett@truckingtruth.com and we\'ll get it straightened out. Thanks.');}});}});$('.tagListUL').on('click', function(e) {e.preventDefault();var $target = $(e.target);if ($target.hasClass('btn')) {$target.toggleClass('tagged');}});$('.submitTagsButton').on("click", function(e) {e.preventDefault();$('.submitTagsButton').html('...sending');var taggedElements = $('.tagListUL').find('.tagged');var tagArray = [];for (i=0; i\n\n'; var selectionStart = $('.textAreaBox').getSelection().start;$('.textAreaBox').insertText(insertedHtml, selectionStart, true);$('.imageForm').fadeOut();$('.tableImageButton').removeClass('tableButtonPressed');$('.urlForImage').val('');}img.src = imageUrl;}$('.submitImageButton').on('click', function() {var imageUrl = $('.urlForImage').val();validateImageUrl(imageUrl); });function validateLink(link) {return fetch(link, { method: 'HEAD' }).then(response => {return (response.status === 200 || response.status === 301 || response.status === 302);}).catch(error => {console.log('Error:', error);return false;});}$('.submitLinkButton').on('click', function(e) {e.preventDefault();var textForLink = $('.textForLink').val();if (textForLink.length < 4) {alert('Please put a description for the page you\'re linking to in the "Link Text" field.');}else {var linkUrl = $('.urlForLink').val();var linkHtml = '' + textForLink + '';var selectionStart = $('.textAreaBox').getSelection().start;$('.textAreaBox').insertText(linkHtml, selectionStart, true);$('.linkForm').fadeOut();$('.tableLinkButton').removeClass('tableButtonPressed');$('.textForLink').val('');$('.urlForLink').val('');}});$('.ttLinkButton').on('click', function(e) {e.preventDefault();var link = parseInt($(this).data('link'));// we have to subtract 1 from link to get the proper array indexvar linkHtml = ttLinkButtonArray[link - 1];// var linkText = $(this).html();// var linkHtml = '' + linkText + ''; var selectionStart = $('.textAreaBox').getSelection().start;$('.textAreaBox').insertText(linkHtml, selectionStart, true);});$('.smileyForm').on('click', function(e) {e.preventDefault();if ($(e.target).data('name') == "cancel") {return;}var imageName = $(e.target).closest('img').data('name');if (imageName !== 'cancel') {var imageHtml = 'DACA Recipient - Page 1 (1) ';var selectionStart = $('.textAreaBox').getSelection().start;$('.textAreaBox').insertText(imageHtml, selectionStart, true);}});$('.quoteButton').on('click', function(e) {e.preventDefault();$('.newTopicWrapper').show();var comment = $(this).parents('.commentWrapper').find('.commentText');var commentor = $(this).parents('.commentWrapper').find('.nickname').html();$('html, body').animate({scrollTop: ($('.newTopicWrapper').offset().top)}, 500);// gotta get the glossary .definitionTerm spans and .tooltipElements out of the quote$(comment).find('.tooltipElements').remove();$(comment).find('.definitionTerm').each(function(i,v) {$(this).replaceWith($(this).text().trim());});$(comment).find('.viewMoreQuoteButton').remove();// $(comment).find('span[itemprop="text"]').unwrap();// $(comment).trim();var commentWrapped = "
" + $(comment).html().trim() + "
\n\n";var uidOfSender = $('.uidDiv').data('uid');// we have to get the current content of the textarea then append this quotevar currentTextAreaVal = $('.textAreaBox').val();var newTextAreaVal = currentTextAreaVal + "\n\n\n\n" + commentWrapped;// $('.textAreaBox').val(commentWrapped);$('.textAreaBox').val(newTextAreaVal);textAreaCheck(0, 1);});// this is the report button$('.reportButton').on("click", function(e) {e.preventDefault();$thisButton = $(this);if (confirm("Just confirming that you would like to report this comment?")) {$thisButton.text("..sending");var $commentWrapper = $(this).parents('.commentWrapper');var commentId = $commentWrapper.data('commentid');var commentText = $commentWrapper.find('.commentText').html();var nickname = $commentWrapper.find('.nickname a').text();var topicID = $('.topicHeading').data('topic');var topicHeading = $('.topicHeading').text();var page = $('.topicHeading').data('page');var uidOfSender = $('.uidDiv').data('uid');var options = {"reportComment":"1", "topic":topicID, "nickname":nickname, "commentText":commentText, "commentId":commentId, "uidOfSender":uidOfSender, "topicHeading":topicHeading, "page":page};$.post('/truckers-forum/includes/php/setUserPreferences.php', options, function(data) {$thisButton.text('Report');if (data.status == "success") {alert("Thanks! We've received your report about this comment and you can be certain we'll be taking a close look at it. We appreciate the help!");}else {alert("hmmmm....that didn't go through for some reason. Try hitting the 'report' button one more time. Thanks.");}},'json');}});$('.subscribeButton').on('click', function(e) {e.preventDefault();$(this).toggleClass('subscribedToTopic');});$('.goToPageSubmit').on('click', function(e) {e.preventDefault();var topic = $('.topicHeading').data('topic');var page = $(this).parents('.topicPaginationWrapper').find('.goToPage').val();var subjectString = $('.topicHeading').data('subjectstring');var locationString = "https://www.truckingtruth.com/truckers-forum/Topic-" + topic + "/";locationString += "Page-" + page + "/" + subjectString;location.href=locationString;});// this looks for the first blockquote in each commentTextWrapper and shortens it if it's really long$.each($('.commentWrapper'), function(i,comment) {// console.log($(this));var $quote = $(this).find('blockquote:first');// console.log($quote);// if the quote is taller than 450 pxif ($quote.height() > 450) {// create the "View More" buttonvar a = $("").addClass('btn btnDarkBlueArrowDown viewMoreQuoteButton').attr('data-id', i).html('View More');// add the heightReduced class to the quote$quote.addClass('heightReduced');// append the View More button and clearTall$(a).insertAfter($quote);$('').insertAfter($(a));}});// this will expand the blockquote which we shortened with the previous .each function$('.viewMoreQuoteButton').on("click", function(e) {e.preventDefault();// find the blockquotevar $blockquote = $(this).parents('.commentText').find('blockquote:eq(0)')// if the height is currently reducedif ($blockquote.hasClass('heightReduced')) {// remove the height restrictino$blockquote.removeClass('heightReduced');// convert the arrow down to an arrow up$(this).html("View Less").removeClass('btnDarkBlueArrowDown').addClass('btnDarkBlueArrowUp');// scroll to the top of the blockquote$('html, body').animate({scrollTop: ($($blockquote).offset().top - 20)}, 500);}// if it's currently at full heightelse {// add heightReduced to reduce the height$blockquote.addClass('heightReduced');// convert the button to arrow down$(this).html("View More").removeClass('btnDarkBlueArrowUp').addClass('btnDarkBlueArrowDown');// scroll back to the top of the quote$('html, body').animate({scrollTop: ($($blockquote).offset().top - 20)}, 500);}});// if there are new comments this will scroll the page to themif ($('.topicHeading').data('pagename') == "Newest" && $('.newTopic').length) {$('html, body').animate({scrollTop: ($('.newTopic:eq(0)').offset().top - 20)}, 500);}// this creates a searchable list out of the tags with List.js (/includes/js/List.js)// and the fuzzysearch plugin (/includes/js/fuzzysearch.js)var listOptions = { valueNames: [ 'sorted' ], listClass: 'tagListUL', page: 500, plugins:[ListFuzzySearch()]};var tagList = new List('tagListInnerDiv', listOptions);// this is for the page button// make an array of elements that should be included in page menuvar inclusionArray = ["h1","h2","h3",".commentInfo",".nextPageButton",".prevPageButton",".startNewTopic",".returnButtons"];// make an array of elements that should not be included in page menuvar exclusionArray = [".mobileShortcutDiv",".tooltipElements",".previewDiv",".jumpDiv",".newTopicWrapper",".tagListWrapper"];// createPageMenuButton(inclusionArray,exclusionArray);// this is for submitting ratings and tags for each conversation$('.ratingSubmitButton').on('click', function(e) {e.preventDefault();$(this).html('...sending');var rating = $('.ratingSelect').val();var topic = $('.topicHeading').data('topic');$.post('/truckers-forum/includes/php/updateTags.php', {"rating":rating, "topic_id": topic}, function(data) {$('.ratingSubmitButton').html('Success!');setTimeout(function() {$('.ratingSubmitButton').html("Submit");}, 600);});});});

Topic 27633 | Page 1

  • Trucker's Forum
  • DACA Recipient - Page 1 (2)
  • General Category
  • DACA Recipient - Page 1 (3)
  • DACA Recipient

Page 1 of 1

Claude I.'s Comment

DACA Recipient - Page 1 (4)

Claude I.

Posts: 1

Joined Us:

4 years, 5 months ago

4 years, 5 months ago

Dear All,

I am a DACA Recipient and living in CA. I am considering switching my career into truck driver and would like to hear some advises from you. As far as I know, I can get CDL in CA with EAD only but not quite sure if it can get me a job. Also, will there be any problem with driving across states if I have earn CDL in CA? Additionally, what other obstacles will there be for DACA recipient as a truck driver? Please share your experience or knowledge. Thank you.

CDL:

Commercial Driver's License (CDL)

A CDL is required to drive any of the following vehicles:

  • Any combination of vehicles with a gross combined weight rating (GCWR) of 26,001 or more pounds, providing the gross vehicle weight rating (GVWR) of the vehicle being towed is in excess of 10,000 pounds.
  • Any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing another not in excess of 10,000 pounds.
  • Any vehicle, regardless of size, designed to transport 16 or more persons, including the driver.
  • Any vehicle required by federal regulations to be placarded while transporting hazardous materials.

DAC:

Drive-A-Check Report

A truck drivers DAC report will contain detailed information about their job history of the last 10 years as a CDL driver (as required by the DOT).

It may also contain your criminal history, drug test results, DOT infractions and accident history. The program is strictly voluntary from a company standpoint, but most of the medium-to-large carriers will participate.

Most trucking companies use DAC reports as part of their hiring and background check process. It is extremely important that drivers verify that the information contained in it is correct, and have it fixed if it's not.

Moe's Comment

DACA Recipient - Page 1 (5)

Moe

Auburndale, FL

Experienced Driver

Posts: 620

Joined Us:

6 years, 7 months ago

12 Photos

4 years, 5 months ago

Not really sure how you would go about this with DACA, I dont know much about it. I imagine you would have to speak to your counselor or representative or whatever you call it? With the program? I thought Trump cancelled it?

It also depends upon how long you have been in the country for? I mean no disrespect but your english is rather broken which leads me to wonder how long you have been here #1 ; #2) Do you have a valid CA Driver license? If so, how long? You need a minimum of a year Driver license before you can try for a CDL in most states (maybe CA is different? - I don't know, I dont live there)

I respect your desire to work hard and succeed, but you should really think this through and make sure this is the right time for it or if this is the right industry for you. You need to make sure that you have a solid grasp of the rules of the road here in the United States BEFORE you sign up to drive an 80,000 pound truck down our roadways, your life and the lives of others depend on it.

NOW that that is out of the way - I would first work with your DACA (EAD?) folks on this, second understand that many companies out there will train you to get your CDL and you will have a job waiting for you when you are through with training. It'd be a great thing for you actually. As for the CDL from CA allowing you to go across state lines. Yes it can allow you to do that, on the application you will mark non-exempted interstate and this will allow your license to be used across state lines.

As for what obstacles are there specifically for a DACA recipient, I have no clue. Ability to read, write and understand English is key, an understanding of the traffic laws and road rules in the US is as well, if you haven't been here long nor driven very long in the US, then I'd reccomend putting the trucking plans on hold until you have solid driving experience under your belt. Here is why I say this. As a CDL holder you are directly responsible for the operation of that truck, you CAN and you WILL face fines, penalties, even jail time if you have an accident and someone gets hurt or God forbid killed. I respect your desire to work, but if you have a family of your own, you wont do them any good being thousands of dollars in debt or in prison because of a mishap.

Maybe work at a warehouse around trucks or perhaps become a yard hossler (this is where you would be allowed to operate trucks, drive , back up etc on private commercial property) while you work on sorting all of this out? A good advantage to being a yard hossler is that you wont be driving drive on public roads, thus a CDL is not required - this means you are getting necessary operation experience and truck familiarity while you work out the DACA and CDL training stuff, that would be a win win for you AND you get paid doing something that interests you, how cool is that???

DACA Recipient - Page 1 (6)

Hope that helps, good luck....

DACA Recipient - Page 1 (7)

Dear All,

I am a DACA Recipient and living in CA. I am considering switching my career into truck driver and would like to hear some advises from you. As far as I know, I can get CDL in CA with EAD only but not quite sure if it can get me a job. Also, will there be any problem with driving across states if I have earn CDL in CA? Additionally, what other obstacles will there be for DACA recipient as a truck driver? Please share your experience or knowledge. Thank you.

CDL:

Commercial Driver's License (CDL)

A CDL is required to drive any of the following vehicles:

  • Any combination of vehicles with a gross combined weight rating (GCWR) of 26,001 or more pounds, providing the gross vehicle weight rating (GVWR) of the vehicle being towed is in excess of 10,000 pounds.
  • Any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing another not in excess of 10,000 pounds.
  • Any vehicle, regardless of size, designed to transport 16 or more persons, including the driver.
  • Any vehicle required by federal regulations to be placarded while transporting hazardous materials.

Interstate:

Commercial trade, business, movement of goods or money, or transportation from one state to another, regulated by the Federal Department Of Transportation (DOT).

DAC:

Drive-A-Check Report

A truck drivers DAC report will contain detailed information about their job history of the last 10 years as a CDL driver (as required by the DOT).

It may also contain your criminal history, drug test results, DOT infractions and accident history. The program is strictly voluntary from a company standpoint, but most of the medium-to-large carriers will participate.

Most trucking companies use DAC reports as part of their hiring and background check process. It is extremely important that drivers verify that the information contained in it is correct, and have it fixed if it's not.

HOS:

Hours Of Service

HOS refers to the logbook hours of service regulations.

OWI:

Operating While Intoxicated

Rick S.'s Comment

DACA Recipient - Page 1 (8)

Rick S.

Technical Advisor

Fort Lauderdale, FL

Company Driver In Training

Posts: 3118

Joined Us:

15 years, 2 months ago

114 Photos

4 years, 5 months ago

Read THIS ARTICLE...

Short answer - YES. Long answer - MAYBE.

The BEST ANSWER would be to try and adjust your status to GREEN CARD (if possible), then you're GREEN LIT all the way.

I will leave my personal views and politics out of this conversation.

Rick

CDL:

Commercial Driver's License (CDL)

A CDL is required to drive any of the following vehicles:

  • Any combination of vehicles with a gross combined weight rating (GCWR) of 26,001 or more pounds, providing the gross vehicle weight rating (GVWR) of the vehicle being towed is in excess of 10,000 pounds.
  • Any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing another not in excess of 10,000 pounds.
  • Any vehicle, regardless of size, designed to transport 16 or more persons, including the driver.
  • Any vehicle required by federal regulations to be placarded while transporting hazardous materials.

Marc Lee AKA The 100k mil's Comment

DACA Recipient - Page 1 (9)

Marc Lee AKA The 100k miles Champ

Home State:

Posts: 78

Joined Us:

5 years ago

4 years, 5 months ago

I fully understand why you are having such a hard time getting your CDL

Not really sure how you would go about this with DACA, I dont know much about it. I imagine you would have to speak to your counselor or representative or whatever you call it? With the program? I thought Trump cancelled it?

It also depends upon how long you have been in the country for? I mean no disrespect but your english is rather broken which leads me to wonder how long you have been here #1 ; #2) Do you have a valid CA Driver license? If so, how long? You need a minimum of a year Driver license before you can try for a CDL in most states (maybe CA is different? - I don't know, I dont live there)

I respect your desire to work hard and succeed, but you should really think this through and make sure this is the right time for it or if this is the right industry for you. You need to make sure that you have a solid grasp of the rules of the road here in the United States BEFORE you sign up to drive an 80,000 pound truck down our roadways, your life and the lives of others depend on it.

NOW that that is out of the way - I would first work with your DACA (EAD?) folks on this, second understand that many companies out there will train you to get your CDL and you will have a job waiting for you when you are through with training. It'd be a great thing for you actually. As for the CDL from CA allowing you to go across state lines. Yes it can allow you to do that, on the application you will mark non-exempted interstate and this will allow your license to be used across state lines.

As for what obstacles are there specifically for a DACA recipient, I have no clue. Ability to read, write and understand English is key, an understanding of the traffic laws and road rules in the US is as well, if you haven't been here long nor driven very long in the US, then I'd reccomend putting the trucking plans on hold until you have solid driving experience under your belt. Here is why I say this. As a CDL holder you are directly responsible for the operation of that truck, you CAN and you WILL face fines, penalties, even jail time if you have an accident and someone gets hurt or God forbid killed. I respect your desire to work, but if you have a family of your own, you wont do them any good being thousands of dollars in debt or in prison because of a mishap.

Maybe work at a warehouse around trucks or perhaps become a yard hossler (this is where you would be allowed to operate trucks, drive , back up etc on private commercial property) while you work on sorting all of this out? A good advantage to being a yard hossler is that you wont be driving drive on public roads, thus a CDL is not required - this means you are getting necessary operation experience and truck familiarity while you work out the DACA and CDL training stuff, that would be a win win for you AND you get paid doing something that interests you, how cool is that???

DACA Recipient - Page 1 (10)

Hope that helps, good luck....

DACA Recipient - Page 1 (11)

DACA Recipient - Page 1 (12)

Dear All,

I am a DACA Recipient and living in CA. I am considering switching my career into truck driver and would like to hear some advises from you. As far as I know, I can get CDL in CA with EAD only but not quite sure if it can get me a job. Also, will there be any problem with driving across states if I have earn CDL in CA? Additionally, what other obstacles will there be for DACA recipient as a truck driver? Please share your experience or knowledge. Thank you.

DACA Recipient - Page 1 (13)

CDL:

Commercial Driver's License (CDL)

A CDL is required to drive any of the following vehicles:

  • Any combination of vehicles with a gross combined weight rating (GCWR) of 26,001 or more pounds, providing the gross vehicle weight rating (GVWR) of the vehicle being towed is in excess of 10,000 pounds.
  • Any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing another not in excess of 10,000 pounds.
  • Any vehicle, regardless of size, designed to transport 16 or more persons, including the driver.
  • Any vehicle required by federal regulations to be placarded while transporting hazardous materials.

Interstate:

Commercial trade, business, movement of goods or money, or transportation from one state to another, regulated by the Federal Department Of Transportation (DOT).

DAC:

Drive-A-Check Report

A truck drivers DAC report will contain detailed information about their job history of the last 10 years as a CDL driver (as required by the DOT).

It may also contain your criminal history, drug test results, DOT infractions and accident history. The program is strictly voluntary from a company standpoint, but most of the medium-to-large carriers will participate.

Most trucking companies use DAC reports as part of their hiring and background check process. It is extremely important that drivers verify that the information contained in it is correct, and have it fixed if it's not.

HOS:

Hours Of Service

HOS refers to the logbook hours of service regulations.

OWI:

Operating While Intoxicated

Moe's Comment

DACA Recipient - Page 1 (14)

Moe

Auburndale, FL

Experienced Driver

Posts: 620

Joined Us:

6 years, 7 months ago

12 Photos

4 years, 5 months ago

Really? What would that be?

I fully understand why you are having such a hard time getting your CDL

DACA Recipient - Page 1 (15)

Not really sure how you would go about this with DACA, I dont know much about it. I imagine you would have to speak to your counselor or representative or whatever you call it? With the program? I thought Trump cancelled it?

It also depends upon how long you have been in the country for? I mean no disrespect but your english is rather broken which leads me to wonder how long you have been here #1 ; #2) Do you have a valid CA Driver license? If so, how long? You need a minimum of a year Driver license before you can try for a CDL in most states (maybe CA is different? - I don't know, I dont live there)

I respect your desire to work hard and succeed, but you should really think this through and make sure this is the right time for it or if this is the right industry for you. You need to make sure that you have a solid grasp of the rules of the road here in the United States BEFORE you sign up to drive an 80,000 pound truck down our roadways, your life and the lives of others depend on it.

NOW that that is out of the way - I would first work with your DACA (EAD?) folks on this, second understand that many companies out there will train you to get your CDL and you will have a job waiting for you when you are through with training. It'd be a great thing for you actually. As for the CDL from CA allowing you to go across state lines. Yes it can allow you to do that, on the application you will mark non-exempted interstate and this will allow your license to be used across state lines.

As for what obstacles are there specifically for a DACA recipient, I have no clue. Ability to read, write and understand English is key, an understanding of the traffic laws and road rules in the US is as well, if you haven't been here long nor driven very long in the US, then I'd reccomend putting the trucking plans on hold until you have solid driving experience under your belt. Here is why I say this. As a CDL holder you are directly responsible for the operation of that truck, you CAN and you WILL face fines, penalties, even jail time if you have an accident and someone gets hurt or God forbid killed. I respect your desire to work, but if you have a family of your own, you wont do them any good being thousands of dollars in debt or in prison because of a mishap.

Maybe work at a warehouse around trucks or perhaps become a yard hossler (this is where you would be allowed to operate trucks, drive , back up etc on private commercial property) while you work on sorting all of this out? A good advantage to being a yard hossler is that you wont be driving drive on public roads, thus a CDL is not required - this means you are getting necessary operation experience and truck familiarity while you work out the DACA and CDL training stuff, that would be a win win for you AND you get paid doing something that interests you, how cool is that???

DACA Recipient - Page 1 (16)

Hope that helps, good luck....

DACA Recipient - Page 1 (17)

DACA Recipient - Page 1 (18)DACA Recipient - Page 1 (19)

Dear All,

I am a DACA Recipient and living in CA. I am considering switching my career into truck driver and would like to hear some advises from you. As far as I know, I can get CDL in CA with EAD only but not quite sure if it can get me a job. Also, will there be any problem with driving across states if I have earn CDL in CA? Additionally, what other obstacles will there be for DACA recipient as a truck driver? Please share your experience or knowledge. Thank you.

DACA Recipient - Page 1 (20)DACA Recipient - Page 1 (21)
DACA Recipient - Page 1 (22)

CDL:

Commercial Driver's License (CDL)

A CDL is required to drive any of the following vehicles:

  • Any combination of vehicles with a gross combined weight rating (GCWR) of 26,001 or more pounds, providing the gross vehicle weight rating (GVWR) of the vehicle being towed is in excess of 10,000 pounds.
  • Any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing another not in excess of 10,000 pounds.
  • Any vehicle, regardless of size, designed to transport 16 or more persons, including the driver.
  • Any vehicle required by federal regulations to be placarded while transporting hazardous materials.

Interstate:

Commercial trade, business, movement of goods or money, or transportation from one state to another, regulated by the Federal Department Of Transportation (DOT).

DAC:

Drive-A-Check Report

A truck drivers DAC report will contain detailed information about their job history of the last 10 years as a CDL driver (as required by the DOT).

It may also contain your criminal history, drug test results, DOT infractions and accident history. The program is strictly voluntary from a company standpoint, but most of the medium-to-large carriers will participate.

Most trucking companies use DAC reports as part of their hiring and background check process. It is extremely important that drivers verify that the information contained in it is correct, and have it fixed if it's not.

HOS:

Hours Of Service

HOS refers to the logbook hours of service regulations.

OWI:

Operating While Intoxicated

Pacific Pearl's Comment

DACA Recipient - Page 1 (23)

Pacific Pearl

Seattle, WA

Experienced Driver

Posts: 395

Joined Us:

4 years, 11 months ago

4 years, 5 months ago

I'm not a lawyer. I do know how to read and where to look for the applicable laws though. Your best bet would be to consult with an attorney. Since you're asking on a trucker forum here's the trucker answer:

There are three routes you can take:

Option #1 Get a CDL

You don't qualify. Per FMCSA §383.71

"(9) The person must provide proof of citizenship or lawful permanent residency as specified in Table 1 of this section, or be registered under paragraph (f) of this section."

As Rick said if you get a green card you will become a lawful permanent resident but you don't qualify right now. Green cards can take years to get and can cost thousands of dollars in legal fees.

Option #2 Get a Non-domiciled CDL

States are permitted to issue a CDL to an individual who is not domiciled within its jurisdiction. This works for citizens of most countries but since the US recognizes CDL equivalents from Mexico and Canada natives of these countries are not eligible for this program so this won't work for you.

Option #3 Get a Mexican CDL

Get a Mexican CDL from Secretariat of Communication and Transport (www.sct.gob.mx). You can legally drive in all 50 states with a Mexican CDL. You can legally work for a US carrier with a work permit (Form I-766 employment authorization document). This is your best bet. Much quicker and cheaper than getting a green card.

CDL:

Commercial Driver's License (CDL)

A CDL is required to drive any of the following vehicles:

  • Any combination of vehicles with a gross combined weight rating (GCWR) of 26,001 or more pounds, providing the gross vehicle weight rating (GVWR) of the vehicle being towed is in excess of 10,000 pounds.
  • Any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing another not in excess of 10,000 pounds.
  • Any vehicle, regardless of size, designed to transport 16 or more persons, including the driver.
  • Any vehicle required by federal regulations to be placarded while transporting hazardous materials.

CSA:

Compliance, Safety, Accountability (CSA)

The CSA is a Federal Motor Carrier Safety Administration (FMCSA) initiative to improve large truck and bus safety and ultimately reduce crashes, injuries, and fatalities that are related to commercial motor vehicle

FMCSA:

Federal Motor Carrier Safety Administration

The FMCSA was established within the Department of Transportation on January 1, 2000. Their primary mission is to prevent commercial motor vehicle-related fatalities and injuries.

What Does The FMCSA Do?

  • Commercial Drivers' Licenses
  • Data and Analysis
  • Regulatory Compliance and Enforcement
  • Research and Technology
  • Safety Assistance
  • Support and Information Sharing

Fm:

Dispatcher, Fleet Manager, Driver Manager

The primary person a driver communicates with at his/her company. A dispatcher can play many roles, depending on the company's structure. Dispatchers may assign freight, file requests for home time, relay messages between the driver and management, inform customer service of any delays, change appointment times, and report information to the load planners.

Moe's Comment

DACA Recipient - Page 1 (24)

Moe

Auburndale, FL

Experienced Driver

Posts: 620

Joined Us:

6 years, 7 months ago

12 Photos

4 years, 5 months ago

I would like to apologize to the OP, re reading what I wrote, I came off more gritty and disrespectful than I intended.

I sincerely wish you well on this path and hope things work out for you.

Rick S.'s Comment

DACA Recipient - Page 1 (25)

Rick S.

Technical Advisor

Fort Lauderdale, FL

Company Driver In Training

Posts: 3118

Joined Us:

15 years, 2 months ago

114 Photos

4 years, 5 months ago

I'm not a lawyer. I do know how to read and where to look for the applicable laws though. Your best bet would be to consult with an attorney. Since you're asking on a trucker forum here's the trucker answer:

There are three routes you can take:

Option #1 Get a CDL

You don't qualify. Per FMCSA §383.71

"(9) The person must provide proof of citizenship or lawful permanent residency as specified in Table 1 of this section, or be registered under paragraph (f) of this section."

As Rick said if you get a green card you will become a lawful permanent resident but you don't qualify right now. Green cards can take years to get and can cost thousands of dollars in legal fees.

Option #2 Get a Non-domiciled CDL

States are permitted to issue a CDL to an individual who is not domiciled within its jurisdiction. This works for citizens of most countries but since the US recognizes CDL equivalents from Mexico and Canada natives of these countries are not eligible for this program so this won't work for you.

Option #3 Get a Mexican CDL

Get a Mexican CDL from Secretariat of Communication and Transport (www.sct.gob.mx). You can legally drive in all 50 states with a Mexican CDL. You can legally work for a US carrier with a work permit (Form I-766 employment authorization document). This is your best bet. Much quicker and cheaper than getting a green card.

Interesting perspective.

#1 - as you (and I) elaborated - non-qualified under current immigration status.

#2 - since he (likely) has been a resident since childhood, and since FMCSA and state DMV's have really scrutinized non-domciled CDL's (to the point where some companies are now making you get a CLP in your home state, then upgrading there) - like not a good option. He "might" be able to get an "itra-state only" CDL in CA (MIGHT MIGHT MIGHT), but that doesn't get him on with an OTR company.

#3 - likely the WORST OPTION. He will have to claim citizenship/residency in Mexico to obtain one, and compromise his current DACA immigration status - and run the REAL RISK of not being re-admitted into the US, since he will have asserted his citizenship/residency in Mejico. I'm sure INS/CBP would LOVE TO SEE someone throw away a DACA.

Since trucking is one of those heavily regulated industries, and people who are BORN HERE have hurdles to jump through, I doubt anyone (but Commiefornia) is going to make it easier for someone with "grey-area-immigration-status" to get a job where you have to be an american citizen or legal permanent resident to qualify under federal regs. You will likely NOT GET A HIRE from an OTR company that does CDL Training, as there are numerous applicants WITHOUT status issues to choose from.

And while it's sad that children who were brought here illegally are stuck in "legal limbo" while the idiots in DC fight over it - either the laws are ENFORCED OR IGNORED...

Rick

CDL:

Commercial Driver's License (CDL)

A CDL is required to drive any of the following vehicles:

  • Any combination of vehicles with a gross combined weight rating (GCWR) of 26,001 or more pounds, providing the gross vehicle weight rating (GVWR) of the vehicle being towed is in excess of 10,000 pounds.
  • Any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing another not in excess of 10,000 pounds.
  • Any vehicle, regardless of size, designed to transport 16 or more persons, including the driver.
  • Any vehicle required by federal regulations to be placarded while transporting hazardous materials.

OTR:

Over The Road

OTR driving normally means you'll be hauling freight to various customers throughout your company's hauling region. It often entails being gone from home for two to three weeks at a time.

CSA:

Compliance, Safety, Accountability (CSA)

The CSA is a Federal Motor Carrier Safety Administration (FMCSA) initiative to improve large truck and bus safety and ultimately reduce crashes, injuries, and fatalities that are related to commercial motor vehicle

FMCSA:

Federal Motor Carrier Safety Administration

The FMCSA was established within the Department of Transportation on January 1, 2000. Their primary mission is to prevent commercial motor vehicle-related fatalities and injuries.

What Does The FMCSA Do?

  • Commercial Drivers' Licenses
  • Data and Analysis
  • Regulatory Compliance and Enforcement
  • Research and Technology
  • Safety Assistance
  • Support and Information Sharing

Dm:

Dispatcher, Fleet Manager, Driver Manager

The primary person a driver communicates with at his/her company. A dispatcher can play many roles, depending on the company's structure. Dispatchers may assign freight, file requests for home time, relay messages between the driver and management, inform customer service of any delays, change appointment times, and report information to the load planners.

Fm:

Dispatcher, Fleet Manager, Driver Manager

The primary person a driver communicates with at his/her company. A dispatcher can play many roles, depending on the company's structure. Dispatchers may assign freight, file requests for home time, relay messages between the driver and management, inform customer service of any delays, change appointment times, and report information to the load planners.

DMV:

Department of Motor Vehicles, Bureau of Motor Vehicles

The state agency that handles everything related to your driver's licences, including testing, issuance, transfers, and revocation.

DAC:

Drive-A-Check Report

A truck drivers DAC report will contain detailed information about their job history of the last 10 years as a CDL driver (as required by the DOT).

It may also contain your criminal history, drug test results, DOT infractions and accident history. The program is strictly voluntary from a company standpoint, but most of the medium-to-large carriers will participate.

Most trucking companies use DAC reports as part of their hiring and background check process. It is extremely important that drivers verify that the information contained in it is correct, and have it fixed if it's not.

HOS:

Hours Of Service

HOS refers to the logbook hours of service regulations.

OOS:

When a violation by either a driver or company is confirmed, an out-of-service order removes either the driver or the vehicle from the roadway until the violation is corrected.

CLP:

Commercial Learner's Permit

Before getting their CDL, commercial drivers will receive their commercial learner's permit (CLP) upon passing the written portion of the CDL exam. They will not have to retake the written exam to get their CDL.

Page 1 of 1

Return To General CategoryTrucker's Forum Homepage

New Reply:

New! Check out our help videos for a better understanding of our forum features

Bold

Italic

Underline

Quote

Photo

Link

Smiley

Links On TruckingTruth

Done

DACA Recipient - Page 1 (26)DACA Recipient - Page 1 (27)DACA Recipient - Page 1 (28)DACA Recipient - Page 1 (29)DACA Recipient - Page 1 (30)DACA Recipient - Page 1 (31)DACA Recipient - Page 1 (32)DACA Recipient - Page 1 (33)DACA Recipient - Page 1 (34)DACA Recipient - Page 1 (35)DACA Recipient - Page 1 (36)DACA Recipient - Page 1 (37)DACA Recipient - Page 1 (38)DACA Recipient - Page 1 (39)DACA Recipient - Page 1 (40)DACA Recipient - Page 1 (41)DACA Recipient - Page 1 (42)

Done


0 characters so far - 5,500 maximum allowed.

Notify Me Of New CommentsSubmitPreview

Preview:

Submit

Cancel

DACA Recipient - Page 1 (2024)

References

Top Articles
Homemade Poultry Seasoning Recipe
Best Ever Stuffing Balls Recipe with Turkey - Mama Needs Cake®
Canya 7 Drawer Dresser
Ret Paladin Phase 2 Bis Wotlk
Coverage of the introduction of the Water (Special Measures) Bill
Tj Nails Victoria Tx
Georgia Vehicle Registration Fees Calculator
Caroline Cps.powerschool.com
Free VIN Decoder Online | Decode any VIN
Www Craigslist Louisville
Fire Rescue 1 Login
Nashville Predators Wiki
Gfs Rivergate
Craigslist Pikeville Tn
Best Fare Finder Avanti
What Happened To Maxwell Laughlin
Effingham Bookings Florence Sc
Libinick
Tyrone Unblocked Games Bitlife
Pearson Correlation Coefficient
Munis Self Service Brockton
Panola County Busted Newspaper
Apartments / Housing For Rent near Lake Placid, FL - craigslist
2487872771
Trivago Myrtle Beach Hotels
Il Speedtest Rcn Net
Kimoriiii Fansly
Accuradio Unblocked
SOGo Groupware - Rechenzentrum Universität Osnabrück
Craigslist Fort Smith Ar Personals
Leben in Japan &#8211; das muss man wissen - Lernen Sie Sprachen online bei italki
Mawal Gameroom Download
031515 828
Craigslist Texas Killeen
Dentist That Accept Horizon Nj Health
Wcostream Attack On Titan
Ourhotwifes
Tamil Play.com
How To Paint Dinos In Ark
Publictributes
Wait List Texas Roadhouse
St Vrain Schoology
Rise Meadville Reviews
Bonecrusher Upgrade Rs3
Bradshaw And Range Obituaries
Westport gun shops close after confusion over governor's 'essential' business list
Sj Craigs
Taterz Salad
Palmyra Authentic Mediterranean Cuisine مطعم أبو سمرة
Volstate Portal
Latest Posts
Article information

Author: Greg O'Connell

Last Updated:

Views: 6458

Rating: 4.1 / 5 (62 voted)

Reviews: 93% of readers found this page helpful

Author information

Name: Greg O'Connell

Birthday: 1992-01-10

Address: Suite 517 2436 Jefferey Pass, Shanitaside, UT 27519

Phone: +2614651609714

Job: Education Developer

Hobby: Cooking, Gambling, Pottery, Shooting, Baseball, Singing, Snowboarding

Introduction: My name is Greg O'Connell, I am a delightful, colorful, talented, kind, lively, modern, tender person who loves writing and wants to share my knowledge and understanding with you.